FRange.less
1.27 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
.wev-range-wrap {
position: relative;
}
.wev-range-wrap input[type='range'] {
position: relative;
width: 100%;
height: 2px;
margin: 19px 0;
padding: 0;
cursor: pointer;
border: 0;
border-radius: 3px;
outline: 0;
-webkit-appearance: none!important;
z-index: 2;
background: -webkit-linear-gradient(var(--themeColor), var(--themeColor)) no-repeat;
background-size: 0% 100%;
}
.wev-range-wrap input[type='range']::-webkit-slider-thumb{
width: 28px;
height: 28px;
border-color: var(--themeColor);
border-radius: 50%;
background-color: var(--themeColor);
background-clip: padding-box;
-webkit-appearance: none !important;
}
.wev-range-wrap:after {
content: '';
position: absolute;
top: 19px;
left: 0px;
right: 0px;
height: 2px;
border-radius: 3px;
background-color: #999;
z-index: 1;
}
.wev-range-wrap .wev-range-tip{
font-size: 24 * @hd;
line-height: 2em;
position: absolute;
z-index: 5;
top: -52 * @hd;
width: 2em;
height: 2em;
text-align: center;
opacity: .8;
color: #333;
border: 1px solid #ddd;
border-radius: 6px;
background-color: #fff;
text-shadow: 0 1px 0 #f3f3f3;
}
.wev-range-wrap .wev-range-tip.wev-hide{
display: none;
}