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: 25px;
7
 
8
    .btn {
9
        @include opacity(0.6);
10
        padding: 0 6px;
11
 
12
        > i {
13
            font-size: 24px;
14
            color: darken(#CAD3DB, 10%);
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: 675px;
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: #4DB393;
80
            }
81
 
82
            &.theme-color-red-sunglo .theme-color-view {
83
                background: #E26A6A;
84
            }
85
 
86
            &.theme-color-red-intense .theme-color-view {
87
                background: #E35B5A;
88
            }
89
 
90
            &.theme-color-blue-hoki .theme-color-view {
91
                background: #67809F;
92
            }
93
 
94
            &.theme-color-blue-steel .theme-color-view {
95
                background: #4B77BE;
96
            }
97
 
98
            &.theme-color-green-haze .theme-color-view {
99
                background: #44B6AE;
100
            }
101
 
102
            &.theme-color-purple-plum .theme-color-view {
103
                background: #8775A7;
104
            }
105
 
106
            &.theme-color-purple-studio .theme-color-view {
107
                background: #8E44AD;
108
            }
109
 
110
            &.theme-color-yellow-orange .theme-color-view {
111
                background: #F2784B;
112
            }
113
 
114
            &.theme-color-yellow-crusta .theme-color-view {
115
                background: #F3C200;
116
            }
117
        }
118
    }
119
 
120
    .theme-settings {
121
        list-style: none;
122
        padding: 0;
123
        margin: 0;
124
 
125
        > li {
126
            padding: 8px 12px;
127
            font-size: 14px;
128
            font-weight: 300;
129
            color: #777;
130
 
131
            .form-control {
132
                color: #777;
133
                margin-top: -3px;
134
                float: right;
135
            }
136
        }
137
    }
138
}
139
 
140
@media (max-width: $screen-xs-max) { /* 767px */
141
 
142
    .theme-panel {
143
        left: 20px;
144
        right: 20px;
145
        min-width: 285px;
146
 
147
        .seperator {
148
            border: 0;
149
        }
150
 
151
        .theme-settings {
152
            .form-control {
153
                width: 105px !important;
154
            }
155
        }
156
    }
157
 
158
}