draft-components 2.9.0 → 2.9.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/css/draft-components.css +8 -3
- package/package.json +1 -1
package/css/draft-components.css
CHANGED
|
@@ -2177,13 +2177,17 @@
|
|
|
2177
2177
|
border: none;
|
|
2178
2178
|
}
|
|
2179
2179
|
|
|
2180
|
+
.dc-slider-range__label,
|
|
2181
|
+
.dc-slider-range__label[hidden] {
|
|
2182
|
+
display: inline-flex;
|
|
2183
|
+
}
|
|
2184
|
+
|
|
2180
2185
|
.dc-slider-range__label {
|
|
2181
2186
|
font: var(--dc-text-xs);
|
|
2182
2187
|
color: var(--dc-slider-range-label-text-color);
|
|
2183
2188
|
position: absolute;
|
|
2184
2189
|
top: 0;
|
|
2185
2190
|
left: 0;
|
|
2186
|
-
display: inline-flex;
|
|
2187
2191
|
align-items: center;
|
|
2188
2192
|
box-sizing: border-box;
|
|
2189
2193
|
height: var(--dc-slider-range-label-height);
|
|
@@ -2217,7 +2221,7 @@
|
|
|
2217
2221
|
.dc-slider-range__track::after {
|
|
2218
2222
|
content: "";
|
|
2219
2223
|
position: absolute;
|
|
2220
|
-
z-index:
|
|
2224
|
+
z-index: 0;
|
|
2221
2225
|
top: 50%;
|
|
2222
2226
|
display: block;
|
|
2223
2227
|
box-sizing: border-box;
|
|
@@ -2247,6 +2251,7 @@
|
|
|
2247
2251
|
-moz-appearance: none;
|
|
2248
2252
|
appearance: none;
|
|
2249
2253
|
position: absolute;
|
|
2254
|
+
z-index: 1;
|
|
2250
2255
|
top: 0;
|
|
2251
2256
|
left: 0;
|
|
2252
2257
|
cursor: default;
|
|
@@ -2259,7 +2264,7 @@
|
|
|
2259
2264
|
}
|
|
2260
2265
|
|
|
2261
2266
|
.dc-slider-range__input_active {
|
|
2262
|
-
z-index:
|
|
2267
|
+
z-index: 2;
|
|
2263
2268
|
}
|
|
2264
2269
|
|
|
2265
2270
|
.dc-slider-range__input:focus {
|