Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
/***
2
Theme Panel
3
***/
4
 
5
.btn-theme-panel {
6
    margin-top: 10px;
7
 
8
    .btn {
9
        @include opacity(0.6);
10
        padding: 0 6px;
11
 
12
        > i {
13
            font-size: 24px;
14
            color: darken(#697882, 3%);
15
        }
16
 
17
        &:hover {
18
            @include opacity(1);
19
        }
20
    }
21
 
22
    &.open .btn {
23
         @include opacity(1);
24
    }
25
}
26
 
27
.theme-panel {
28
    z-index: $zindex-dropdown - 1;
29
    min-width: 575px;
30
    padding: 20px 10px;
31
    font-family: $font-family-primary;
32
 
33
    h3 {
34
        margin: 8px 0 8px 0;
35
        font-size: 15px;
36
        padding-left: 12px;
37
    }
38
 
39
    .seperator {
40
        border-left:1px solid #EFF2F4;
41
    }
42
 
43
    .theme-colors {
44
        list-style: none;
45
        padding: 0;
46
        margin: 0;
47
 
48
        > li.theme-color {
49
            padding: 8px 12px;
50
 
51
            &:hover,
52
            &.active {
53
                background: lighten(#EFF2F4, 2%);
54
            }
55
 
56
            &:hover {
57
                cursor: pointer;
58
            }
59
 
60
            > .theme-color-view {
61
                float: left;
62
                margin-top: 0px;
63
                margin-right: 8px;
64
                display: inline-block;
65
                border-radius: 10px !important;
66
                height: 20px;
67
                width: 20px;
68
            }
69
 
70
            > .theme-color-name {
71
                display: inline-block;
72
                color: #777;
73
                font-size: 14px;
74
                font-weight: 300;
75
                padding-top: -4px;
76
            }
77
 
78
            &.theme-color-default .theme-color-view {
79
                background: #3B3F51;
80
            }
81
 
82
            &.theme-color-light .theme-color-view {
83
                background: lighten(#3B3F51, 55%);
84
            }
85
        }
86
    }
87
 
88
    .theme-settings {
89
        list-style: none;
90
        padding: 0;
91
        margin: 0;
92
 
93
        > li {
94
            padding: 8px 12px;
95
            font-size: 14px;
96
            font-weight: 300;
97
            color: #777;
98
 
99
            .form-control {
100
                color: #777;
101
                margin-top: -3px;
102
                float: right;
103
            }
104
        }
105
    }
106
}
107
 
108
@media (max-width: $screen-xs-max) { /* 767px */
109
 
110
    .theme-panel {
111
        left: 20px;
112
        right: 20px;
113
        min-width: 285px;
114
 
115
        .seperator {
116
            border: 0;
117
        }
118
 
119
        .theme-settings {
120
            .form-control {
121
                width: 105px !important;
122
            }
123
        }
124
    }
125
 
126
}