李金换
2022-04-19 0573df74c773ba453a612c65271b0975444e375b
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
.THIS {
    position: relative;
    height: 160px;
}
 
.THIS input[type=range]{
    -webkit-appearance: none;
    width:100%;
}
 
.THIS input[type=range]::-webkit-slider-runnable-track {
    width: 500px;
    height: 2px;
    background: #32738E;
    border: none;
    border-radius: 3px;
}
 
.THIS input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    height: 24px;
    width: 16px;
    border-radius: 2px;
    background: #32738E;
    margin-top: -10px;
}
 
.THIS input[type=range]:focus {
    outline: none;
}
 
.THIS input[type=range]:focus::-webkit-slider-runnable-track {
    background: #32738E;
}
 
.THIS .slds-checkbox--toggle [type=checkbox]:checked+.slds-checkbox--faux, 
.THIS .slds-checkbox--toggle [type=checkbox]:checked~.slds-checkbox--faux {
    background-color: #32738E;    
}
 
.THIS .slds-form-element__label {
    width: 110px;
}