_theme-panel.scss
3.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
/***
Theme Panel
***/
.theme-panel {
width: 420px;
margin-top: -13px;
margin-right: 0px;
z-index: 100;
float: right;
position:relative;
> .toggler {
top:4px;
right:0;
padding:20px;
cursor:pointer;
position:absolute;
background:#d5dade url(../img/icon-color.png) center no-repeat;
@include border-radius($general-border-radius);
&:hover {
background-color: #3d3d3d !important;
}
}
> .toggler-close {
display: none;
top:4px;
right:0;
padding:20px;
z-index: 101;
cursor:pointer;
position:absolute;
background: #3d3d3d url(../img/icon-color-close.png) center no-repeat !important;
@include border-radius($general-border-radius);
&:hover {
background-color:#222 !important;
}
}
> .theme-options {
top:4px;
right:0;
display:none;
position:absolute;
z-index: 100;
background:#3d3d3d;
box-shadow: 5px 5px rgba(#3d3d3d, 0.1);
@include border-radius($general-border-radius);
> .theme-option {
color:#cfcfcf;
padding: 10px;
border-top:1px solid #444;
margin-top: 0px;
margin-bottom: 0px;
> span {
text-transform:uppercase;
display: inline-block;
width: 145px;
font-size: 13px;
font-weight: 300;
}
> select.form-control {
display: inline;
width: 135px;
padding: 2px;
text-transform: lowercase;
}
&.theme-colors {
border-top: 0;
> span {
display: block;
width: auto;
}
> ul {
list-style:none;
padding: 0;
display: block;
margin-bottom: 10px !important;
margin-top: 15px;
> li {
width:40px;
height:40px;
margin:0 4px;
cursor:pointer;
list-style:none;
float: left;
border:solid 1px #707070;
&:first-child {
margin-left: 0;
}
&:hover,
&.current {
border:solid 2px #d64635;
}
/* theme colors */
&.color-default {
background: #333438;
}
&.color-darkblue {
background: #2b3643;
}
&.color-blue {
background: #2D5F8B;
}
&.color-grey {
background: #697380;
}
&.color-light {
background: #F9FAFD;
}
&.color-light2 {
background: #F1F1F1;
}
}
}
}
}
}
/* content solid bg color */
.page-container-bg-solid & {
position: absolute;
margin-top: 30px;
margin-right: 20px;
right: 0;
> .toggler {
background:#BFCAD1 url(../img/icon-color.png) center no-repeat;
}
}
.page-container-bg-solid.page-sidebar-reversed & {
margin-right: 20px + $sidebar-width;
}
}