-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathSlider.less
119 lines (97 loc) · 2.22 KB
/
Slider.less
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
@text-color: #707171;
.WLC-range-base {
width: 100%;
height: 22px;
margin: 0;
padding: 0;
position: absolute;
background: transparent;
outline: none; /* no focus outline */
-webkit-appearance: none;
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
.WLC-range-fill {
position: relative;
top: 9px;
width: 10px;
height: 3px;
border-radius: 12px;
background-color: @main-color;
&.disabled {
background: rgba(236,236,236,0.5);
}
}
.WLC-range-thumb {
width: 22px;
height: 22px;
border-radius: 12px;
border: 0px;
background: @main-color;
-webkit-appearance: none;
}
.WLC-range-track {
height: 1px;
background-color: @text-color;
width: 100%;
position: relative;
top: 11px;
z-index: 0;
}
.WLC-Slider {
position: relative;
display: inline-block;
width: 100px;
height: 30px;
input[type='range'] {
.WLC-range-base;
}
input[type='range']::-moz-range-track {
border: none;
background: transparent;
}
input[type='range']::-ms-track {
color: transparent; /* don't drawn vertical reference line */
border: inherit;
background: transparent;
}
input[type='range']::-ms-fill-lower,
input[type='range']::-ms-fill-upper {
background: transparent;
}
input[type='range']::-ms-tooltip {
display: none;
}
input[type='range']::-webkit-slider-thumb {
.WLC-range-thumb;
}
input[type="range"]:disabled::-webkit-slider-thumb {
background: rgba(236,236,236,1);
border: none;
}
input[type="range"]:disabled::-moz-range-thumb {
background: rgba(236,236,236,1);
border: none;
}
input[type="range"]:disabled::-ms-thumb {
background: rgba(236,236,236,1);
border: none;
}
input[type='range']::-moz-range-thumb {
.WLC-range-thumb;
}
input[type='range']::-ms-thumb {
.WLC-range-thumb;
}
.WLC-slider-fill {
.WLC-range-fill;
}
.WLC-track {
.WLC-range-track;
}
.WLC-sub-label {
font-size: 11px;
position: relative;
top: 12px;
color: @text-color;
}
}