@solid-design-system/styles 6.0.0-next.11 → 6.0.0-next.13
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/CHANGELOG.md +46 -0
- package/cdn/modules/chip.css +1 -1
- package/cdn/modules/flag.css +1 -1
- package/cdn/modules/footnotes.css +1 -1
- package/cdn/modules/interactive.css +1 -1
- package/cdn/modules/pagination.css +1 -1
- package/cdn/modules/prose.css +1 -1
- package/cdn/solid-styles.css +1 -1
- package/cdn-versioned/modules/chip.css +1 -1
- package/cdn-versioned/modules/container.css +1 -1
- package/cdn-versioned/modules/copyright.css +1 -1
- package/cdn-versioned/modules/display.css +1 -1
- package/cdn-versioned/modules/flag.css +1 -1
- package/cdn-versioned/modules/footnotes.css +1 -1
- package/cdn-versioned/modules/headline.css +1 -1
- package/cdn-versioned/modules/hidden-links.css +1 -1
- package/cdn-versioned/modules/interactive.css +1 -1
- package/cdn-versioned/modules/leadtext.css +1 -1
- package/cdn-versioned/modules/list.css +1 -1
- package/cdn-versioned/modules/mark.css +1 -1
- package/cdn-versioned/modules/media.css +1 -1
- package/cdn-versioned/modules/meta.css +1 -1
- package/cdn-versioned/modules/pagination.css +1 -1
- package/cdn-versioned/modules/paragraph.css +1 -1
- package/cdn-versioned/modules/prose.css +1 -1
- package/cdn-versioned/modules/status-badge.css +1 -1
- package/cdn-versioned/modules/table-cell.css +1 -1
- package/cdn-versioned/modules/table.css +1 -1
- package/cdn-versioned/solid-styles.css +1 -1
- package/dist/modules/chip.css +26 -6
- package/dist/modules/flag.css +24 -3
- package/dist/modules/footnotes.css +3 -3
- package/dist/modules/interactive.css +3 -3
- package/dist/modules/pagination.css +1 -1
- package/dist/modules/prose.css +3 -3
- package/dist/solid-styles.css +37 -22
- package/dist-versioned/modules/chip.css +30 -10
- package/dist-versioned/modules/container.css +27 -27
- package/dist-versioned/modules/copyright.css +6 -6
- package/dist-versioned/modules/display.css +6 -6
- package/dist-versioned/modules/flag.css +28 -7
- package/dist-versioned/modules/footnotes.css +31 -31
- package/dist-versioned/modules/headline.css +28 -28
- package/dist-versioned/modules/hidden-links.css +4 -4
- package/dist-versioned/modules/interactive.css +19 -19
- package/dist-versioned/modules/leadtext.css +3 -3
- package/dist-versioned/modules/list.css +30 -30
- package/dist-versioned/modules/mark.css +1 -1
- package/dist-versioned/modules/media.css +4 -4
- package/dist-versioned/modules/meta.css +7 -7
- package/dist-versioned/modules/pagination.css +61 -61
- package/dist-versioned/modules/paragraph.css +3 -3
- package/dist-versioned/modules/prose.css +126 -126
- package/dist-versioned/modules/status-badge.css +6 -6
- package/dist-versioned/modules/table-cell.css +16 -16
- package/dist-versioned/modules/table.css +2 -2
- package/dist-versioned/solid-styles.css +307 -292
- package/package.json +1 -1
package/dist/solid-styles.css
CHANGED
|
@@ -6,8 +6,12 @@
|
|
|
6
6
|
height: var(--sd-spacing-6);
|
|
7
7
|
align-items: center;
|
|
8
8
|
overflow: hidden;
|
|
9
|
-
border-radius: var(--sd-radius);
|
|
10
|
-
|
|
9
|
+
border-radius: var(--sd-chip-border-radius, var(--sd-spacing-1));
|
|
10
|
+
border-style: var(--tw-border-style);
|
|
11
|
+
border-width: 1px;
|
|
12
|
+
border-width: var(--sd-chip-border-width, 0);
|
|
13
|
+
border-color: rgba(var(--sd-chip--primary-200-color-border, rgba(255, 255, 255, 0)));
|
|
14
|
+
background-color: rgba(var(--sd-chip--primary-200-color-background, rgba(var(--sd-color-primary-200))));
|
|
11
15
|
padding-inline: var(--sd-spacing-2);
|
|
12
16
|
font-size: var(--sd-text-sm);
|
|
13
17
|
line-height: var(--tw-leading, var(--text-sm--line-height, calc(1.25 / 0.875)));
|
|
@@ -15,14 +19,17 @@
|
|
|
15
19
|
color: rgba(var(--sd-color-text-black));
|
|
16
20
|
}
|
|
17
21
|
.sd-chip--primary-500 {
|
|
18
|
-
|
|
19
|
-
color: rgba(var(--sd-color-
|
|
22
|
+
border-color: rgba(var(--sd-chip--primary-500-color-border, rgba(255, 255, 255, 0)));
|
|
23
|
+
background-color: rgba(var(--sd-chip--primary-500-color-background, rgba(var(--sd-color-primary-500))));
|
|
24
|
+
color: rgba(var(--sd-chip--primary-500-color-text, rgba(var(--sd-color-white))));
|
|
20
25
|
}
|
|
21
26
|
.sd-chip--primary-300 {
|
|
22
|
-
|
|
27
|
+
border-color: rgba(var(--sd-chip--primary-300-color-border, rgba(255, 255, 255, 0)));
|
|
28
|
+
background-color: rgba(var(--sd-chip--primary-300-color-background, rgba(var(--sd-color-primary-300))));
|
|
23
29
|
}
|
|
24
30
|
.sd-chip--white {
|
|
25
|
-
|
|
31
|
+
border-color: rgba(var(--sd-chip--white-color-border, rgba(255, 255, 255, 0)));
|
|
32
|
+
background-color: rgba(var(--sd-chip--white-color-background, rgba(var(--sd-color-white))));
|
|
26
33
|
}
|
|
27
34
|
.sd-container {
|
|
28
35
|
position: relative;
|
|
@@ -200,7 +207,12 @@
|
|
|
200
207
|
height: var(--sd-spacing-8);
|
|
201
208
|
align-items: center;
|
|
202
209
|
overflow: hidden;
|
|
203
|
-
|
|
210
|
+
border-radius: var(--sd-flag-border-radius, 0);
|
|
211
|
+
border-style: var(--tw-border-style);
|
|
212
|
+
border-width: 1px;
|
|
213
|
+
border-width: var(--sd-flag-border-width, 0);
|
|
214
|
+
border-color: rgba(var(--sd-flag--neutral-200-color-border, rgba(255, 255, 255, 0)));
|
|
215
|
+
background-color: rgba(var(--sd-flag--neutral-200-color-background, rgba(var(--sd-color-neutral-200))));
|
|
204
216
|
padding-inline: var(--sd-spacing-3);
|
|
205
217
|
font-size: var(--sd-text-sm);
|
|
206
218
|
line-height: var(--tw-leading, var(--text-sm--line-height, calc(1.25 / 0.875)));
|
|
@@ -208,14 +220,17 @@
|
|
|
208
220
|
color: rgba(var(--sd-color-text-black));
|
|
209
221
|
}
|
|
210
222
|
.sd-flag--neutral-500 {
|
|
223
|
+
border-color: rgba(var(--sd-flag--neutral-500-color-border, rgba(255, 255, 255, 0)));
|
|
211
224
|
background-color: rgba(var(--sd-flag--neutral-500-color-background, rgba(var(--sd-color-neutral-500))));
|
|
212
225
|
color: rgba(var(--sd-color-text-black));
|
|
213
226
|
}
|
|
214
227
|
.sd-flag--neutral-300 {
|
|
215
|
-
|
|
228
|
+
border-color: rgba(var(--sd-flag--neutral-300-color-border, rgba(255, 255, 255, 0)));
|
|
229
|
+
background-color: rgba(var(--sd-flag--neutral-300-color-background, rgba(var(--sd-color-neutral-300))));
|
|
216
230
|
}
|
|
217
231
|
.sd-flag--white {
|
|
218
|
-
|
|
232
|
+
border-color: rgba(var(--sd-flag--white-color-border, rgba(255, 255, 255, 0)));
|
|
233
|
+
background-color: rgba(var(--sd-flag--white-color-background, rgba(var(--sd-color-white))));
|
|
219
234
|
}
|
|
220
235
|
.sd-footnotes {
|
|
221
236
|
margin-block: calc(var(--sd-spacing-1) * 0);
|
|
@@ -279,7 +294,7 @@
|
|
|
279
294
|
outline-style: var(--tw-outline-style);
|
|
280
295
|
outline-width: 2px;
|
|
281
296
|
outline-offset: 2px;
|
|
282
|
-
outline-color: var(--sd-border-
|
|
297
|
+
outline-color: var(--sd-color-border-primary, var(--sd-color-primary));
|
|
283
298
|
}
|
|
284
299
|
.sd-footnotes:is(ul) {
|
|
285
300
|
list-style: '';
|
|
@@ -343,7 +358,7 @@
|
|
|
343
358
|
outline-style: var(--tw-outline-style);
|
|
344
359
|
outline-width: 2px;
|
|
345
360
|
outline-offset: 2px;
|
|
346
|
-
outline-color: var(--sd-border-
|
|
361
|
+
outline-color: var(--sd-color-border-primary, var(--sd-color-primary));
|
|
347
362
|
}
|
|
348
363
|
.sd-footnotes--marker :is(a):link {
|
|
349
364
|
color: rgba(var(--sd-color-text-primary));
|
|
@@ -357,7 +372,7 @@
|
|
|
357
372
|
outline-style: var(--tw-outline-style);
|
|
358
373
|
outline-width: 2px;
|
|
359
374
|
outline-offset: 2px;
|
|
360
|
-
outline-color: var(--sd-border-
|
|
375
|
+
outline-color: var(--sd-color-border-primary, var(--sd-color-primary));
|
|
361
376
|
}
|
|
362
377
|
:lang(en) {
|
|
363
378
|
--sd-hidden-links-title: 'Jump to';
|
|
@@ -476,7 +491,7 @@ mark.sd-mark {
|
|
|
476
491
|
outline-style: var(--tw-outline-style);
|
|
477
492
|
outline-width: 2px;
|
|
478
493
|
outline-offset: 2px;
|
|
479
|
-
outline-color: var(--sd-border-
|
|
494
|
+
outline-color: var(--sd-color-border-primary, var(--sd-color-primary));
|
|
480
495
|
}
|
|
481
496
|
.sd-pagination ul li:first-child, .sd-pagination ul li:last-child {
|
|
482
497
|
height: var(--sd-spacing-12);
|
|
@@ -871,7 +886,7 @@ mark.sd-mark {
|
|
|
871
886
|
}
|
|
872
887
|
.sd-prose a, .sd-interactive{
|
|
873
888
|
cursor: pointer;
|
|
874
|
-
color: rgba(var(--sd-color-text-primary));
|
|
889
|
+
color: rgba(var(--sd-interactive--default-color-text, rgba(var(--sd-color-primary))));
|
|
875
890
|
text-decoration-line: underline;
|
|
876
891
|
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
877
892
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function, cubic-bezier(0.4, 0, 0.2, 1)));
|
|
@@ -888,7 +903,7 @@ mark.sd-mark {
|
|
|
888
903
|
outline-style: solid;
|
|
889
904
|
outline-offset: 2px;
|
|
890
905
|
outline-width: 2px;
|
|
891
|
-
outline-color: var(--outline-color-primary);
|
|
906
|
+
outline-color: rgba(var(--outline-color-primary));
|
|
892
907
|
}
|
|
893
908
|
.sd-prose a:active:not([disabled]), .sd-interactive:active:not([disabled]) {
|
|
894
909
|
color: rgba(var(--sd-interactive--active-color-text, rgba(var(--sd-color-primary-800))));
|
|
@@ -925,7 +940,7 @@ mark.sd-mark {
|
|
|
925
940
|
outline-style: solid;
|
|
926
941
|
outline-offset: 2px;
|
|
927
942
|
outline-width: 2px;
|
|
928
|
-
outline-color: var(--outline-color-primary);
|
|
943
|
+
outline-color: rgba(var(--outline-color-primary));
|
|
929
944
|
}
|
|
930
945
|
.sd-prose--inverted a:active:not([disabled]), .sd-interactive--inverted:active:not([disabled]) {
|
|
931
946
|
color: rgba(var(--sd-color-text-primary-400));
|
|
@@ -1253,6 +1268,11 @@ mark.sd-mark {
|
|
|
1253
1268
|
.sd-prose--full-width {
|
|
1254
1269
|
max-width: unset;
|
|
1255
1270
|
}
|
|
1271
|
+
@property --tw-border-style {
|
|
1272
|
+
syntax: "*";
|
|
1273
|
+
inherits: false;
|
|
1274
|
+
initial-value: solid;
|
|
1275
|
+
}
|
|
1256
1276
|
@property --tw-blur {
|
|
1257
1277
|
syntax: "*";
|
|
1258
1278
|
inherits: false;
|
|
@@ -1384,11 +1404,6 @@ mark.sd-mark {
|
|
|
1384
1404
|
inherits: false;
|
|
1385
1405
|
initial-value: 0 0 #0000;
|
|
1386
1406
|
}
|
|
1387
|
-
@property --tw-border-style {
|
|
1388
|
-
syntax: "*";
|
|
1389
|
-
inherits: false;
|
|
1390
|
-
initial-value: solid;
|
|
1391
|
-
}
|
|
1392
1407
|
@property --tw-content {
|
|
1393
1408
|
syntax: "*";
|
|
1394
1409
|
initial-value: "";
|
|
@@ -1472,6 +1487,7 @@ mark.sd-mark {
|
|
|
1472
1487
|
@layer properties {
|
|
1473
1488
|
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
1474
1489
|
*, ::before, ::after, ::backdrop {
|
|
1490
|
+
--tw-border-style: solid;
|
|
1475
1491
|
--tw-blur: initial;
|
|
1476
1492
|
--tw-brightness: initial;
|
|
1477
1493
|
--tw-contrast: initial;
|
|
@@ -1502,7 +1518,6 @@ mark.sd-mark {
|
|
|
1502
1518
|
--tw-ring-offset-width: 0px;
|
|
1503
1519
|
--tw-ring-offset-color: #fff;
|
|
1504
1520
|
--tw-ring-offset-shadow: 0 0 #0000;
|
|
1505
|
-
--tw-border-style: solid;
|
|
1506
1521
|
--tw-content: "";
|
|
1507
1522
|
--tw-scale-x: 1;
|
|
1508
1523
|
--tw-scale-y: 1;
|
|
@@ -1,25 +1,45 @@
|
|
|
1
1
|
/*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
|
|
2
|
+
@layer properties;
|
|
2
3
|
@layer theme, base, components, utilities;
|
|
3
|
-
.sd-6-0-0-next-
|
|
4
|
+
.sd-6-0-0-next-13-chip {
|
|
4
5
|
display: inline-flex;
|
|
5
6
|
height: var(--sd-spacing-6);
|
|
6
7
|
align-items: center;
|
|
7
8
|
overflow: hidden;
|
|
8
|
-
border-radius: var(--sd-radius);
|
|
9
|
-
|
|
9
|
+
border-radius: var(--sd-chip-border-radius, var(--sd-spacing-1));
|
|
10
|
+
border-style: var(--tw-border-style);
|
|
11
|
+
border-width: 1px;
|
|
12
|
+
border-width: var(--sd-chip-border-width, 0);
|
|
13
|
+
border-color: rgba(var(--sd-chip--primary-200-color-border, rgba(255, 255, 255, 0)));
|
|
14
|
+
background-color: rgba(var(--sd-chip--primary-200-color-background, rgba(var(--sd-color-primary-200))));
|
|
10
15
|
padding-inline: var(--sd-spacing-2);
|
|
11
16
|
font-size: var(--sd-text-sm);
|
|
12
17
|
line-height: var(--tw-leading, var(--text-sm--line-height, calc(1.25 / 0.875)));
|
|
13
18
|
white-space: nowrap;
|
|
14
19
|
color: rgba(var(--sd-color-text-black));
|
|
15
20
|
}
|
|
16
|
-
.sd-6-0-0-next-
|
|
17
|
-
|
|
18
|
-
color: rgba(var(--sd-color-
|
|
21
|
+
.sd-6-0-0-next-13-chip--primary-500 {
|
|
22
|
+
border-color: rgba(var(--sd-chip--primary-500-color-border, rgba(255, 255, 255, 0)));
|
|
23
|
+
background-color: rgba(var(--sd-chip--primary-500-color-background, rgba(var(--sd-color-primary-500))));
|
|
24
|
+
color: rgba(var(--sd-chip--primary-500-color-text, rgba(var(--sd-color-white))));
|
|
19
25
|
}
|
|
20
|
-
.sd-6-0-0-next-
|
|
21
|
-
|
|
26
|
+
.sd-6-0-0-next-13-chip--primary-300 {
|
|
27
|
+
border-color: rgba(var(--sd-chip--primary-300-color-border, rgba(255, 255, 255, 0)));
|
|
28
|
+
background-color: rgba(var(--sd-chip--primary-300-color-background, rgba(var(--sd-color-primary-300))));
|
|
22
29
|
}
|
|
23
|
-
.sd-6-0-0-next-
|
|
24
|
-
|
|
30
|
+
.sd-6-0-0-next-13-chip--white {
|
|
31
|
+
border-color: rgba(var(--sd-chip--white-color-border, rgba(255, 255, 255, 0)));
|
|
32
|
+
background-color: rgba(var(--sd-chip--white-color-background, rgba(var(--sd-color-white))));
|
|
25
33
|
}
|
|
34
|
+
@property --tw-border-style {
|
|
35
|
+
syntax: "*";
|
|
36
|
+
inherits: false;
|
|
37
|
+
initial-value: solid;
|
|
38
|
+
}
|
|
39
|
+
@layer properties {
|
|
40
|
+
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
41
|
+
*, ::before, ::after, ::backdrop {
|
|
42
|
+
--tw-border-style: solid;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
@@ -1,35 +1,35 @@
|
|
|
1
1
|
/*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
|
|
2
2
|
@layer theme, base, components, utilities;
|
|
3
|
-
.sd-6-0-0-next-
|
|
3
|
+
.sd-6-0-0-next-13-container {
|
|
4
4
|
position: relative;
|
|
5
5
|
background-color: rgba(var(--sd-color-background-neutral-100));
|
|
6
6
|
padding-inline: var(--sd-spacing-10);
|
|
7
7
|
padding-block: var(--sd-spacing-8);
|
|
8
8
|
}
|
|
9
|
-
.sd-6-0-0-next-
|
|
9
|
+
.sd-6-0-0-next-13-container--variant-primary-100 {
|
|
10
10
|
background-color: rgba(var(--sd-color-background-primary-100));
|
|
11
11
|
}
|
|
12
|
-
.sd-6-0-0-next-
|
|
12
|
+
.sd-6-0-0-next-13-container--variant-primary {
|
|
13
13
|
background-color: rgba(var(--sd-color-background-primary));
|
|
14
14
|
}
|
|
15
|
-
.sd-6-0-0-next-
|
|
15
|
+
.sd-6-0-0-next-13-container--variant-border-neutral-400 {
|
|
16
16
|
--tw-border-style: solid;
|
|
17
17
|
border-style: solid;
|
|
18
18
|
border-color: rgba(var(--sd-color-border-neutral-400));
|
|
19
19
|
background-color: rgba(var(--sd-color-background-white));
|
|
20
20
|
border-width: 1px;
|
|
21
21
|
}
|
|
22
|
-
.sd-6-0-0-next-
|
|
22
|
+
.sd-6-0-0-next-13-container--variant-white {
|
|
23
23
|
background-color: rgba(var(--sd-color-background-white));
|
|
24
24
|
}
|
|
25
|
-
.sd-6-0-0-next-
|
|
25
|
+
.sd-6-0-0-next-13-container--padding-sm {
|
|
26
26
|
padding-inline: var(--sd-spacing-6);
|
|
27
27
|
padding-block: var(--sd-spacing-4);
|
|
28
28
|
}
|
|
29
|
-
.sd-6-0-0-next-
|
|
29
|
+
.sd-6-0-0-next-13-container{
|
|
30
30
|
--triangle-background: rgba(var(--sd-color-white));
|
|
31
31
|
}
|
|
32
|
-
.sd-6-0-0-next-
|
|
32
|
+
.sd-6-0-0-next-13-container--triangle-top::before, .sd-6-0-0-next-13-container--triangle-right::before, .sd-6-0-0-next-13-container--triangle-bottom::before, .sd-6-0-0-next-13-container--triangle-left::before {
|
|
33
33
|
position: absolute;
|
|
34
34
|
display: block;
|
|
35
35
|
--tw-border-style: solid;
|
|
@@ -38,27 +38,27 @@
|
|
|
38
38
|
border-width: 14px;
|
|
39
39
|
content: '';
|
|
40
40
|
}
|
|
41
|
-
.sd-6-0-0-next-
|
|
41
|
+
.sd-6-0-0-next-13-container--triangle-top::before {
|
|
42
42
|
top: calc(var(--sd-spacing-1) * 0);
|
|
43
43
|
left: calc(50% - 14px);
|
|
44
44
|
border-top-color: var(--triangle-background);
|
|
45
45
|
}
|
|
46
|
-
.sd-6-0-0-next-
|
|
46
|
+
.sd-6-0-0-next-13-container--triangle-right::before {
|
|
47
47
|
right: calc(var(--sd-spacing-1) * 0);
|
|
48
48
|
top: calc(50% - 14px);
|
|
49
49
|
border-right-color: var(--triangle-background);
|
|
50
50
|
}
|
|
51
|
-
.sd-6-0-0-next-
|
|
51
|
+
.sd-6-0-0-next-13-container--triangle-bottom::before {
|
|
52
52
|
bottom: calc(var(--sd-spacing-1) * 0);
|
|
53
53
|
left: calc(50% - 14px);
|
|
54
54
|
border-bottom-color: var(--triangle-background);
|
|
55
55
|
}
|
|
56
|
-
.sd-6-0-0-next-
|
|
56
|
+
.sd-6-0-0-next-13-container--triangle-left::before {
|
|
57
57
|
left: calc(var(--sd-spacing-1) * 0);
|
|
58
58
|
top: calc(50% - 14px);
|
|
59
59
|
border-left-color: var(--triangle-background);
|
|
60
60
|
}
|
|
61
|
-
.sd-6-0-0-next-
|
|
61
|
+
.sd-6-0-0-next-13-container--triangle-top-border::after, .sd-6-0-0-next-13-container--triangle-top-border::before, .sd-6-0-0-next-13-container--triangle-right-border::after, .sd-6-0-0-next-13-container--triangle-right-border::before, .sd-6-0-0-next-13-container--triangle-bottom-border::after, .sd-6-0-0-next-13-container--triangle-bottom-border::before, .sd-6-0-0-next-13-container--triangle-left-border::after, .sd-6-0-0-next-13-container--triangle-left-border::before {
|
|
62
62
|
position: absolute;
|
|
63
63
|
display: block;
|
|
64
64
|
--tw-border-style: solid;
|
|
@@ -66,53 +66,53 @@
|
|
|
66
66
|
border-color: transparent;
|
|
67
67
|
content: '';
|
|
68
68
|
}
|
|
69
|
-
.sd-6-0-0-next-
|
|
69
|
+
.sd-6-0-0-next-13-container--triangle-top-border::after, .sd-6-0-0-next-13-container--triangle-right-border::after, .sd-6-0-0-next-13-container--triangle-bottom-border::after, .sd-6-0-0-next-13-container--triangle-left-border::after {
|
|
70
70
|
border-width: 14px;
|
|
71
71
|
}
|
|
72
|
-
.sd-6-0-0-next-
|
|
72
|
+
.sd-6-0-0-next-13-container--triangle-top-border::before, .sd-6-0-0-next-13-container--triangle-right-border::before, .sd-6-0-0-next-13-container--triangle-bottom-border::before, .sd-6-0-0-next-13-container--triangle-left-border::before {
|
|
73
73
|
border-width: 15px;
|
|
74
74
|
}
|
|
75
|
-
.sd-6-0-0-next-
|
|
75
|
+
.sd-6-0-0-next-13-container--triangle-top-border::after, .sd-6-0-0-next-13-container--triangle-top-border::before {
|
|
76
76
|
top: -1px;
|
|
77
77
|
}
|
|
78
|
-
.sd-6-0-0-next-
|
|
78
|
+
.sd-6-0-0-next-13-container--triangle-top-border::before {
|
|
79
79
|
border-top-color: rgba(var(--sd-color-border-neutral-400));
|
|
80
80
|
left: calc(50% - 15px);
|
|
81
81
|
}
|
|
82
|
-
.sd-6-0-0-next-
|
|
82
|
+
.sd-6-0-0-next-13-container--triangle-top-border::after {
|
|
83
83
|
left: calc(50% - 14px);
|
|
84
84
|
border-top-color: var(--triangle-background);
|
|
85
85
|
}
|
|
86
|
-
.sd-6-0-0-next-
|
|
86
|
+
.sd-6-0-0-next-13-container--triangle-right-border::after, .sd-6-0-0-next-13-container--triangle-right-border::before {
|
|
87
87
|
right: -1px;
|
|
88
88
|
}
|
|
89
|
-
.sd-6-0-0-next-
|
|
89
|
+
.sd-6-0-0-next-13-container--triangle-right-border::before {
|
|
90
90
|
border-right-color: rgba(var(--sd-color-border-neutral-400));
|
|
91
91
|
top: calc(50% - 15px);
|
|
92
92
|
}
|
|
93
|
-
.sd-6-0-0-next-
|
|
93
|
+
.sd-6-0-0-next-13-container--triangle-right-border::after {
|
|
94
94
|
top: calc(50% - 14px);
|
|
95
95
|
border-right-color: var(--triangle-background);
|
|
96
96
|
}
|
|
97
|
-
.sd-6-0-0-next-
|
|
97
|
+
.sd-6-0-0-next-13-container--triangle-bottom-border::after, .sd-6-0-0-next-13-container--triangle-bottom-border::before {
|
|
98
98
|
bottom: -1px;
|
|
99
99
|
}
|
|
100
|
-
.sd-6-0-0-next-
|
|
100
|
+
.sd-6-0-0-next-13-container--triangle-bottom-border::before {
|
|
101
101
|
border-bottom-color: rgba(var(--sd-color-border-neutral-400));
|
|
102
102
|
left: calc(50% - 15px);
|
|
103
103
|
}
|
|
104
|
-
.sd-6-0-0-next-
|
|
104
|
+
.sd-6-0-0-next-13-container--triangle-bottom-border::after {
|
|
105
105
|
left: calc(50% - 14px);
|
|
106
106
|
border-bottom-color: var(--triangle-background);
|
|
107
107
|
}
|
|
108
|
-
.sd-6-0-0-next-
|
|
108
|
+
.sd-6-0-0-next-13-container--triangle-left-border::after, .sd-6-0-0-next-13-container--triangle-left-border::before {
|
|
109
109
|
left: -1px;
|
|
110
110
|
}
|
|
111
|
-
.sd-6-0-0-next-
|
|
111
|
+
.sd-6-0-0-next-13-container--triangle-left-border::before {
|
|
112
112
|
border-left-color: rgba(var(--sd-color-border-neutral-400));
|
|
113
113
|
top: calc(50% - 15px);
|
|
114
114
|
}
|
|
115
|
-
.sd-6-0-0-next-
|
|
115
|
+
.sd-6-0-0-next-13-container--triangle-left-border::after {
|
|
116
116
|
top: calc(50% - 14px);
|
|
117
117
|
border-left-color: var(--triangle-background);
|
|
118
118
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
|
|
2
2
|
@layer properties;
|
|
3
3
|
@layer theme, base, components, utilities;
|
|
4
|
-
.sd-6-0-0-next-
|
|
4
|
+
.sd-6-0-0-next-13-copyright {
|
|
5
5
|
position: relative;
|
|
6
6
|
--tw-blur: ;
|
|
7
7
|
--tw-brightness: ;
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
--tw-saturate: ;
|
|
13
13
|
--tw-sepia: ;
|
|
14
14
|
}
|
|
15
|
-
.sd-6-0-0-next-
|
|
15
|
+
.sd-6-0-0-next-13-copyright::after {
|
|
16
16
|
position: absolute;
|
|
17
17
|
bottom: calc(var(--sd-spacing-1) * 0);
|
|
18
18
|
left: calc(var(--sd-spacing-1) * 0);
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
|
|
29
29
|
content: var(--copyright);
|
|
30
30
|
}
|
|
31
|
-
.sd-6-0-0-next-
|
|
31
|
+
.sd-6-0-0-next-13-copyright--orientation-vertical::after {
|
|
32
32
|
width: -moz-max-content;
|
|
33
33
|
width: max-content;
|
|
34
34
|
padding-top: var(--sd-spacing-2);
|
|
@@ -39,14 +39,14 @@
|
|
|
39
39
|
text-orientation: sideways-right;
|
|
40
40
|
transform: rotate(180deg);
|
|
41
41
|
}
|
|
42
|
-
.sd-6-0-0-next-
|
|
42
|
+
.sd-6-0-0-next-13-copyright--color-black::after {
|
|
43
43
|
color: rgba(var(--sd-color-text-black));
|
|
44
44
|
filter: drop-shadow(0 0 transparent);
|
|
45
45
|
}
|
|
46
|
-
.sd-6-0-0-next-
|
|
46
|
+
.sd-6-0-0-next-13-copyright--no-shadow::after {
|
|
47
47
|
filter: drop-shadow(0 0 transparent);
|
|
48
48
|
}
|
|
49
|
-
.sd-6-0-0-next-
|
|
49
|
+
.sd-6-0-0-next-13-copyright--placement-top::after {
|
|
50
50
|
position: absolute;
|
|
51
51
|
top: calc(var(--sd-spacing-1) * 0);
|
|
52
52
|
right: calc(var(--sd-spacing-1) * 0);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
|
|
2
2
|
@layer properties;
|
|
3
3
|
@layer theme, base, components, utilities;
|
|
4
|
-
.sd-6-0-0-next-
|
|
4
|
+
.sd-6-0-0-next-13-display {
|
|
5
5
|
font-size: var(--sd-text-3xl);
|
|
6
6
|
line-height: var(--tw-leading, var(--text-3xl--line-height, calc(2.25 / 1.875)));
|
|
7
7
|
--tw-leading: var(--leading-tight, 1.25);
|
|
@@ -11,12 +11,12 @@
|
|
|
11
11
|
color: rgba(var(--sd-color-text-black));
|
|
12
12
|
}
|
|
13
13
|
@media (width >= 64rem) {
|
|
14
|
-
.sd-6-0-0-next-
|
|
14
|
+
.sd-6-0-0-next-13-display {
|
|
15
15
|
font-size: var(--sd-text-4xl);
|
|
16
16
|
line-height: var(--tw-leading, var(--text-4xl--line-height, calc(2.5 / 2.25)))
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
|
-
.sd-6-0-0-next-
|
|
19
|
+
.sd-6-0-0-next-13-display--size-xl {
|
|
20
20
|
font-size: var(--sd-text-xl);
|
|
21
21
|
line-height: var(--tw-leading, var(--text-xl--line-height, calc(1.75 / 1.25)));
|
|
22
22
|
--tw-leading: var(--leading-tight, 1.25);
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
font-weight: var(--sd-font-weight-normal);
|
|
26
26
|
color: rgba(var(--sd-color-text-black));
|
|
27
27
|
}
|
|
28
|
-
.sd-6-0-0-next-
|
|
28
|
+
.sd-6-0-0-next-13-display--size-3xl {
|
|
29
29
|
font-size: var(--sd-text-2xl);
|
|
30
30
|
line-height: var(--tw-leading, var(--text-2xl--line-height, calc(2 / 1.5)));
|
|
31
31
|
--tw-leading: var(--leading-tight, 1.25);
|
|
@@ -35,12 +35,12 @@
|
|
|
35
35
|
color: rgba(var(--sd-color-text-black));
|
|
36
36
|
}
|
|
37
37
|
@media (width >= 64rem) {
|
|
38
|
-
.sd-6-0-0-next-
|
|
38
|
+
.sd-6-0-0-next-13-display--size-3xl {
|
|
39
39
|
font-size: var(--sd-text-3xl);
|
|
40
40
|
line-height: var(--tw-leading, var(--text-3xl--line-height, calc(2.25 / 1.875)))
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
|
-
.sd-6-0-0-next-
|
|
43
|
+
.sd-6-0-0-next-13-display--inverted {
|
|
44
44
|
color: rgba(var(--sd-color-text-white));
|
|
45
45
|
}
|
|
46
46
|
@property --tw-leading {
|
|
@@ -1,24 +1,45 @@
|
|
|
1
1
|
/*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
|
|
2
|
+
@layer properties;
|
|
2
3
|
@layer theme, base, components, utilities;
|
|
3
|
-
.sd-6-0-0-next-
|
|
4
|
+
.sd-6-0-0-next-13-flag {
|
|
4
5
|
display: inline-flex;
|
|
5
6
|
height: var(--sd-spacing-8);
|
|
6
7
|
align-items: center;
|
|
7
8
|
overflow: hidden;
|
|
8
|
-
|
|
9
|
+
border-radius: var(--sd-flag-border-radius, 0);
|
|
10
|
+
border-style: var(--tw-border-style);
|
|
11
|
+
border-width: 1px;
|
|
12
|
+
border-width: var(--sd-flag-border-width, 0);
|
|
13
|
+
border-color: rgba(var(--sd-flag--neutral-200-color-border, rgba(255, 255, 255, 0)));
|
|
14
|
+
background-color: rgba(var(--sd-flag--neutral-200-color-background, rgba(var(--sd-color-neutral-200))));
|
|
9
15
|
padding-inline: var(--sd-spacing-3);
|
|
10
16
|
font-size: var(--sd-text-sm);
|
|
11
17
|
line-height: var(--tw-leading, var(--text-sm--line-height, calc(1.25 / 0.875)));
|
|
12
18
|
white-space: nowrap;
|
|
13
19
|
color: rgba(var(--sd-color-text-black));
|
|
14
20
|
}
|
|
15
|
-
.sd-6-0-0-next-
|
|
21
|
+
.sd-6-0-0-next-13-flag--neutral-500 {
|
|
22
|
+
border-color: rgba(var(--sd-flag--neutral-500-color-border, rgba(255, 255, 255, 0)));
|
|
16
23
|
background-color: rgba(var(--sd-flag--neutral-500-color-background, rgba(var(--sd-color-neutral-500))));
|
|
17
24
|
color: rgba(var(--sd-color-text-black));
|
|
18
25
|
}
|
|
19
|
-
.sd-6-0-0-next-
|
|
20
|
-
|
|
26
|
+
.sd-6-0-0-next-13-flag--neutral-300 {
|
|
27
|
+
border-color: rgba(var(--sd-flag--neutral-300-color-border, rgba(255, 255, 255, 0)));
|
|
28
|
+
background-color: rgba(var(--sd-flag--neutral-300-color-background, rgba(var(--sd-color-neutral-300))));
|
|
21
29
|
}
|
|
22
|
-
.sd-6-0-0-next-
|
|
23
|
-
|
|
30
|
+
.sd-6-0-0-next-13-flag--white {
|
|
31
|
+
border-color: rgba(var(--sd-flag--white-color-border, rgba(255, 255, 255, 0)));
|
|
32
|
+
background-color: rgba(var(--sd-flag--white-color-background, rgba(var(--sd-color-white))));
|
|
24
33
|
}
|
|
34
|
+
@property --tw-border-style {
|
|
35
|
+
syntax: "*";
|
|
36
|
+
inherits: false;
|
|
37
|
+
initial-value: solid;
|
|
38
|
+
}
|
|
39
|
+
@layer properties {
|
|
40
|
+
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
41
|
+
*, ::before, ::after, ::backdrop {
|
|
42
|
+
--tw-border-style: solid;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|