quicksettings.less
1.77 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
#block-dexp-quicksettings-dexp-quicksettings{
h2.block-title{
font-size: 14px;
font-weight: bold;
line-height: 48px;
text-align: center;
color: #404040;
margin:0;
}
background: #FFF;
position: fixed;
left: -207px;
.transition(left);
top: 96px;
z-index: 999;
box-shadow:0 0 3px 0 rgba(0, 0, 0, 0.08);
&.open{
left:0;
}
.content{
padding: 2px 18px 10px;
width: 205px;
}
h3{
color: #848688;
font-size: 13px;
margin: 5px 0 -5px 1px;
line-height: 30px;
}
select.form-select{
border-radius: 2px;
color: #848688;
cursor: pointer;
font-size: 13px;
margin: 2px 0 10px 2px;
padding: 5px;
width: 164px;
}
ul.presets,ul.dexp_background{
margin: 0;
padding: 0;
li{
display: inline-block;
margin:4px 2px 0;
span{
cursor: pointer;
width: 20px; height: 20px; display: block;
border-radius: 2px;
-webkit-box-shadow: -2px 2px 2px -1px rgba(0,0,0,0.75);
-moz-box-shadow: -2px 2px 2px -1px rgba(0,0,0,0.75);
box-shadow: -2px 2px 2px -1px rgba(0,0,0,0.75);
}
&[class^=white]{
span{
background-image: url(../images/white-preset.png);
}
}
&[class^=dark]{
span{
background-image: url(../images/dark-preset.png);
}
}
}
}
.quicksettings_toggle{
box-shadow:0 0 3px 0 rgba(0, 0, 0, 0.08);
background: url("../images/switcher.gif") no-repeat scroll 10px center #FFFFFF;
border-color: #EEEEEE;
border-radius: 0 2px 2px 0;
border-style: solid;
border-width: 1px 1px 1px 0;
display: block;
height: 44px;
position: absolute;
right: -44px;
text-indent: -9999px;
top: 0px;
width: 44px;
cursor: pointer;
}
}