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
|
@import "config.less";
@popup-size: 102 * @unit_base;
@padding-size: 18 * @unit_base;
@img-height: 80 * @unit_base;
@img-width: 80 * @unit_base;
label.ui-slider {
display: block;
}
input.ui-slider-input {
display: inline-block;
width: 50 * @unit_base;
}
select.ui-slider-switch {
display: none;
}
.ui-slider-bg,
.ui-slider-icon-bg {
position: relative;
margin-left: 32 * @unit_base;
margin-right: 32 * @unit_base;
margin-bottom: 0.2em;
vertical-align: middle;
}
.ui-slider-icon-bg {
margin-left: 96 * @unit_base;
margin-right: 96 * @unit_base;
}
.ui-slider-left-volume,
.ui-slider-left-bright {
position: absolute;
top: -0.2em;
left: -96 * @unit_base;
height: @img-height;
width: @img-width;
vertical-align: middle;
background: url(images/00_slider_btn_brightness01.png) no-repeat;
.LESSbackground-size(@img-width, @img-height);
}
.ui-slider-left-volume {
background: url(images/00_slider_btn_volume01.png) no-repeat;
.LESSbackground-size(@img-width, @img-height);
}
.ui-slider-right-volume,
.ui-slider-right-bright {
position: absolute;
top: -0.2em;
right: -96 * @unit_base;
height: @img-height;
width: @img-width;
vertical-align: middle;
background: url(images/00_slider_btn_brightness02.png) no-repeat;
.LESSbackground-size(@img-width, @img-height);
}
.ui-slider-right-volume {
background: url(images/00_slider_btn_volume02.png) no-repeat;
.LESSbackground-size(@img-width, @img-height);
}
.ui-slider-left-text {
position: absolute;
top: -0.2em;
left: -96 * @unit_base;
height: 80 * @unit_base;
width: 80 * @unit_base;
text-align: center;
color: rgb(100, 100, 100);
}
.ui-slider-right-text {
position: absolute;
top: -0.2em;
right: -96 * @unit_base;
height: 80 * @unit_base;
width: 80 * @unit_base;
text-align: center;
color: rgb(100, 100, 100);
}
div.ui-slider {
display: inline-block;
overflow: visible;
height: 16 * @unit_base;
width: 100%;
background-image: url(images/00_winset_list_progress_bg.png);
.ui-btn {
top: 0.15em !important;
}
.ui-btn-inner {
padding: 0.3em 0 * @unit_base;
}
.ui-btn-text {
color: @color_slider_handle_text;
}
}
a.ui-slider-handle {
position: relative;
z-index: 10;
top: -21 * @unit_base;
width: 58 * @unit_base;
height: 58 * @unit_base;
margin-top: -29 * @unit_base;
margin-left: -29 * @unit_base;
color: @color_slider_handle_text;
background: url(images/00_slider_handle.png) no-repeat;
.LESSbackground-size(58 * @unit_base, 58 * @unit_base);
}
.ui-slider-popup {
position: absolute !important;
width: @popup-size;
height: @popup-size;
text-align: center;
padding-top: 0.6em;
z-index: 100;
color: @color_slider_popup_text;
background: url(images/00_slider_popup_bg.png) no-repeat;
.LESSbackground-size(@popup-size, @popup-size);
}
.ui-slider-bar {
position: absolute;
top: 0.75em;
height: 16 * @unit_base;
width: 0;
background-image: url(images/00_winset_list_progress_bar.png);
}
.ui-slider-handle-press {
position: absolute;
z-index: 15;
width: 58 * @unit_base;
height: 58 * @unit_base;
background: url(images/00_slider_handle_press.png) no-repeat;
.LESSbackground-size(58 * @unit_base, 58 * @unit_base);
}
|