draft-components 4.1.0 → 4.2.0
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
CHANGED
|
@@ -2499,24 +2499,22 @@
|
|
|
2499
2499
|
scrollbar-width: thin;
|
|
2500
2500
|
}
|
|
2501
2501
|
|
|
2502
|
-
.dc-dialog__body:first-child,
|
|
2503
|
-
.dc-dialog__body_has_top-delimiter:not(:first-child) {
|
|
2502
|
+
.dc-dialog__body:where(:first-child),
|
|
2503
|
+
.dc-dialog__body_has_top-delimiter:where(:not(:first-child)) {
|
|
2504
2504
|
padding-top: 16px;
|
|
2505
2505
|
}
|
|
2506
2506
|
|
|
2507
|
-
.dc-dialog__body:last-child,
|
|
2508
|
-
.dc-dialog__body_has_bottom-delimiter:not(:first-child) {
|
|
2507
|
+
.dc-dialog__body:where(:last-child),
|
|
2508
|
+
.dc-dialog__body_has_bottom-delimiter:where(:not(:first-child)) {
|
|
2509
2509
|
padding-bottom: 16px;
|
|
2510
2510
|
}
|
|
2511
2511
|
|
|
2512
2512
|
.dc-dialog__body_has_top-delimiter:not(:first-child) {
|
|
2513
|
-
border-top: var(--section-delimiter-width) solid
|
|
2514
|
-
var(--section-delimiter-color);
|
|
2513
|
+
border-top: var(--section-delimiter-width) solid var(--section-delimiter-color);
|
|
2515
2514
|
}
|
|
2516
2515
|
|
|
2517
2516
|
.dc-dialog__body_has_bottom-delimiter:not(:first-child) {
|
|
2518
|
-
border-bottom: var(--section-delimiter-width) solid
|
|
2519
|
-
var(--section-delimiter-color);
|
|
2517
|
+
border-bottom: var(--section-delimiter-width) solid var(--section-delimiter-color);
|
|
2520
2518
|
}
|
|
2521
2519
|
|
|
2522
2520
|
.dc-dialog__footer {
|
|
@@ -310,24 +310,22 @@
|
|
|
310
310
|
scrollbar-width: thin;
|
|
311
311
|
}
|
|
312
312
|
|
|
313
|
-
.dc-dialog__body:first-child,
|
|
314
|
-
.dc-dialog__body_has_top-delimiter:not(:first-child) {
|
|
313
|
+
.dc-dialog__body:where(:first-child),
|
|
314
|
+
.dc-dialog__body_has_top-delimiter:where(:not(:first-child)) {
|
|
315
315
|
padding-top: 16px;
|
|
316
316
|
}
|
|
317
317
|
|
|
318
|
-
.dc-dialog__body:last-child,
|
|
319
|
-
.dc-dialog__body_has_bottom-delimiter:not(:first-child) {
|
|
318
|
+
.dc-dialog__body:where(:last-child),
|
|
319
|
+
.dc-dialog__body_has_bottom-delimiter:where(:not(:first-child)) {
|
|
320
320
|
padding-bottom: 16px;
|
|
321
321
|
}
|
|
322
322
|
|
|
323
323
|
.dc-dialog__body_has_top-delimiter:not(:first-child) {
|
|
324
|
-
border-top: var(--section-delimiter-width) solid
|
|
325
|
-
var(--section-delimiter-color);
|
|
324
|
+
border-top: var(--section-delimiter-width) solid var(--section-delimiter-color);
|
|
326
325
|
}
|
|
327
326
|
|
|
328
327
|
.dc-dialog__body_has_bottom-delimiter:not(:first-child) {
|
|
329
|
-
border-bottom: var(--section-delimiter-width) solid
|
|
330
|
-
var(--section-delimiter-color);
|
|
328
|
+
border-bottom: var(--section-delimiter-width) solid var(--section-delimiter-color);
|
|
331
329
|
}
|
|
332
330
|
|
|
333
331
|
.dc-dialog__footer {
|