forked from leongersen/noUiSlider
-
Notifications
You must be signed in to change notification settings - Fork 1
/
nouislider.fox.css
94 lines (94 loc) · 1.67 KB
/
nouislider.fox.css
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
.noUiSlider,
.noUiSlider * {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
display: block;
cursor: default;
}
.noUiSlider {
position: relative;
}
.noUiSlider a {
position: absolute;
z-index: 1;
}
.noUiSlider a:nth-child(2) {
background: inherit !important;
}
.noUiSlider.vertical a {
width: 100%;
bottom: 0;
}
.noUiSlider.horizontal a {
height: 100%;
right: 0;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
.noUiSlider:before,
body.TOUCH,
.noUiSlider div {
-ms-touch-action: none;
}
.noUiSlider:before {
display: block;
position: absolute;
width: 150%;
left: -25%;
height: 400%;
top: -150%;
content: "";
z-index: -1;
}
.noUiSlider.vertical:before {
width: 400%;
left: -150%;
height: 150%;
top: -25%;
}
}
.noUiSlider {
border: 1px solid #908d84;
border-radius: 3px;
}
.noUiSlider.connect a,
.noUiSlider.connect.lower {
background: #b2a98f;
}
.noUiSlider,
.noUiSlider.connect.lower a {
background: #d9d7cb;
box-shadow: inset 0px 1px 7px #b6b4a8
}
.noUiSlider.disabled,
.noUiSlider.disabled.connect.lower a {
background: #ccc;
box-shadow: none;
}
.noUiSlider div {
height: 18px;
width: 18px;
border: 1px solid #99968f;
border-radius: 3px;
background: #efefe7;
}
.noUiSlider.disabled div {
background: transparent;
}
.noUiSlider.horizontal {
width: 300px;
height: 10px;
}
.noUiSlider.horizontal div {
margin: -5px 0 0 -9px;
}
.noUiSlider.vertical {
width: 10px;
height: 300px;
}
.noUiSlider.vertical div {
margin: -9px 0 0 -5px;
}