-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.scss
58 lines (49 loc) · 1.18 KB
/
style.scss
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
@import 'nouislider.scss';
.autoform-nouislider2-handle {
box-shadow: none;
border: none;
border-radius: 0px;
background-color: #26A69A;
}
.autoform-nouislider2-handle::before {
content: none;
}
.autoform-nouislider2-handle::after {
content: none;
}
.autoform-nouislider2-handle:focus {
outline: none;
}
.autoform-nouislider2-horizontal {
box-shadow: none;
border-radius: 0px;
height: 5px;
}
.autoform-nouislider2-horizontal .autoform-nouislider2-handle {
top: -8px;
height: 20px;
width: 40px;
}
html:not([dir="rtl"]) .autoform-nouislider2-horizontal .autoform-nouislider2-handle {
right: -20px;
left: auto;
}
.autoform-nouislider2-target.autoform-nouislider2-horizontal .autoform-nouislider2-tooltip {
position: absolute;
height: 27px;
width: 53px;
top: -7px;
left: -7px;
color: white;
background-color: #26A69A;
font-size: 14px;
border: none;
border-radius: 0px;
transition: transform .25s;
transform: scale(.75);
transform-origin: 50% 100%;
}
.autoform-nouislider2-target.autoform-nouislider2-horizontal .autoform-nouislider2-active .autoform-nouislider2-tooltip {
transition: transform .25s;
transform: scale(1.5) translate(0px, -25px);
}