@digiko-npm/designsystem 0.9.41 → 0.9.43
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/dist/designsystem.css +288 -109
- package/dist/designsystem.min.css +2 -2
- package/package.json +7 -2
- package/src/base/typography.css +1 -1
- package/src/components/admin-layout.css +3 -3
- package/src/components/avatar.css +1 -1
- package/src/components/badge.css +1 -1
- package/src/components/bottom-sheet.css +1 -1
- package/src/components/button.css +2 -2
- package/src/components/card.css +2 -2
- package/src/components/chip.css +1 -1
- package/src/components/combobox.css +3 -3
- package/src/components/command.css +3 -3
- package/src/components/custom-select.css +3 -3
- package/src/components/datepicker.css +5 -5
- package/src/components/description-list.css +1 -1
- package/src/components/drop-zone.css +1 -1
- package/src/components/dropdown.css +3 -3
- package/src/components/gallery.css +3 -3
- package/src/components/kbd.css +1 -1
- package/src/components/nav.css +1 -1
- package/src/components/popover.css +1 -1
- package/src/components/progress.css +1 -1
- package/src/components/prose.css +149 -2
- package/src/components/search.css +4 -4
- package/src/components/segmented-control.css +2 -2
- package/src/components/skeleton.css +1 -1
- package/src/components/slider.css +1 -1
- package/src/components/stat-card.css +1 -1
- package/src/components/table.css +1 -1
- package/src/components/tabs.css +4 -4
- package/src/components/tag.css +7 -7
- package/src/components/timeline.css +1 -1
- package/src/components/toggle.css +23 -22
- package/src/components/toolbar.css +2 -2
- package/src/tokens/colors.css +35 -13
- package/src/tokens/typography.css +9 -0
- package/src/utilities/states.css +6 -6
- package/src/utilities/text.css +3 -3
package/dist/designsystem.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* @ds/designsystem v0.9.
|
|
1
|
+
/* @ds/designsystem v0.9.42 */
|
|
2
2
|
/* ==========================================================================
|
|
3
3
|
@digiko-npm/designsystem
|
|
4
4
|
|
|
@@ -33,8 +33,20 @@
|
|
|
33
33
|
/* Light theme (default) */
|
|
34
34
|
:root,
|
|
35
35
|
[data-theme="light"] {
|
|
36
|
-
/* ---
|
|
36
|
+
/* --- Background — page-level only --- */
|
|
37
37
|
--ds-color-bg: #fafafa;
|
|
38
|
+
|
|
39
|
+
/* --- Surface — everything on top of bg --- */
|
|
40
|
+
--ds-color-surface: #ffffff;
|
|
41
|
+
--ds-color-surface-hover: #fafafa;
|
|
42
|
+
--ds-color-surface-muted: #e4e4e7;
|
|
43
|
+
--ds-color-surface-muted-hover: #d4d4d8;
|
|
44
|
+
--ds-color-surface-elevated: #f4f4f5;
|
|
45
|
+
--ds-color-surface-elevated-hover: #e4e4e7;
|
|
46
|
+
--ds-color-surface-active: #f4f4f5; /* same value as elevated, different semantics — selected/active state */
|
|
47
|
+
|
|
48
|
+
/* @deprecated — use surface-* instead. Will be removed in a future major.
|
|
49
|
+
Kept for backward compatibility with consumer projects. */
|
|
38
50
|
--ds-color-bg-subtle: #ffffff;
|
|
39
51
|
--ds-color-bg-muted: #e4e4e7;
|
|
40
52
|
--ds-color-bg-muted-hover: #d4d4d8;
|
|
@@ -42,10 +54,6 @@
|
|
|
42
54
|
--ds-color-bg-elevated: #f4f4f5;
|
|
43
55
|
--ds-color-bg-elevated-hover: #e4e4e7;
|
|
44
56
|
|
|
45
|
-
--ds-color-surface: #ffffff;
|
|
46
|
-
--ds-color-surface-hover: #fafafa;
|
|
47
|
-
--ds-color-surface-active: #f4f4f5;
|
|
48
|
-
|
|
49
57
|
/* --- Text — zinc hierarchy ---
|
|
50
58
|
Contrast ratios on --ds-color-bg (#fafafa):
|
|
51
59
|
--text: #09090b → ~19.3:1 ✅ WCAG AAA
|
|
@@ -84,10 +92,13 @@
|
|
|
84
92
|
/* --- Overlays --- */
|
|
85
93
|
--ds-color-overlay: rgba(0, 0, 0, 0.5);
|
|
86
94
|
--ds-color-overlay-subtle: rgba(0, 0, 0, 0.02);
|
|
95
|
+
|
|
96
|
+
/* @deprecated — use surface-hover / surface-active instead */
|
|
87
97
|
--ds-color-overlay-hover: rgba(0, 0, 0, 0.08);
|
|
88
98
|
--ds-color-overlay-active: rgba(0, 0, 0, 0.12);
|
|
89
99
|
|
|
90
|
-
/*
|
|
100
|
+
/* @deprecated — use color-surface + backdrop-filter for glass effect.
|
|
101
|
+
Too specific as tokens. Kept for backward compat. */
|
|
91
102
|
--ds-color-nav-bg: rgba(250, 250, 250, 0.8);
|
|
92
103
|
--ds-color-nav-border: rgba(228, 228, 231, 0.6);
|
|
93
104
|
|
|
@@ -109,8 +120,19 @@
|
|
|
109
120
|
|
|
110
121
|
/* Dark theme */
|
|
111
122
|
[data-theme="dark"] {
|
|
112
|
-
/* ---
|
|
123
|
+
/* --- Background — page-level only --- */
|
|
113
124
|
--ds-color-bg: #09090b;
|
|
125
|
+
|
|
126
|
+
/* --- Surface --- */
|
|
127
|
+
--ds-color-surface: #0f0f11;
|
|
128
|
+
--ds-color-surface-hover: #18181b;
|
|
129
|
+
--ds-color-surface-muted: #18181b;
|
|
130
|
+
--ds-color-surface-muted-hover: #212124;
|
|
131
|
+
--ds-color-surface-elevated: #2d2d31;
|
|
132
|
+
--ds-color-surface-elevated-hover: #3a3a40;
|
|
133
|
+
--ds-color-surface-active: #27272a;
|
|
134
|
+
|
|
135
|
+
/* @deprecated */
|
|
114
136
|
--ds-color-bg-subtle: #0f0f11;
|
|
115
137
|
--ds-color-bg-muted: #18181b;
|
|
116
138
|
--ds-color-bg-muted-hover: #212124;
|
|
@@ -118,10 +140,6 @@
|
|
|
118
140
|
--ds-color-bg-elevated: #2d2d31;
|
|
119
141
|
--ds-color-bg-elevated-hover: #3a3a40;
|
|
120
142
|
|
|
121
|
-
--ds-color-surface: #0f0f11;
|
|
122
|
-
--ds-color-surface-hover: #18181b;
|
|
123
|
-
--ds-color-surface-active: #27272a;
|
|
124
|
-
|
|
125
143
|
/* --- Text ---
|
|
126
144
|
Contrast ratios on --ds-color-bg (#09090b):
|
|
127
145
|
--text: #fafafa → ~19.3:1 ✅ WCAG AAA
|
|
@@ -160,10 +178,12 @@
|
|
|
160
178
|
/* --- Overlays --- */
|
|
161
179
|
--ds-color-overlay: rgba(0, 0, 0, 0.7);
|
|
162
180
|
--ds-color-overlay-subtle: rgba(255, 255, 255, 0.03);
|
|
181
|
+
|
|
182
|
+
/* @deprecated */
|
|
163
183
|
--ds-color-overlay-hover: rgba(255, 255, 255, 0.1);
|
|
164
184
|
--ds-color-overlay-active: rgba(255, 255, 255, 0.15);
|
|
165
185
|
|
|
166
|
-
/*
|
|
186
|
+
/* @deprecated */
|
|
167
187
|
--ds-color-nav-bg: rgba(9, 9, 11, 0.8);
|
|
168
188
|
--ds-color-nav-border: rgba(39, 39, 42, 0.6);
|
|
169
189
|
|
|
@@ -206,7 +226,9 @@
|
|
|
206
226
|
--ds-color-info-subtle: rgba(37, 99, 235, 0.1);
|
|
207
227
|
--ds-color-info-border: rgba(37, 99, 235, 0.2);
|
|
208
228
|
|
|
209
|
-
/*
|
|
229
|
+
/* @deprecated — use color-success/warning/error/info directly.
|
|
230
|
+
The -solid variant was identical in value and confusing in name.
|
|
231
|
+
Kept for backward compatibility. */
|
|
210
232
|
--ds-color-success-solid: #16a34a;
|
|
211
233
|
--ds-color-warning-solid: #d97706;
|
|
212
234
|
--ds-color-error-solid: #dc2626;
|
|
@@ -290,6 +312,15 @@
|
|
|
290
312
|
--ds-text-6xl: 3.75rem; /* 60px */
|
|
291
313
|
--ds-text-7xl: 4.5rem; /* 72px */
|
|
292
314
|
|
|
315
|
+
/* --- Editorial long-form fluid sizes ---
|
|
316
|
+
Promoted from esys/blog.css on 12 Apr 2026 after the blog incident.
|
|
317
|
+
These target magazine-style article reading, between the functional
|
|
318
|
+
UI scale (ds-text-*) and the display scale (ds-hero-title). Used by
|
|
319
|
+
.ds-editorial-title and .ds-editorial-lede in components/prose.css. */
|
|
320
|
+
--ds-text-editorial-title: clamp(2.5rem, 4vw + 1.5rem, 4.5rem); /* 40 → 72px */
|
|
321
|
+
--ds-text-editorial-lede: clamp(1.125rem, 0.5vw + 1rem, 1.375rem); /* 18 → 22px */
|
|
322
|
+
--ds-text-editorial-body: 1.0625rem; /* 17px fixed — sweet spot for long-form body */
|
|
323
|
+
|
|
293
324
|
/* --- Font Weights --- */
|
|
294
325
|
--ds-weight-light: 300;
|
|
295
326
|
--ds-weight-normal: 400;
|
|
@@ -674,7 +705,7 @@ strong, b {
|
|
|
674
705
|
code, kbd, samp {
|
|
675
706
|
font-family: var(--ds-font-mono);
|
|
676
707
|
font-size: 0.9em;
|
|
677
|
-
background-color: var(--ds-color-
|
|
708
|
+
background-color: var(--ds-color-surface-elevated);
|
|
678
709
|
padding: 2px 6px;
|
|
679
710
|
border-radius: var(--ds-radius-sm);
|
|
680
711
|
}
|
|
@@ -1284,12 +1315,13 @@ hr {
|
|
|
1284
1315
|
|
|
1285
1316
|
display: inline-flex;
|
|
1286
1317
|
position: relative;
|
|
1287
|
-
width:
|
|
1288
|
-
height:
|
|
1289
|
-
|
|
1290
|
-
|
|
1318
|
+
width: 3.25rem;
|
|
1319
|
+
height: 1.5rem;
|
|
1320
|
+
/* Proportions locked: track 2.2:1, thumb 59%w 80%h of track */
|
|
1321
|
+
padding: 2px;
|
|
1322
|
+
border: 1px solid var(--ds-color-border);
|
|
1291
1323
|
border-radius: var(--ds-radius-full);
|
|
1292
|
-
background-color: var(--ds-color-
|
|
1324
|
+
background-color: var(--ds-color-surface-elevated);
|
|
1293
1325
|
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12);
|
|
1294
1326
|
cursor: pointer;
|
|
1295
1327
|
transition: background-color var(--ds-duration-normal) var(--ds-ease-out),
|
|
@@ -1349,10 +1381,10 @@ hr {
|
|
|
1349
1381
|
|
|
1350
1382
|
content: "";
|
|
1351
1383
|
position: absolute;
|
|
1352
|
-
inset-inline-start:
|
|
1384
|
+
inset-inline-start: 2px;
|
|
1353
1385
|
inset-block-start: 50%;
|
|
1354
|
-
width:
|
|
1355
|
-
height: 1.
|
|
1386
|
+
width: 1.875rem;
|
|
1387
|
+
height: 1.25rem;
|
|
1356
1388
|
border-radius: var(--ds-radius-full);
|
|
1357
1389
|
background-color: var(--ds-color-static-white);
|
|
1358
1390
|
box-shadow:
|
|
@@ -1370,11 +1402,11 @@ hr {
|
|
|
1370
1402
|
.ds-toggle[aria-checked="true"]::after,
|
|
1371
1403
|
.ds-toggle--checked::after {
|
|
1372
1404
|
|
|
1373
|
-
transform: translateX(1.
|
|
1405
|
+
transform: translateX(1.125rem) translateY(-50%);
|
|
1374
1406
|
}
|
|
1375
1407
|
.ds-toggle:hover {
|
|
1376
1408
|
|
|
1377
|
-
background-color: var(--ds-color-
|
|
1409
|
+
background-color: var(--ds-color-surface-elevated-hover);
|
|
1378
1410
|
}
|
|
1379
1411
|
.ds-toggle[aria-checked="true"]:hover,
|
|
1380
1412
|
.ds-toggle--checked:hover {
|
|
@@ -1397,8 +1429,8 @@ hr {
|
|
|
1397
1429
|
}
|
|
1398
1430
|
.ds-toggle--sm {
|
|
1399
1431
|
|
|
1400
|
-
width:
|
|
1401
|
-
height: 1.
|
|
1432
|
+
width: 2.75rem;
|
|
1433
|
+
height: 1.25rem;
|
|
1402
1434
|
padding: 2px;
|
|
1403
1435
|
|
|
1404
1436
|
|
|
@@ -1408,19 +1440,19 @@ hr {
|
|
|
1408
1440
|
.ds-toggle--sm::after {
|
|
1409
1441
|
|
|
1410
1442
|
inset-inline-start: 2px;
|
|
1411
|
-
width:
|
|
1412
|
-
height:
|
|
1443
|
+
width: 1.625rem;
|
|
1444
|
+
height: 1rem;
|
|
1413
1445
|
}
|
|
1414
1446
|
.ds-toggle--sm[aria-checked="true"]::after,
|
|
1415
1447
|
.ds-toggle--sm.ds-toggle--checked::after {
|
|
1416
1448
|
|
|
1417
|
-
transform: translateX(
|
|
1449
|
+
transform: translateX(0.875rem) translateY(-50%);
|
|
1418
1450
|
}
|
|
1419
1451
|
.ds-toggle--lg {
|
|
1420
1452
|
|
|
1421
|
-
width:
|
|
1422
|
-
height:
|
|
1423
|
-
padding:
|
|
1453
|
+
width: 3.75rem;
|
|
1454
|
+
height: 1.75rem;
|
|
1455
|
+
padding: 2px;
|
|
1424
1456
|
|
|
1425
1457
|
|
|
1426
1458
|
|
|
@@ -1428,14 +1460,14 @@ hr {
|
|
|
1428
1460
|
}
|
|
1429
1461
|
.ds-toggle--lg::after {
|
|
1430
1462
|
|
|
1431
|
-
inset-inline-start:
|
|
1432
|
-
width:
|
|
1433
|
-
height:
|
|
1463
|
+
inset-inline-start: 2px;
|
|
1464
|
+
width: 2.25rem;
|
|
1465
|
+
height: 1.4rem;
|
|
1434
1466
|
}
|
|
1435
1467
|
.ds-toggle--lg[aria-checked="true"]::after,
|
|
1436
1468
|
.ds-toggle--lg.ds-toggle--checked::after {
|
|
1437
1469
|
|
|
1438
|
-
transform: translateX(1.
|
|
1470
|
+
transform: translateX(1.25rem) translateY(-50%);
|
|
1439
1471
|
}
|
|
1440
1472
|
|
|
1441
1473
|
|
|
@@ -1585,7 +1617,7 @@ hr {
|
|
|
1585
1617
|
.ds-custom-select__panel {
|
|
1586
1618
|
position: fixed;
|
|
1587
1619
|
z-index: var(--ds-z-dropdown);
|
|
1588
|
-
background-color: var(--ds-color-
|
|
1620
|
+
background-color: var(--ds-color-surface-muted);
|
|
1589
1621
|
border: 1px solid var(--ds-color-border);
|
|
1590
1622
|
border-radius: var(--ds-radius-xl);
|
|
1591
1623
|
box-shadow: var(--ds-shadow-lg);
|
|
@@ -1684,7 +1716,7 @@ hr {
|
|
|
1684
1716
|
|
|
1685
1717
|
.ds-custom-select__option--selected,
|
|
1686
1718
|
.ds-custom-select__option--selected:hover {
|
|
1687
|
-
background-color: var(--ds-color-
|
|
1719
|
+
background-color: var(--ds-color-surface-elevated);
|
|
1688
1720
|
color: var(--ds-color-text);
|
|
1689
1721
|
font-weight: var(--ds-weight-medium);
|
|
1690
1722
|
}
|
|
@@ -1829,7 +1861,7 @@ hr {
|
|
|
1829
1861
|
font-family: var(--ds-font-sans);
|
|
1830
1862
|
line-height: var(--ds-leading-none);
|
|
1831
1863
|
border-radius: var(--ds-radius-full);
|
|
1832
|
-
background-color: var(--ds-color-
|
|
1864
|
+
background-color: var(--ds-color-surface-muted);
|
|
1833
1865
|
border: 1px solid var(--ds-color-border);
|
|
1834
1866
|
color: var(--ds-color-text-secondary);
|
|
1835
1867
|
white-space: nowrap;
|
|
@@ -2062,7 +2094,7 @@ hr {
|
|
|
2062
2094
|
max-height: 16rem;
|
|
2063
2095
|
overflow-y: auto;
|
|
2064
2096
|
overscroll-behavior: contain;
|
|
2065
|
-
background-color: var(--ds-color-
|
|
2097
|
+
background-color: var(--ds-color-surface-muted);
|
|
2066
2098
|
border: 1px solid var(--ds-color-border);
|
|
2067
2099
|
border-radius: var(--ds-radius-xl);
|
|
2068
2100
|
box-shadow: var(--ds-shadow-lg);
|
|
@@ -2137,7 +2169,7 @@ hr {
|
|
|
2137
2169
|
|
|
2138
2170
|
.ds-combobox__option--active,
|
|
2139
2171
|
.ds-combobox__option--active:hover {
|
|
2140
|
-
background-color: var(--ds-color-
|
|
2172
|
+
background-color: var(--ds-color-surface-elevated);
|
|
2141
2173
|
color: var(--ds-color-text);
|
|
2142
2174
|
}
|
|
2143
2175
|
|
|
@@ -2237,7 +2269,7 @@ hr {
|
|
|
2237
2269
|
font-family: var(--ds-font-sans);
|
|
2238
2270
|
line-height: var(--ds-leading-none);
|
|
2239
2271
|
border-radius: var(--ds-radius-full);
|
|
2240
|
-
background-color: var(--ds-color-
|
|
2272
|
+
background-color: var(--ds-color-surface-muted);
|
|
2241
2273
|
border: 1px solid var(--ds-color-border);
|
|
2242
2274
|
color: var(--ds-color-text-secondary);
|
|
2243
2275
|
white-space: nowrap;
|
|
@@ -2744,7 +2776,7 @@ hr {
|
|
|
2744
2776
|
z-index: var(--ds-z-dropdown);
|
|
2745
2777
|
inset-block-start: calc(100% + var(--ds-offset-sm));
|
|
2746
2778
|
inset-inline-start: 0;
|
|
2747
|
-
background-color: var(--ds-color-
|
|
2779
|
+
background-color: var(--ds-color-surface-muted);
|
|
2748
2780
|
border: 1px solid var(--ds-color-border);
|
|
2749
2781
|
border-radius: var(--ds-radius-xl);
|
|
2750
2782
|
box-shadow: var(--ds-shadow-lg);
|
|
@@ -2799,7 +2831,7 @@ hr {
|
|
|
2799
2831
|
}
|
|
2800
2832
|
.ds-datepicker__nav:hover {
|
|
2801
2833
|
|
|
2802
|
-
background-color: var(--ds-color-
|
|
2834
|
+
background-color: var(--ds-color-surface-muted-hover);
|
|
2803
2835
|
color: var(--ds-color-text);
|
|
2804
2836
|
}
|
|
2805
2837
|
.ds-datepicker__nav:focus-visible {
|
|
@@ -2860,7 +2892,7 @@ hr {
|
|
|
2860
2892
|
}
|
|
2861
2893
|
.ds-datepicker__day:hover {
|
|
2862
2894
|
|
|
2863
|
-
background-color: var(--ds-color-
|
|
2895
|
+
background-color: var(--ds-color-surface-muted-hover);
|
|
2864
2896
|
}
|
|
2865
2897
|
.ds-datepicker__day:focus-visible {
|
|
2866
2898
|
|
|
@@ -2916,7 +2948,7 @@ hr {
|
|
|
2916
2948
|
}
|
|
2917
2949
|
.ds-datepicker__today:hover {
|
|
2918
2950
|
|
|
2919
|
-
background-color: var(--ds-color-
|
|
2951
|
+
background-color: var(--ds-color-surface-muted-hover);
|
|
2920
2952
|
color: var(--ds-color-text);
|
|
2921
2953
|
border-color: var(--ds-color-border-hover);
|
|
2922
2954
|
}
|
|
@@ -2948,7 +2980,7 @@ hr {
|
|
|
2948
2980
|
}
|
|
2949
2981
|
.ds-datepicker__step:hover {
|
|
2950
2982
|
|
|
2951
|
-
background-color: var(--ds-color-
|
|
2983
|
+
background-color: var(--ds-color-surface-muted-hover);
|
|
2952
2984
|
color: var(--ds-color-text);
|
|
2953
2985
|
}
|
|
2954
2986
|
.ds-datepicker__step:focus-visible {
|
|
@@ -3144,7 +3176,7 @@ hr {
|
|
|
3144
3176
|
appearance: none;
|
|
3145
3177
|
width: 100%;
|
|
3146
3178
|
height: 0.375rem;
|
|
3147
|
-
background-color: var(--ds-color-
|
|
3179
|
+
background-color: var(--ds-color-surface-muted);
|
|
3148
3180
|
border-radius: var(--ds-radius-full);
|
|
3149
3181
|
outline: none;
|
|
3150
3182
|
cursor: pointer;
|
|
@@ -3367,7 +3399,7 @@ hr {
|
|
|
3367
3399
|
width: 3rem;
|
|
3368
3400
|
height: 3rem;
|
|
3369
3401
|
border-radius: var(--ds-radius-xl);
|
|
3370
|
-
background-color: var(--ds-color-
|
|
3402
|
+
background-color: var(--ds-color-surface-muted);
|
|
3371
3403
|
color: var(--ds-color-text-secondary);
|
|
3372
3404
|
transition: color var(--ds-duration-fast) var(--ds-ease-default);
|
|
3373
3405
|
}
|
|
@@ -3590,7 +3622,7 @@ hr {
|
|
|
3590
3622
|
border-radius: var(--ds-radius-full);
|
|
3591
3623
|
white-space: nowrap;
|
|
3592
3624
|
border: 1px solid var(--ds-color-border);
|
|
3593
|
-
background-color: var(--ds-color-
|
|
3625
|
+
background-color: var(--ds-color-surface-muted);
|
|
3594
3626
|
color: var(--ds-color-text-secondary);
|
|
3595
3627
|
|
|
3596
3628
|
/* Semantic variants — subtle bg + bright text + subtle border */
|
|
@@ -3708,7 +3740,7 @@ hr {
|
|
|
3708
3740
|
font-family: var(--ds-font-sans);
|
|
3709
3741
|
line-height: var(--ds-leading-none);
|
|
3710
3742
|
border-radius: var(--ds-radius-full);
|
|
3711
|
-
background-color: var(--ds-color-
|
|
3743
|
+
background-color: var(--ds-color-surface-muted);
|
|
3712
3744
|
border: 1px solid var(--ds-color-border);
|
|
3713
3745
|
color: var(--ds-color-text-secondary);
|
|
3714
3746
|
white-space: nowrap;
|
|
@@ -3770,37 +3802,37 @@ hr {
|
|
|
3770
3802
|
}
|
|
3771
3803
|
.ds-tag--primary {
|
|
3772
3804
|
|
|
3773
|
-
background-color: var(--ds-color-interactive-subtle, var(--ds-color-
|
|
3805
|
+
background-color: var(--ds-color-interactive-subtle, var(--ds-color-surface-muted));
|
|
3774
3806
|
color: var(--ds-color-interactive);
|
|
3775
3807
|
border-color: var(--ds-color-interactive-border, var(--ds-color-interactive));
|
|
3776
3808
|
}
|
|
3777
3809
|
.ds-tag--success {
|
|
3778
3810
|
|
|
3779
|
-
background-color: var(--ds-color-success-subtle, var(--ds-color-
|
|
3811
|
+
background-color: var(--ds-color-success-subtle, var(--ds-color-surface-muted));
|
|
3780
3812
|
color: var(--ds-color-success);
|
|
3781
3813
|
border-color: var(--ds-color-success-border, var(--ds-color-success));
|
|
3782
3814
|
}
|
|
3783
3815
|
.ds-tag--warning {
|
|
3784
3816
|
|
|
3785
|
-
background-color: var(--ds-color-warning-subtle, var(--ds-color-
|
|
3817
|
+
background-color: var(--ds-color-warning-subtle, var(--ds-color-surface-muted));
|
|
3786
3818
|
color: var(--ds-color-warning);
|
|
3787
3819
|
border-color: var(--ds-color-warning-border, var(--ds-color-warning));
|
|
3788
3820
|
}
|
|
3789
3821
|
.ds-tag--error {
|
|
3790
3822
|
|
|
3791
|
-
background-color: var(--ds-color-error-subtle, var(--ds-color-
|
|
3823
|
+
background-color: var(--ds-color-error-subtle, var(--ds-color-surface-muted));
|
|
3792
3824
|
color: var(--ds-color-error);
|
|
3793
3825
|
border-color: var(--ds-color-error-border, var(--ds-color-error));
|
|
3794
3826
|
}
|
|
3795
3827
|
.ds-tag--info {
|
|
3796
3828
|
|
|
3797
|
-
background-color: var(--ds-color-info-subtle, var(--ds-color-
|
|
3829
|
+
background-color: var(--ds-color-info-subtle, var(--ds-color-surface-muted));
|
|
3798
3830
|
color: var(--ds-color-info);
|
|
3799
3831
|
border-color: var(--ds-color-info-border, var(--ds-color-info));
|
|
3800
3832
|
}
|
|
3801
3833
|
.ds-tag--purple {
|
|
3802
3834
|
|
|
3803
|
-
background-color: var(--ds-color-accent-purple-subtle, var(--ds-color-
|
|
3835
|
+
background-color: var(--ds-color-accent-purple-subtle, var(--ds-color-surface-muted));
|
|
3804
3836
|
color: var(--ds-color-accent-purple, var(--ds-color-interactive));
|
|
3805
3837
|
border-color: var(--ds-color-accent-purple-border, var(--ds-color-accent-purple, var(--ds-color-interactive)));
|
|
3806
3838
|
}
|
|
@@ -3914,7 +3946,7 @@ hr {
|
|
|
3914
3946
|
font-size: var(--ds-text-xs);
|
|
3915
3947
|
font-family: inherit;
|
|
3916
3948
|
color: var(--ds-color-text-secondary);
|
|
3917
|
-
background: var(--ds-color-
|
|
3949
|
+
background: var(--ds-color-surface-muted);
|
|
3918
3950
|
border: 1px solid var(--ds-color-border);
|
|
3919
3951
|
border-radius: var(--ds-radius-full);
|
|
3920
3952
|
white-space: nowrap;
|
|
@@ -3987,7 +4019,7 @@ hr {
|
|
|
3987
4019
|
width: var(--ds-size-3);
|
|
3988
4020
|
height: var(--ds-size-3);
|
|
3989
4021
|
border-radius: var(--ds-radius-full);
|
|
3990
|
-
background-color: var(--ds-color-
|
|
4022
|
+
background-color: var(--ds-color-surface-muted);
|
|
3991
4023
|
color: var(--ds-color-text-secondary);
|
|
3992
4024
|
font-family: var(--ds-font-sans);
|
|
3993
4025
|
font-size: var(--ds-text-sm);
|
|
@@ -4166,7 +4198,7 @@ hr {
|
|
|
4166
4198
|
display: flex;
|
|
4167
4199
|
align-items: center;
|
|
4168
4200
|
justify-content: center;
|
|
4169
|
-
background-color: var(--ds-color-
|
|
4201
|
+
background-color: var(--ds-color-surface-muted);
|
|
4170
4202
|
color: var(--ds-color-text-secondary);
|
|
4171
4203
|
}
|
|
4172
4204
|
|
|
@@ -4380,7 +4412,7 @@ hr {
|
|
|
4380
4412
|
inset-inline-end: var(--ds-space-4);
|
|
4381
4413
|
height: 0.75rem;
|
|
4382
4414
|
transform: translateY(-50%);
|
|
4383
|
-
background: var(--ds-color-
|
|
4415
|
+
background: var(--ds-color-surface-muted);
|
|
4384
4416
|
border-radius: var(--ds-radius-sm);
|
|
4385
4417
|
animation: ds-table-skeleton-pulse 1.5s ease-in-out infinite;
|
|
4386
4418
|
}
|
|
@@ -4618,7 +4650,7 @@ hr {
|
|
|
4618
4650
|
}
|
|
4619
4651
|
.ds-description-list--striped .ds-description-list__item:nth-child(odd) {
|
|
4620
4652
|
|
|
4621
|
-
background-color: var(--ds-color-
|
|
4653
|
+
background-color: var(--ds-color-surface);
|
|
4622
4654
|
padding-inline: var(--ds-space-3);
|
|
4623
4655
|
border-radius: var(--ds-radius-md);
|
|
4624
4656
|
}
|
|
@@ -4731,7 +4763,7 @@ hr {
|
|
|
4731
4763
|
width: 1rem;
|
|
4732
4764
|
height: 1rem;
|
|
4733
4765
|
border-radius: var(--ds-radius-full);
|
|
4734
|
-
background-color: var(--ds-color-
|
|
4766
|
+
background-color: var(--ds-color-surface-muted);
|
|
4735
4767
|
border: 2px solid var(--ds-color-border);
|
|
4736
4768
|
z-index: 1;
|
|
4737
4769
|
}
|
|
@@ -4842,7 +4874,7 @@ hr {
|
|
|
4842
4874
|
|
|
4843
4875
|
width: 100%;
|
|
4844
4876
|
height: 0.5rem;
|
|
4845
|
-
background-color: var(--ds-color-
|
|
4877
|
+
background-color: var(--ds-color-surface-muted);
|
|
4846
4878
|
border-radius: var(--ds-radius-full);
|
|
4847
4879
|
overflow: hidden;
|
|
4848
4880
|
|
|
@@ -5059,7 +5091,7 @@ hr {
|
|
|
5059
5091
|
.ds-skeleton {
|
|
5060
5092
|
|
|
5061
5093
|
display: block;
|
|
5062
|
-
background-color: var(--ds-color-
|
|
5094
|
+
background-color: var(--ds-color-surface-muted);
|
|
5063
5095
|
border-radius: var(--ds-radius-md);
|
|
5064
5096
|
animation: ds-skeleton-pulse var(--ds-duration-slower) var(--ds-ease-default) infinite;
|
|
5065
5097
|
|
|
@@ -5616,7 +5648,7 @@ hr {
|
|
|
5616
5648
|
.ds-sidebar__link--active:hover {
|
|
5617
5649
|
|
|
5618
5650
|
color: var(--ds-color-text);
|
|
5619
|
-
background-color: var(--ds-color-
|
|
5651
|
+
background-color: var(--ds-color-surface-elevated);
|
|
5620
5652
|
}
|
|
5621
5653
|
|
|
5622
5654
|
|
|
@@ -5789,7 +5821,7 @@ hr {
|
|
|
5789
5821
|
|
|
5790
5822
|
border-block-end: none;
|
|
5791
5823
|
gap: var(--ds-space-1);
|
|
5792
|
-
background-color: var(--ds-color-
|
|
5824
|
+
background-color: var(--ds-color-surface-muted);
|
|
5793
5825
|
border-radius: var(--ds-radius-lg);
|
|
5794
5826
|
padding: var(--ds-space-1);
|
|
5795
5827
|
|
|
@@ -5817,7 +5849,7 @@ hr {
|
|
|
5817
5849
|
.ds-tabs--pills .ds-tab--active,
|
|
5818
5850
|
.ds-tabs--pills .ds-tab--active:hover {
|
|
5819
5851
|
|
|
5820
|
-
background-color: var(--ds-color-
|
|
5852
|
+
background-color: var(--ds-color-surface-elevated);
|
|
5821
5853
|
color: var(--ds-color-text);
|
|
5822
5854
|
box-shadow: var(--ds-shadow-sm);
|
|
5823
5855
|
border-block-end: none;
|
|
@@ -5994,14 +6026,14 @@ hr {
|
|
|
5994
6026
|
font-weight: var(--ds-weight-medium);
|
|
5995
6027
|
line-height: var(--ds-leading-snug);
|
|
5996
6028
|
color: var(--ds-color-text-tertiary);
|
|
5997
|
-
background-color: var(--ds-color-
|
|
6029
|
+
background-color: var(--ds-color-surface-muted);
|
|
5998
6030
|
border-radius: var(--ds-radius-full);
|
|
5999
6031
|
min-width: 1.25rem;
|
|
6000
6032
|
}
|
|
6001
6033
|
.ds-tab--active .ds-tab__count {
|
|
6002
6034
|
|
|
6003
6035
|
color: var(--ds-color-text-secondary);
|
|
6004
|
-
background-color: var(--ds-color-
|
|
6036
|
+
background-color: var(--ds-color-surface-elevated);
|
|
6005
6037
|
}
|
|
6006
6038
|
|
|
6007
6039
|
|
|
@@ -6241,7 +6273,7 @@ hr {
|
|
|
6241
6273
|
align-items: center;
|
|
6242
6274
|
gap: var(--ds-space-0-5);
|
|
6243
6275
|
padding: var(--ds-space-0-5);
|
|
6244
|
-
background-color: var(--ds-color-
|
|
6276
|
+
background-color: var(--ds-color-surface-muted);
|
|
6245
6277
|
border-radius: var(--ds-radius-lg);
|
|
6246
6278
|
border: 1px solid var(--ds-color-border-subtle);
|
|
6247
6279
|
|
|
@@ -6294,7 +6326,7 @@ hr {
|
|
|
6294
6326
|
.ds-segmented__item--active,
|
|
6295
6327
|
.ds-segmented__item--active:hover {
|
|
6296
6328
|
|
|
6297
|
-
background-color: var(--ds-color-
|
|
6329
|
+
background-color: var(--ds-color-surface-elevated);
|
|
6298
6330
|
color: var(--ds-color-text);
|
|
6299
6331
|
box-shadow: var(--ds-shadow-sm);
|
|
6300
6332
|
}
|
|
@@ -6617,7 +6649,7 @@ hr {
|
|
|
6617
6649
|
.ds-toolbar__btn--active:hover {
|
|
6618
6650
|
|
|
6619
6651
|
color: var(--ds-color-text);
|
|
6620
|
-
background: var(--ds-color-
|
|
6652
|
+
background: var(--ds-color-surface-elevated);
|
|
6621
6653
|
border-color: var(--ds-color-border);
|
|
6622
6654
|
}
|
|
6623
6655
|
.ds-toolbar__badge {
|
|
@@ -6681,7 +6713,7 @@ hr {
|
|
|
6681
6713
|
}
|
|
6682
6714
|
.ds-toolbar__segmented-btn--active {
|
|
6683
6715
|
|
|
6684
|
-
background: var(--ds-color-
|
|
6716
|
+
background: var(--ds-color-surface-elevated);
|
|
6685
6717
|
color: var(--ds-color-text);
|
|
6686
6718
|
}
|
|
6687
6719
|
|
|
@@ -7944,7 +7976,7 @@ hr {
|
|
|
7944
7976
|
display: flex;
|
|
7945
7977
|
flex-direction: column;
|
|
7946
7978
|
padding-block: var(--ds-space-1-5);
|
|
7947
|
-
background-color: var(--ds-color-
|
|
7979
|
+
background-color: var(--ds-color-surface-muted);
|
|
7948
7980
|
border: 1px solid var(--ds-color-border);
|
|
7949
7981
|
border-radius: var(--ds-radius-xl);
|
|
7950
7982
|
box-shadow: var(--ds-shadow-lg);
|
|
@@ -8032,7 +8064,7 @@ hr {
|
|
|
8032
8064
|
}
|
|
8033
8065
|
.ds-dropdown__item:hover {
|
|
8034
8066
|
|
|
8035
|
-
background-color: var(--ds-color-
|
|
8067
|
+
background-color: var(--ds-color-surface-muted-hover);
|
|
8036
8068
|
color: var(--ds-color-text);
|
|
8037
8069
|
}
|
|
8038
8070
|
.ds-dropdown__item:focus-visible {
|
|
@@ -8044,7 +8076,7 @@ hr {
|
|
|
8044
8076
|
.ds-dropdown__item--active,
|
|
8045
8077
|
.ds-dropdown__item--active:hover {
|
|
8046
8078
|
|
|
8047
|
-
background-color: var(--ds-color-
|
|
8079
|
+
background-color: var(--ds-color-surface-elevated);
|
|
8048
8080
|
color: var(--ds-color-text);
|
|
8049
8081
|
}
|
|
8050
8082
|
.ds-dropdown__item--danger:hover {
|
|
@@ -8147,7 +8179,7 @@ hr {
|
|
|
8147
8179
|
|
|
8148
8180
|
position: absolute;
|
|
8149
8181
|
z-index: var(--ds-z-dropdown);
|
|
8150
|
-
background-color: var(--ds-color-
|
|
8182
|
+
background-color: var(--ds-color-surface-muted);
|
|
8151
8183
|
border: 1px solid var(--ds-color-border);
|
|
8152
8184
|
border-radius: var(--ds-radius-xl);
|
|
8153
8185
|
box-shadow: var(--ds-shadow-lg);
|
|
@@ -8321,7 +8353,7 @@ hr {
|
|
|
8321
8353
|
height: 4px;
|
|
8322
8354
|
margin: var(--ds-space-2) auto;
|
|
8323
8355
|
border-radius: var(--ds-radius-full);
|
|
8324
|
-
background-color: var(--ds-color-
|
|
8356
|
+
background-color: var(--ds-color-surface-muted);
|
|
8325
8357
|
flex-shrink: 0;
|
|
8326
8358
|
}
|
|
8327
8359
|
.ds-bottom-sheet__header {
|
|
@@ -8515,7 +8547,7 @@ hr {
|
|
|
8515
8547
|
}
|
|
8516
8548
|
.ds-command__content {
|
|
8517
8549
|
|
|
8518
|
-
background-color: var(--ds-color-
|
|
8550
|
+
background-color: var(--ds-color-surface-muted);
|
|
8519
8551
|
border: 1px solid var(--ds-color-border);
|
|
8520
8552
|
border-radius: var(--ds-radius-xl);
|
|
8521
8553
|
box-shadow: var(--ds-shadow-lg);
|
|
@@ -8597,13 +8629,13 @@ hr {
|
|
|
8597
8629
|
}
|
|
8598
8630
|
.ds-command__item:hover {
|
|
8599
8631
|
|
|
8600
|
-
background-color: var(--ds-color-
|
|
8632
|
+
background-color: var(--ds-color-surface-muted-hover);
|
|
8601
8633
|
color: var(--ds-color-text);
|
|
8602
8634
|
}
|
|
8603
8635
|
.ds-command__item--active,
|
|
8604
8636
|
.ds-command__item--active:hover {
|
|
8605
8637
|
|
|
8606
|
-
background-color: var(--ds-color-
|
|
8638
|
+
background-color: var(--ds-color-surface-elevated);
|
|
8607
8639
|
color: var(--ds-color-text);
|
|
8608
8640
|
|
|
8609
8641
|
|
|
@@ -8744,7 +8776,7 @@ hr {
|
|
|
8744
8776
|
}
|
|
8745
8777
|
.ds-card--elevated {
|
|
8746
8778
|
|
|
8747
|
-
background-color: var(--ds-color-
|
|
8779
|
+
background-color: var(--ds-color-surface-muted);
|
|
8748
8780
|
box-shadow: var(--ds-shadow-lg);
|
|
8749
8781
|
}
|
|
8750
8782
|
.ds-card--hover:hover {
|
|
@@ -8790,7 +8822,7 @@ hr {
|
|
|
8790
8822
|
width: 100%;
|
|
8791
8823
|
aspect-ratio: 16/10;
|
|
8792
8824
|
object-fit: cover;
|
|
8793
|
-
background-color: var(--ds-color-
|
|
8825
|
+
background-color: var(--ds-color-surface-muted);
|
|
8794
8826
|
|
|
8795
8827
|
|
|
8796
8828
|
|
|
@@ -9395,7 +9427,7 @@ hr {
|
|
|
9395
9427
|
position: relative;
|
|
9396
9428
|
overflow: hidden;
|
|
9397
9429
|
border-radius: var(--ds-radius-xl);
|
|
9398
|
-
background-color: var(--ds-color-
|
|
9430
|
+
background-color: var(--ds-color-surface-muted);
|
|
9399
9431
|
cursor: pointer;
|
|
9400
9432
|
|
|
9401
9433
|
|
|
@@ -9431,7 +9463,7 @@ hr {
|
|
|
9431
9463
|
border-radius: var(--ds-radius-md);
|
|
9432
9464
|
overflow: hidden;
|
|
9433
9465
|
cursor: pointer;
|
|
9434
|
-
background: var(--ds-color-
|
|
9466
|
+
background: var(--ds-color-surface-muted);
|
|
9435
9467
|
transition:
|
|
9436
9468
|
border-color var(--ds-duration-fast) var(--ds-ease-default),
|
|
9437
9469
|
opacity var(--ds-duration-fast) var(--ds-ease-default);
|
|
@@ -9475,7 +9507,7 @@ hr {
|
|
|
9475
9507
|
height: 4rem;
|
|
9476
9508
|
border: 1px solid var(--ds-color-border);
|
|
9477
9509
|
border-radius: var(--ds-radius-md);
|
|
9478
|
-
background-color: var(--ds-color-
|
|
9510
|
+
background-color: var(--ds-color-surface-muted);
|
|
9479
9511
|
color: var(--ds-color-text-secondary);
|
|
9480
9512
|
font-size: var(--ds-text-sm);
|
|
9481
9513
|
font-weight: var(--ds-weight-medium);
|
|
@@ -9884,7 +9916,7 @@ hr {
|
|
|
9884
9916
|
.ds-admin__sidebar-badge {
|
|
9885
9917
|
border-radius: var(--ds-radius-md);
|
|
9886
9918
|
border: 1px solid var(--ds-color-border);
|
|
9887
|
-
background-color: var(--ds-color-
|
|
9919
|
+
background-color: var(--ds-color-surface-muted);
|
|
9888
9920
|
padding: var(--ds-space-0-5) var(--ds-space-1-5);
|
|
9889
9921
|
font-size: var(--ds-text-xs);
|
|
9890
9922
|
font-weight: var(--ds-weight-medium);
|
|
@@ -9922,7 +9954,7 @@ hr {
|
|
|
9922
9954
|
|
|
9923
9955
|
.ds-admin__nav-item--active,
|
|
9924
9956
|
.ds-admin__nav-item--active:hover {
|
|
9925
|
-
background-color: var(--ds-color-
|
|
9957
|
+
background-color: var(--ds-color-surface-elevated);
|
|
9926
9958
|
color: var(--ds-color-text);
|
|
9927
9959
|
}
|
|
9928
9960
|
|
|
@@ -9972,7 +10004,7 @@ hr {
|
|
|
9972
10004
|
}
|
|
9973
10005
|
|
|
9974
10006
|
.ds-admin__subnav-item--active {
|
|
9975
|
-
background-color: var(--ds-color-
|
|
10007
|
+
background-color: var(--ds-color-surface-elevated);
|
|
9976
10008
|
color: var(--ds-color-text);
|
|
9977
10009
|
}
|
|
9978
10010
|
|
|
@@ -10206,13 +10238,13 @@ hr {
|
|
|
10206
10238
|
.ds-prose-block code {
|
|
10207
10239
|
font-family: var(--ds-font-mono);
|
|
10208
10240
|
font-size: var(--ds-text-sm);
|
|
10209
|
-
background-color: var(--ds-color-
|
|
10241
|
+
background-color: var(--ds-color-surface-muted);
|
|
10210
10242
|
padding: 0.125em 0.375em;
|
|
10211
10243
|
border-radius: var(--ds-radius-sm);
|
|
10212
10244
|
}
|
|
10213
10245
|
|
|
10214
10246
|
.ds-prose-block pre {
|
|
10215
|
-
background-color: var(--ds-color-
|
|
10247
|
+
background-color: var(--ds-color-surface-muted);
|
|
10216
10248
|
padding: var(--ds-space-4);
|
|
10217
10249
|
border-radius: var(--ds-radius-lg);
|
|
10218
10250
|
overflow-x: auto;
|
|
@@ -10264,6 +10296,153 @@ hr {
|
|
|
10264
10296
|
margin-block-end: 1em;
|
|
10265
10297
|
}
|
|
10266
10298
|
|
|
10299
|
+
/* ==========================================================================
|
|
10300
|
+
Editorial long-form typography (promoted from esys blog — 12 Apr 2026)
|
|
10301
|
+
|
|
10302
|
+
Three classes that together make an article page look like a magazine
|
|
10303
|
+
instead of a dashboard. They fill the gap between .ds-hero-title (too
|
|
10304
|
+
big for articles) and .ds-prose-block (whose h2 is 4xl — too heavy for
|
|
10305
|
+
reading rhythm).
|
|
10306
|
+
|
|
10307
|
+
Usage:
|
|
10308
|
+
<h1 class="ds-editorial-title">The title of the article</h1>
|
|
10309
|
+
<p class="ds-editorial-lede">The lead paragraph, larger than body.</p>
|
|
10310
|
+
<div class="ds-editorial-body">
|
|
10311
|
+
<h2>Section</h2>
|
|
10312
|
+
<p>Body text at 17px, line-height loose, with proper h2/h3 scale.</p>
|
|
10313
|
+
</div>
|
|
10314
|
+
|
|
10315
|
+
Designed for: blog posts, long-form articles, editorial landing, magazine
|
|
10316
|
+
layouts. NOT for admin UI, dashboards, or functional copy — use
|
|
10317
|
+
.ds-heading-ui / .ds-section-title / .ds-prose-block for those.
|
|
10318
|
+
========================================================================== */
|
|
10319
|
+
|
|
10320
|
+
.ds-editorial-title {
|
|
10321
|
+
font-family: var(--ds-font-display);
|
|
10322
|
+
font-size: var(--ds-text-editorial-title);
|
|
10323
|
+
font-weight: var(--ds-font-display-weight);
|
|
10324
|
+
line-height: var(--ds-leading-tight);
|
|
10325
|
+
letter-spacing: var(--ds-tracking-tight);
|
|
10326
|
+
color: var(--ds-color-text);
|
|
10327
|
+
margin: 0;
|
|
10328
|
+
}
|
|
10329
|
+
|
|
10330
|
+
.ds-editorial-lede {
|
|
10331
|
+
font-family: var(--ds-font-sans);
|
|
10332
|
+
font-size: var(--ds-text-editorial-lede);
|
|
10333
|
+
line-height: var(--ds-leading-normal);
|
|
10334
|
+
color: var(--ds-color-text-secondary);
|
|
10335
|
+
margin: 0;
|
|
10336
|
+
max-width: 600px;
|
|
10337
|
+
}
|
|
10338
|
+
|
|
10339
|
+
.ds-editorial-body {
|
|
10340
|
+
color: var(--ds-color-text);
|
|
10341
|
+
font-size: var(--ds-text-editorial-body);
|
|
10342
|
+
line-height: var(--ds-leading-loose);
|
|
10343
|
+
}
|
|
10344
|
+
|
|
10345
|
+
.ds-editorial-body > * + * {
|
|
10346
|
+
margin-block-start: var(--ds-space-4);
|
|
10347
|
+
}
|
|
10348
|
+
|
|
10349
|
+
.ds-editorial-body h2 {
|
|
10350
|
+
font-family: var(--ds-font-display);
|
|
10351
|
+
font-size: var(--ds-text-2xl);
|
|
10352
|
+
font-weight: var(--ds-font-display-weight);
|
|
10353
|
+
line-height: var(--ds-leading-tight);
|
|
10354
|
+
letter-spacing: var(--ds-tracking-tight);
|
|
10355
|
+
color: var(--ds-color-text);
|
|
10356
|
+
margin-block-start: var(--ds-space-8);
|
|
10357
|
+
margin-block-end: 0;
|
|
10358
|
+
}
|
|
10359
|
+
|
|
10360
|
+
.ds-editorial-body h3 {
|
|
10361
|
+
font-family: var(--ds-font-display);
|
|
10362
|
+
font-size: var(--ds-text-xl);
|
|
10363
|
+
font-weight: var(--ds-font-display-weight);
|
|
10364
|
+
line-height: var(--ds-leading-snug);
|
|
10365
|
+
letter-spacing: var(--ds-tracking-tight);
|
|
10366
|
+
color: var(--ds-color-text);
|
|
10367
|
+
margin-block-start: var(--ds-space-6);
|
|
10368
|
+
margin-block-end: 0;
|
|
10369
|
+
}
|
|
10370
|
+
|
|
10371
|
+
.ds-editorial-body h4 {
|
|
10372
|
+
font-family: var(--ds-font-display);
|
|
10373
|
+
font-size: var(--ds-text-lg);
|
|
10374
|
+
font-weight: var(--ds-font-display-weight);
|
|
10375
|
+
color: var(--ds-color-text);
|
|
10376
|
+
margin-block-start: var(--ds-space-5);
|
|
10377
|
+
margin-block-end: 0;
|
|
10378
|
+
}
|
|
10379
|
+
|
|
10380
|
+
.ds-editorial-body a {
|
|
10381
|
+
color: var(--ds-color-interactive);
|
|
10382
|
+
text-decoration: underline;
|
|
10383
|
+
text-underline-offset: 2px;
|
|
10384
|
+
}
|
|
10385
|
+
|
|
10386
|
+
.ds-editorial-body a:hover {
|
|
10387
|
+
text-decoration: none;
|
|
10388
|
+
}
|
|
10389
|
+
|
|
10390
|
+
.ds-editorial-body strong {
|
|
10391
|
+
color: var(--ds-color-text);
|
|
10392
|
+
font-weight: var(--ds-weight-semibold);
|
|
10393
|
+
}
|
|
10394
|
+
|
|
10395
|
+
.ds-editorial-body ul,
|
|
10396
|
+
.ds-editorial-body ol {
|
|
10397
|
+
padding-inline-start: var(--ds-space-6);
|
|
10398
|
+
}
|
|
10399
|
+
|
|
10400
|
+
.ds-editorial-body ul { list-style-type: disc; }
|
|
10401
|
+
.ds-editorial-body ol { list-style-type: decimal; }
|
|
10402
|
+
|
|
10403
|
+
.ds-editorial-body li + li {
|
|
10404
|
+
margin-block-start: var(--ds-space-2);
|
|
10405
|
+
}
|
|
10406
|
+
|
|
10407
|
+
.ds-editorial-body blockquote {
|
|
10408
|
+
border-inline-start: 3px solid var(--ds-color-border-hover);
|
|
10409
|
+
padding-inline-start: var(--ds-space-4);
|
|
10410
|
+
color: var(--ds-color-text-secondary);
|
|
10411
|
+
font-style: italic;
|
|
10412
|
+
}
|
|
10413
|
+
|
|
10414
|
+
.ds-editorial-body img {
|
|
10415
|
+
max-width: 100%;
|
|
10416
|
+
height: auto;
|
|
10417
|
+
border-radius: var(--ds-radius-md);
|
|
10418
|
+
}
|
|
10419
|
+
|
|
10420
|
+
.ds-editorial-body hr {
|
|
10421
|
+
border: none;
|
|
10422
|
+
border-block-start: 1px solid var(--ds-color-border);
|
|
10423
|
+
margin-block: var(--ds-space-6);
|
|
10424
|
+
}
|
|
10425
|
+
|
|
10426
|
+
.ds-editorial-body pre {
|
|
10427
|
+
background: var(--ds-color-surface-muted);
|
|
10428
|
+
padding: var(--ds-space-4);
|
|
10429
|
+
border-radius: var(--ds-radius-md);
|
|
10430
|
+
overflow-x: auto;
|
|
10431
|
+
}
|
|
10432
|
+
|
|
10433
|
+
.ds-editorial-body code {
|
|
10434
|
+
background: var(--ds-color-surface-muted);
|
|
10435
|
+
padding: 0.125em 0.375em;
|
|
10436
|
+
border-radius: var(--ds-radius-sm);
|
|
10437
|
+
font-family: var(--ds-font-mono);
|
|
10438
|
+
font-size: 0.9em;
|
|
10439
|
+
}
|
|
10440
|
+
|
|
10441
|
+
.ds-editorial-body pre code {
|
|
10442
|
+
background: transparent;
|
|
10443
|
+
padding: 0;
|
|
10444
|
+
}
|
|
10445
|
+
|
|
10267
10446
|
|
|
10268
10447
|
/* === Action — Trigger operations and commands === */
|
|
10269
10448
|
/* ==========================================================================
|
|
@@ -10363,7 +10542,7 @@ hr {
|
|
|
10363
10542
|
}
|
|
10364
10543
|
.ds-btn--secondary {
|
|
10365
10544
|
|
|
10366
|
-
background-color: var(--ds-color-
|
|
10545
|
+
background-color: var(--ds-color-surface-muted);
|
|
10367
10546
|
color: var(--ds-color-text);
|
|
10368
10547
|
border-color: var(--ds-color-border);
|
|
10369
10548
|
|
|
@@ -10372,7 +10551,7 @@ hr {
|
|
|
10372
10551
|
.ds-btn--secondary:hover {
|
|
10373
10552
|
|
|
10374
10553
|
border-color: var(--ds-color-border-hover);
|
|
10375
|
-
background-color: var(--ds-color-
|
|
10554
|
+
background-color: var(--ds-color-surface-muted-hover);
|
|
10376
10555
|
opacity: 1;
|
|
10377
10556
|
}
|
|
10378
10557
|
.ds-btn--outline {
|
|
@@ -10860,7 +11039,7 @@ hr {
|
|
|
10860
11039
|
padding: var(--ds-space-0-5) var(--ds-space-1-5);
|
|
10861
11040
|
font-family: var(--ds-font-mono);
|
|
10862
11041
|
font-size: var(--ds-text-xs);
|
|
10863
|
-
background-color: var(--ds-color-
|
|
11042
|
+
background-color: var(--ds-color-surface-muted);
|
|
10864
11043
|
border: 1px solid var(--ds-color-border);
|
|
10865
11044
|
border-block-end-width: 2px;
|
|
10866
11045
|
border-radius: var(--ds-radius-sm);
|
|
@@ -10993,7 +11172,7 @@ hr {
|
|
|
10993
11172
|
font-family: inherit;
|
|
10994
11173
|
line-height: 1;
|
|
10995
11174
|
color: var(--ds-color-text-tertiary);
|
|
10996
|
-
background: var(--ds-color-
|
|
11175
|
+
background: var(--ds-color-surface-muted);
|
|
10997
11176
|
border: 1px solid var(--ds-color-border);
|
|
10998
11177
|
border-radius: var(--ds-radius-sm);
|
|
10999
11178
|
pointer-events: none;
|
|
@@ -11030,7 +11209,7 @@ hr {
|
|
|
11030
11209
|
position: fixed;
|
|
11031
11210
|
max-height: min(22rem, calc(100dvh - 5rem));
|
|
11032
11211
|
overflow-y: auto;
|
|
11033
|
-
background: var(--ds-color-
|
|
11212
|
+
background: var(--ds-color-surface-muted);
|
|
11034
11213
|
border: 1px solid var(--ds-color-border);
|
|
11035
11214
|
border-radius: var(--ds-radius-lg);
|
|
11036
11215
|
box-shadow: var(--ds-shadow-lg);
|
|
@@ -11080,7 +11259,7 @@ hr {
|
|
|
11080
11259
|
|
|
11081
11260
|
.ds-search__result--active,
|
|
11082
11261
|
.ds-search__result--active:hover {
|
|
11083
|
-
background: var(--ds-color-
|
|
11262
|
+
background: var(--ds-color-surface-elevated);
|
|
11084
11263
|
}
|
|
11085
11264
|
|
|
11086
11265
|
.ds-search__result:focus-visible {
|
|
@@ -11208,7 +11387,7 @@ hr {
|
|
|
11208
11387
|
border-inline-start: none;
|
|
11209
11388
|
border-inline-end: none;
|
|
11210
11389
|
max-height: calc(100dvh - var(--ds-search-bar-height, 3.5rem));
|
|
11211
|
-
background: var(--ds-color-
|
|
11390
|
+
background: var(--ds-color-surface-muted);
|
|
11212
11391
|
backdrop-filter: blur(var(--ds-blur-lg)) saturate(1.5);
|
|
11213
11392
|
-webkit-backdrop-filter: blur(var(--ds-blur-lg)) saturate(1.5);
|
|
11214
11393
|
}
|
|
@@ -11984,11 +12163,11 @@ a:hover .ds-sortable__handle,
|
|
|
11984
12163
|
/* --- Background Color --- */
|
|
11985
12164
|
.ds-bg-base { background-color: var(--ds-color-bg); }
|
|
11986
12165
|
.ds-bg-surface { background-color: var(--ds-color-surface); }
|
|
11987
|
-
.ds-bg-subtle { background-color: var(--ds-color-
|
|
11988
|
-
.ds-bg-elevated { background-color: var(--ds-color-
|
|
12166
|
+
.ds-bg-subtle { background-color: var(--ds-color-surface); }
|
|
12167
|
+
.ds-bg-elevated { background-color: var(--ds-color-surface-elevated); }
|
|
11989
12168
|
.ds-bg-inverted { background-color: var(--ds-color-inverted); color: var(--ds-color-on-inverted); }
|
|
11990
12169
|
.ds-bg-hover { background-color: var(--ds-color-surface-hover); }
|
|
11991
|
-
.ds-bg-muted { background-color: var(--ds-color-
|
|
12170
|
+
.ds-bg-muted { background-color: var(--ds-color-surface-muted); }
|
|
11992
12171
|
.ds-bg-overlay { background-color: var(--ds-color-overlay); }
|
|
11993
12172
|
.ds-bg-nav { background-color: var(--ds-color-nav-bg); }
|
|
11994
12173
|
|
|
@@ -12439,9 +12618,9 @@ a:hover .ds-sortable__handle,
|
|
|
12439
12618
|
|
|
12440
12619
|
/* --- Hover: Background --- */
|
|
12441
12620
|
.hover\:ds-bg-base:hover { background-color: var(--ds-color-bg); }
|
|
12442
|
-
.hover\:ds-bg-subtle:hover { background-color: var(--ds-color-
|
|
12443
|
-
.hover\:ds-bg-muted:hover { background-color: var(--ds-color-
|
|
12444
|
-
.hover\:ds-bg-elevated:hover { background-color: var(--ds-color-
|
|
12621
|
+
.hover\:ds-bg-subtle:hover { background-color: var(--ds-color-surface); }
|
|
12622
|
+
.hover\:ds-bg-muted:hover { background-color: var(--ds-color-surface-muted); }
|
|
12623
|
+
.hover\:ds-bg-elevated:hover { background-color: var(--ds-color-surface-elevated); }
|
|
12445
12624
|
.hover\:ds-bg-surface:hover { background-color: var(--ds-color-surface); }
|
|
12446
12625
|
.hover\:ds-bg-hover:hover { background-color: var(--ds-color-surface-hover); }
|
|
12447
12626
|
.hover\:ds-bg-inverted:hover { background-color: var(--ds-color-inverted); }
|
|
@@ -12520,8 +12699,8 @@ a:hover .ds-sortable__handle,
|
|
|
12520
12699
|
========================================================================== */
|
|
12521
12700
|
|
|
12522
12701
|
.active\:ds-bg-hover:active { background-color: var(--ds-color-surface-hover); }
|
|
12523
|
-
.active\:ds-bg-muted:active { background-color: var(--ds-color-
|
|
12524
|
-
.active\:ds-bg-elevated:active { background-color: var(--ds-color-
|
|
12702
|
+
.active\:ds-bg-muted:active { background-color: var(--ds-color-surface-muted); }
|
|
12703
|
+
.active\:ds-bg-elevated:active { background-color: var(--ds-color-surface-elevated); }
|
|
12525
12704
|
.active\:ds-scale-95:active { transform: scale(0.95); }
|
|
12526
12705
|
.active\:ds-scale-98:active { transform: scale(0.98); }
|
|
12527
12706
|
|
|
@@ -12539,7 +12718,7 @@ a:hover .ds-sortable__handle,
|
|
|
12539
12718
|
.disabled\:ds-cursor-not-allowed[aria-disabled="true"] { cursor: not-allowed; }
|
|
12540
12719
|
|
|
12541
12720
|
.disabled\:ds-bg-subtle:disabled,
|
|
12542
|
-
.disabled\:ds-bg-subtle[aria-disabled="true"] { background-color: var(--ds-color-
|
|
12721
|
+
.disabled\:ds-bg-subtle[aria-disabled="true"] { background-color: var(--ds-color-surface); }
|
|
12543
12722
|
|
|
12544
12723
|
.disabled\:ds-pointer-events-none:disabled,
|
|
12545
12724
|
.disabled\:ds-pointer-events-none[aria-disabled="true"] { pointer-events: none; }
|