@solid-design-system/styles 1.5.4 → 2.0.0-next.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/CHANGELOG.md +15 -0
- package/cdn/modules/chip.css +24 -1
- package/cdn/modules/container.css +117 -1
- package/cdn/modules/copyright.css +129 -1
- package/cdn/modules/display.css +60 -1
- package/cdn/modules/flag.css +23 -1
- package/cdn/modules/footnotes.css +166 -1
- package/cdn/modules/headline.css +138 -1
- package/cdn/modules/hidden-links.css +130 -1
- package/cdn/modules/interactive.css +95 -1
- package/cdn/modules/leadtext.css +39 -1
- package/cdn/modules/list.css +125 -1
- package/cdn/modules/mark.css +5 -1
- package/cdn/modules/media.css +13 -1
- package/cdn/modules/meta.css +47 -1
- package/cdn/modules/pagination.css +292 -1
- package/cdn/modules/paragraph.css +39 -1
- package/cdn/modules/prose.css +75 -1
- package/cdn/modules/status-badge.css +26 -1
- package/cdn/modules/table-cell.css +170 -1
- package/cdn/modules/table.css +31 -1
- package/cdn/solid-styles.css +962 -1
- package/cdn-versioned/modules/chip.css +24 -1
- package/cdn-versioned/modules/container.css +117 -1
- package/cdn-versioned/modules/copyright.css +129 -1
- package/cdn-versioned/modules/display.css +60 -1
- package/cdn-versioned/modules/flag.css +23 -1
- package/cdn-versioned/modules/footnotes.css +166 -1
- package/cdn-versioned/modules/headline.css +138 -1
- package/cdn-versioned/modules/hidden-links.css +130 -1
- package/cdn-versioned/modules/interactive.css +95 -1
- package/cdn-versioned/modules/leadtext.css +39 -1
- package/cdn-versioned/modules/list.css +125 -1
- package/cdn-versioned/modules/mark.css +5 -1
- package/cdn-versioned/modules/media.css +13 -1
- package/cdn-versioned/modules/meta.css +47 -1
- package/cdn-versioned/modules/pagination.css +292 -1
- package/cdn-versioned/modules/paragraph.css +39 -1
- package/cdn-versioned/modules/prose.css +75 -1
- package/cdn-versioned/modules/status-badge.css +26 -1
- package/cdn-versioned/modules/table-cell.css +170 -1
- package/cdn-versioned/modules/table.css +31 -1
- package/cdn-versioned/solid-styles.css +962 -1
- package/dist/modules/chip.css +19 -56
- package/dist/modules/container.css +54 -121
- package/dist/modules/copyright.css +106 -49
- package/dist/modules/display.css +52 -62
- package/dist/modules/flag.css +18 -54
- package/dist/modules/footnotes.css +106 -119
- package/dist/modules/headline.css +113 -212
- package/dist/modules/hidden-links.css +117 -44
- package/dist/modules/interactive.css +76 -105
- package/dist/modules/leadtext.css +35 -39
- package/dist/modules/list.css +70 -143
- package/dist/modules/mark.css +3 -13
- package/dist/modules/media.css +9 -29
- package/dist/modules/meta.css +36 -38
- package/dist/modules/pagination.css +246 -384
- package/dist/modules/paragraph.css +35 -24
- package/dist/modules/prose.css +49 -891
- package/dist/modules/status-badge.css +18 -53
- package/dist/modules/table-cell.css +153 -169
- package/dist/modules/table.css +24 -17
- package/dist/solid-styles.css +709 -1781
- package/dist-versioned/modules/chip.css +23 -60
- package/dist-versioned/modules/container.css +76 -143
- package/dist-versioned/modules/copyright.css +112 -55
- package/dist-versioned/modules/display.css +54 -64
- package/dist-versioned/modules/flag.css +22 -58
- package/dist-versioned/modules/footnotes.css +134 -147
- package/dist-versioned/modules/headline.css +128 -227
- package/dist-versioned/modules/hidden-links.css +121 -48
- package/dist-versioned/modules/interactive.css +82 -111
- package/dist-versioned/modules/leadtext.css +36 -40
- package/dist-versioned/modules/list.css +92 -165
- package/dist-versioned/modules/mark.css +4 -14
- package/dist-versioned/modules/media.css +13 -33
- package/dist-versioned/modules/meta.css +42 -44
- package/dist-versioned/modules/pagination.css +273 -411
- package/dist-versioned/modules/paragraph.css +36 -25
- package/dist-versioned/modules/prose.css +57 -899
- package/dist-versioned/modules/status-badge.css +24 -59
- package/dist-versioned/modules/table-cell.css +169 -185
- package/dist-versioned/modules/table.css +25 -18
- package/dist-versioned/solid-styles.css +825 -1897
- package/package.json +9 -10
|
@@ -1 +1,138 @@
|
|
|
1
|
-
|
|
1
|
+
/*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
|
|
2
|
+
@layer properties;
|
|
3
|
+
.sd-2-0-0-next-0-headline, .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5) {
|
|
4
|
+
display: flex;
|
|
5
|
+
--tw-font-weight: var(--sd-font-weight-bold);
|
|
6
|
+
font-weight: var(--sd-font-weight-bold);
|
|
7
|
+
color: var(--sd-color-text-primary, var(--sd-color-primary));
|
|
8
|
+
}
|
|
9
|
+
.sd-2-0-0-next-0-headline sd-icon, .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5) sd-icon {
|
|
10
|
+
flex-shrink: 0;
|
|
11
|
+
font-size: 3rem;
|
|
12
|
+
color: var(--sd-color-text-primary, var(--sd-color-primary));
|
|
13
|
+
}
|
|
14
|
+
@media (width >= 40rem) {
|
|
15
|
+
.sd-2-0-0-next-0-headline sd-icon, .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5) sd-icon {
|
|
16
|
+
margin-top: var(--sd-spacing-2)
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
.sd-2-0-0-next-0-headline.sd-2-0-0-next-0-headline, .sd-2-0-0-next-0-headline:is(h1):not(.sd-2-0-0-next-0-headline), .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5).sd-2-0-0-next-0-headline, .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5):is(h1):not(.sd-2-0-0-next-0-headline) {
|
|
20
|
+
gap: var(--sd-spacing-4);
|
|
21
|
+
font-size: var(--sd-text-3xl);
|
|
22
|
+
line-height: var(--tw-leading, var(--text-3xl--line-height, calc(2.25 / 1.875)));
|
|
23
|
+
--tw-leading: var(--leading-tight, 1.25);
|
|
24
|
+
line-height: var(--leading-tight, 1.25);
|
|
25
|
+
}
|
|
26
|
+
@media (width >= 40rem) {
|
|
27
|
+
.sd-2-0-0-next-0-headline.sd-2-0-0-next-0-headline, .sd-2-0-0-next-0-headline:is(h1):not(.sd-2-0-0-next-0-headline), .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5).sd-2-0-0-next-0-headline, .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5):is(h1):not(.sd-2-0-0-next-0-headline) {
|
|
28
|
+
font-size: var(--sd-text-4xl);
|
|
29
|
+
line-height: var(--tw-leading, var(--text-4xl--line-height, calc(2.5 / 2.25)))
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
.sd-2-0-0-next-0-headline.sd-2-0-0-next-0-headline sd-icon, .sd-2-0-0-next-0-headline:is(h1):not(.sd-2-0-0-next-0-headline) sd-icon, .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5).sd-2-0-0-next-0-headline sd-icon, .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5):is(h1):not(.sd-2-0-0-next-0-headline) sd-icon {
|
|
33
|
+
margin-top: calc(var(--sd-spacing-1) * -1);
|
|
34
|
+
}
|
|
35
|
+
@media (width >= 40rem) {
|
|
36
|
+
.sd-2-0-0-next-0-headline.sd-2-0-0-next-0-headline sd-icon, .sd-2-0-0-next-0-headline:is(h1):not(.sd-2-0-0-next-0-headline) sd-icon, .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5).sd-2-0-0-next-0-headline sd-icon, .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5):is(h1):not(.sd-2-0-0-next-0-headline) sd-icon {
|
|
37
|
+
margin-top: calc(var(--sd-spacing-1) * 0)
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
.sd-2-0-0-next-0-headline.sd-2-0-0-next-0-headline--size-3xl, .sd-2-0-0-next-0-headline:is(h2):not(.sd-2-0-0-next-0-headline), .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5).sd-2-0-0-next-0-headline--size-3xl, .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5):is(h2):not(.sd-2-0-0-next-0-headline) {
|
|
41
|
+
gap: var(--sd-spacing-4);
|
|
42
|
+
font-size: var(--sd-text-2xl);
|
|
43
|
+
line-height: var(--tw-leading, var(--text-2xl--line-height, calc(2 / 1.5)));
|
|
44
|
+
--tw-leading: var(--leading-tight, 1.25);
|
|
45
|
+
line-height: var(--leading-tight, 1.25);
|
|
46
|
+
}
|
|
47
|
+
@media (width >= 40rem) {
|
|
48
|
+
.sd-2-0-0-next-0-headline.sd-2-0-0-next-0-headline--size-3xl, .sd-2-0-0-next-0-headline:is(h2):not(.sd-2-0-0-next-0-headline), .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5).sd-2-0-0-next-0-headline--size-3xl, .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5):is(h2):not(.sd-2-0-0-next-0-headline) {
|
|
49
|
+
font-size: var(--sd-text-3xl);
|
|
50
|
+
line-height: var(--tw-leading, var(--text-3xl--line-height, calc(2.25 / 1.875)))
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
.sd-2-0-0-next-0-headline.sd-2-0-0-next-0-headline--size-3xl sd-icon, .sd-2-0-0-next-0-headline:is(h2):not(.sd-2-0-0-next-0-headline) sd-icon, .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5).sd-2-0-0-next-0-headline--size-3xl sd-icon, .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5):is(h2):not(.sd-2-0-0-next-0-headline) sd-icon {
|
|
54
|
+
margin-top: calc(var(--sd-spacing-1) * -1);
|
|
55
|
+
}
|
|
56
|
+
@media (width >= 40rem) {
|
|
57
|
+
.sd-2-0-0-next-0-headline.sd-2-0-0-next-0-headline--size-3xl sd-icon, .sd-2-0-0-next-0-headline:is(h2):not(.sd-2-0-0-next-0-headline) sd-icon, .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5).sd-2-0-0-next-0-headline--size-3xl sd-icon, .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5):is(h2):not(.sd-2-0-0-next-0-headline) sd-icon {
|
|
58
|
+
margin-top: calc(var(--sd-spacing-1) * 0)
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
.sd-2-0-0-next-0-headline.sd-2-0-0-next-0-headline--size-xl, .sd-2-0-0-next-0-headline.sd-2-0-0-next-0-headline--size-lg, .sd-2-0-0-next-0-headline.sd-2-0-0-next-0-headline--size-base, .sd-2-0-0-next-0-headline:is(h3, h4, h5):not(.sd-2-0-0-next-0-headline), .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5).sd-2-0-0-next-0-headline--size-xl, .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5).sd-2-0-0-next-0-headline--size-lg, .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5).sd-2-0-0-next-0-headline--size-base, .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5):is(h3, h4, h5):not(.sd-2-0-0-next-0-headline) {
|
|
62
|
+
gap: var(--sd-spacing-2);
|
|
63
|
+
color: var(--sd-color-text-black, var(--sd-color-black));
|
|
64
|
+
}
|
|
65
|
+
.sd-2-0-0-next-0-headline.sd-2-0-0-next-0-headline--size-xl sd-icon, .sd-2-0-0-next-0-headline.sd-2-0-0-next-0-headline--size-lg sd-icon, .sd-2-0-0-next-0-headline.sd-2-0-0-next-0-headline--size-base sd-icon, .sd-2-0-0-next-0-headline:is(h3, h4, h5):not(.sd-2-0-0-next-0-headline) sd-icon, .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5).sd-2-0-0-next-0-headline--size-xl sd-icon, .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5).sd-2-0-0-next-0-headline--size-lg sd-icon, .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5).sd-2-0-0-next-0-headline--size-base sd-icon, .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5):is(h3, h4, h5):not(.sd-2-0-0-next-0-headline) sd-icon {
|
|
66
|
+
font-size: 2rem;
|
|
67
|
+
}
|
|
68
|
+
.sd-2-0-0-next-0-headline.sd-2-0-0-next-0-headline--size-xl, .sd-2-0-0-next-0-headline:is(h3):not(.sd-2-0-0-next-0-headline), .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5).sd-2-0-0-next-0-headline--size-xl, .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5):is(h3):not(.sd-2-0-0-next-0-headline) {
|
|
69
|
+
font-size: var(--sd-text-xl);
|
|
70
|
+
line-height: var(--tw-leading, var(--text-xl--line-height, calc(1.75 / 1.25)));
|
|
71
|
+
}
|
|
72
|
+
.sd-2-0-0-next-0-headline.sd-2-0-0-next-0-headline--size-xl sd-icon, .sd-2-0-0-next-0-headline:is(h3):not(.sd-2-0-0-next-0-headline) sd-icon, .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5).sd-2-0-0-next-0-headline--size-xl sd-icon, .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5):is(h3):not(.sd-2-0-0-next-0-headline) sd-icon {
|
|
73
|
+
margin-top: var(--sd-spacing-0\.5);
|
|
74
|
+
}
|
|
75
|
+
@media (width >= 40rem) {
|
|
76
|
+
.sd-2-0-0-next-0-headline.sd-2-0-0-next-0-headline--size-xl sd-icon, .sd-2-0-0-next-0-headline:is(h3):not(.sd-2-0-0-next-0-headline) sd-icon, .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5).sd-2-0-0-next-0-headline--size-xl sd-icon, .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5):is(h3):not(.sd-2-0-0-next-0-headline) sd-icon {
|
|
77
|
+
margin-top: var(--sd-spacing-0\.5)
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
.sd-2-0-0-next-0-headline.sd-2-0-0-next-0-headline--size-lg, .sd-2-0-0-next-0-headline.sd-2-0-0-next-0-headline--size-base, .sd-2-0-0-next-0-headline:is(h4, h5):not(.sd-2-0-0-next-0-headline), .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5).sd-2-0-0-next-0-headline--size-lg, .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5).sd-2-0-0-next-0-headline--size-base, .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5):is(h4, h5):not(.sd-2-0-0-next-0-headline) {
|
|
81
|
+
--tw-leading: var(--leading-normal, 1.5);
|
|
82
|
+
line-height: var(--leading-normal, 1.5);
|
|
83
|
+
}
|
|
84
|
+
.sd-2-0-0-next-0-headline.sd-2-0-0-next-0-headline--size-lg, .sd-2-0-0-next-0-headline:is(h4), .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5).sd-2-0-0-next-0-headline--size-lg, .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5):is(h4) {
|
|
85
|
+
font-size: var(--sd-text-lg);
|
|
86
|
+
line-height: var(--tw-leading, var(--text-lg--line-height, calc(1.75 / 1.125)));
|
|
87
|
+
}
|
|
88
|
+
.sd-2-0-0-next-0-headline.sd-2-0-0-next-0-headline--size-lg sd-icon, .sd-2-0-0-next-0-headline:is(h4) sd-icon, .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5).sd-2-0-0-next-0-headline--size-lg sd-icon, .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5):is(h4) sd-icon {
|
|
89
|
+
margin-top: calc(var(--sd-spacing-1) * 0);
|
|
90
|
+
}
|
|
91
|
+
@media (width >= 40rem) {
|
|
92
|
+
.sd-2-0-0-next-0-headline.sd-2-0-0-next-0-headline--size-lg sd-icon, .sd-2-0-0-next-0-headline:is(h4) sd-icon, .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5).sd-2-0-0-next-0-headline--size-lg sd-icon, .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5):is(h4) sd-icon {
|
|
93
|
+
margin-top: calc(var(--sd-spacing-1) * 0)
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
.sd-2-0-0-next-0-headline.sd-2-0-0-next-0-headline--size-base, .sd-2-0-0-next-0-headline:is(h5):not(.sd-2-0-0-next-0-headline), .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5).sd-2-0-0-next-0-headline--size-base, .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5):is(h5):not(.sd-2-0-0-next-0-headline) {
|
|
97
|
+
font-size: var(--sd-text-base);
|
|
98
|
+
line-height: var(--tw-leading, var(--text-base--line-height, calc(1.5 / 1)));
|
|
99
|
+
}
|
|
100
|
+
.sd-2-0-0-next-0-headline.sd-2-0-0-next-0-headline--size-base sd-icon, .sd-2-0-0-next-0-headline:is(h5):not(.sd-2-0-0-next-0-headline) sd-icon, .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5).sd-2-0-0-next-0-headline--size-base sd-icon, .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5):is(h5):not(.sd-2-0-0-next-0-headline) sd-icon {
|
|
101
|
+
margin-top: calc(var(--sd-spacing-1) * -1);
|
|
102
|
+
}
|
|
103
|
+
.sd-2-0-0-next-0-headline.sd-2-0-0-next-0-headline--size-base mark, .sd-2-0-0-next-0-headline:is(h5):not(.sd-2-0-0-next-0-headline) mark, .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5).sd-2-0-0-next-0-headline--size-base mark, .sd-2-0-0-next-0-prose :is(h1, h2, h3, h4, h5):is(h5):not(.sd-2-0-0-next-0-headline) mark {
|
|
104
|
+
color: inherit;
|
|
105
|
+
}
|
|
106
|
+
.sd-2-0-0-next-0-headline--inline {
|
|
107
|
+
display: inline-block;
|
|
108
|
+
}
|
|
109
|
+
.sd-2-0-0-next-0-headline--inline sd-icon {
|
|
110
|
+
margin-top: calc(var(--sd-spacing-1) * -1);
|
|
111
|
+
margin-right: var(--sd-spacing-2);
|
|
112
|
+
vertical-align: middle;
|
|
113
|
+
}
|
|
114
|
+
.sd-2-0-0-next-0-headline--inline:is(.sd-2-0-0-next-0-headline--size-xl, .sd-2-0-0-next-0-headline--size-lg, .sd-2-0-0-next-0-headline--size-base) sd-icon {
|
|
115
|
+
margin-right: var(--sd-spacing-0\.5);
|
|
116
|
+
}
|
|
117
|
+
.sd-2-0-0-next-0-headline--inverted:not(#_), .sd-2-0-0-next-0-prose--inverted :is(h1, h2, h3, h4, h5):not(.sd-2-0-0-next-0-headline):not(#_) {
|
|
118
|
+
color: var(--sd-color-text-white, var(--sd-color-white));
|
|
119
|
+
}
|
|
120
|
+
.sd-2-0-0-next-0-headline--inverted:not(#_) sd-icon, .sd-2-0-0-next-0-prose--inverted :is(h1, h2, h3, h4, h5):not(.sd-2-0-0-next-0-headline):not(#_) sd-icon {
|
|
121
|
+
color: var(--sd-color-text-white, var(--sd-color-white));
|
|
122
|
+
}
|
|
123
|
+
@property --tw-font-weight {
|
|
124
|
+
syntax: "*";
|
|
125
|
+
inherits: false;
|
|
126
|
+
}
|
|
127
|
+
@property --tw-leading {
|
|
128
|
+
syntax: "*";
|
|
129
|
+
inherits: false;
|
|
130
|
+
}
|
|
131
|
+
@layer properties {
|
|
132
|
+
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
133
|
+
*, ::before, ::after, ::backdrop {
|
|
134
|
+
--tw-font-weight: initial;
|
|
135
|
+
--tw-leading: initial;
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
}
|
|
@@ -1 +1,130 @@
|
|
|
1
|
-
|
|
1
|
+
/*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
|
|
2
|
+
@layer properties;
|
|
3
|
+
:lang(en) {
|
|
4
|
+
--sd-hidden-links-title: 'Jump to';
|
|
5
|
+
}
|
|
6
|
+
:lang(de) {
|
|
7
|
+
--sd-hidden-links-title: 'Springe zu';
|
|
8
|
+
}
|
|
9
|
+
.sd-2-0-0-next-0-hidden-links:not(:focus-within):not(.sd-2-0-0-next-0-hidden-links--debug) {
|
|
10
|
+
position: absolute;
|
|
11
|
+
width: 1px;
|
|
12
|
+
height: 1px;
|
|
13
|
+
padding: 0;
|
|
14
|
+
margin: -1px;
|
|
15
|
+
overflow: hidden;
|
|
16
|
+
clip-path: inset(50%);
|
|
17
|
+
white-space: nowrap;
|
|
18
|
+
border-width: 0;
|
|
19
|
+
}
|
|
20
|
+
.sd-2-0-0-next-0-hidden-links{
|
|
21
|
+
position: absolute;
|
|
22
|
+
top: var(--sd-spacing-6);
|
|
23
|
+
left: var(--sd-spacing-6);
|
|
24
|
+
}
|
|
25
|
+
.sd-2-0-0-next-0-hidden-links--multiple {
|
|
26
|
+
display: flex;
|
|
27
|
+
flex-direction: column;
|
|
28
|
+
background-color: var(--sd-color-background-white, var(--sd-color-white));
|
|
29
|
+
padding-inline: var(--sd-spacing-2);
|
|
30
|
+
padding-block: var(--sd-spacing-4);
|
|
31
|
+
--tw-shadow: var(--sd-shadow);
|
|
32
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
33
|
+
}
|
|
34
|
+
.sd-2-0-0-next-0-hidden-links--multiple:before {
|
|
35
|
+
padding-inline: var(--sd-spacing-4);
|
|
36
|
+
padding-block: var(--sd-spacing-2);
|
|
37
|
+
--tw-font-weight: var(--sd-font-weight-bold);
|
|
38
|
+
font-weight: var(--sd-font-weight-bold);
|
|
39
|
+
content: var(--sd-hidden-links-title);
|
|
40
|
+
}
|
|
41
|
+
@property --tw-shadow {
|
|
42
|
+
syntax: "*";
|
|
43
|
+
inherits: false;
|
|
44
|
+
initial-value: 0 0 #0000;
|
|
45
|
+
}
|
|
46
|
+
@property --tw-shadow-color {
|
|
47
|
+
syntax: "*";
|
|
48
|
+
inherits: false;
|
|
49
|
+
}
|
|
50
|
+
@property --tw-shadow-alpha {
|
|
51
|
+
syntax: "<percentage>";
|
|
52
|
+
inherits: false;
|
|
53
|
+
initial-value: 100%;
|
|
54
|
+
}
|
|
55
|
+
@property --tw-inset-shadow {
|
|
56
|
+
syntax: "*";
|
|
57
|
+
inherits: false;
|
|
58
|
+
initial-value: 0 0 #0000;
|
|
59
|
+
}
|
|
60
|
+
@property --tw-inset-shadow-color {
|
|
61
|
+
syntax: "*";
|
|
62
|
+
inherits: false;
|
|
63
|
+
}
|
|
64
|
+
@property --tw-inset-shadow-alpha {
|
|
65
|
+
syntax: "<percentage>";
|
|
66
|
+
inherits: false;
|
|
67
|
+
initial-value: 100%;
|
|
68
|
+
}
|
|
69
|
+
@property --tw-ring-color {
|
|
70
|
+
syntax: "*";
|
|
71
|
+
inherits: false;
|
|
72
|
+
}
|
|
73
|
+
@property --tw-ring-shadow {
|
|
74
|
+
syntax: "*";
|
|
75
|
+
inherits: false;
|
|
76
|
+
initial-value: 0 0 #0000;
|
|
77
|
+
}
|
|
78
|
+
@property --tw-inset-ring-color {
|
|
79
|
+
syntax: "*";
|
|
80
|
+
inherits: false;
|
|
81
|
+
}
|
|
82
|
+
@property --tw-inset-ring-shadow {
|
|
83
|
+
syntax: "*";
|
|
84
|
+
inherits: false;
|
|
85
|
+
initial-value: 0 0 #0000;
|
|
86
|
+
}
|
|
87
|
+
@property --tw-ring-inset {
|
|
88
|
+
syntax: "*";
|
|
89
|
+
inherits: false;
|
|
90
|
+
}
|
|
91
|
+
@property --tw-ring-offset-width {
|
|
92
|
+
syntax: "<length>";
|
|
93
|
+
inherits: false;
|
|
94
|
+
initial-value: 0px;
|
|
95
|
+
}
|
|
96
|
+
@property --tw-ring-offset-color {
|
|
97
|
+
syntax: "*";
|
|
98
|
+
inherits: false;
|
|
99
|
+
initial-value: #fff;
|
|
100
|
+
}
|
|
101
|
+
@property --tw-ring-offset-shadow {
|
|
102
|
+
syntax: "*";
|
|
103
|
+
inherits: false;
|
|
104
|
+
initial-value: 0 0 #0000;
|
|
105
|
+
}
|
|
106
|
+
@property --tw-font-weight {
|
|
107
|
+
syntax: "*";
|
|
108
|
+
inherits: false;
|
|
109
|
+
}
|
|
110
|
+
@layer properties {
|
|
111
|
+
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
112
|
+
*, ::before, ::after, ::backdrop {
|
|
113
|
+
--tw-shadow: 0 0 #0000;
|
|
114
|
+
--tw-shadow-color: initial;
|
|
115
|
+
--tw-shadow-alpha: 100%;
|
|
116
|
+
--tw-inset-shadow: 0 0 #0000;
|
|
117
|
+
--tw-inset-shadow-color: initial;
|
|
118
|
+
--tw-inset-shadow-alpha: 100%;
|
|
119
|
+
--tw-ring-color: initial;
|
|
120
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
121
|
+
--tw-inset-ring-color: initial;
|
|
122
|
+
--tw-inset-ring-shadow: 0 0 #0000;
|
|
123
|
+
--tw-ring-inset: initial;
|
|
124
|
+
--tw-ring-offset-width: 0px;
|
|
125
|
+
--tw-ring-offset-color: #fff;
|
|
126
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
127
|
+
--tw-font-weight: initial;
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
}
|
|
@@ -1 +1,95 @@
|
|
|
1
|
-
|
|
1
|
+
/*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
|
|
2
|
+
@layer properties;
|
|
3
|
+
.sd-2-0-0-next-0-prose a--reset, .sd-2-0-0-next-0-interactive--reset {
|
|
4
|
+
all: unset;
|
|
5
|
+
outline: revert;
|
|
6
|
+
}
|
|
7
|
+
.sd-2-0-0-next-0-prose a, .sd-2-0-0-next-0-interactive{
|
|
8
|
+
cursor: pointer;
|
|
9
|
+
color: var(--sd-color-text-primary, var(--sd-color-primary));
|
|
10
|
+
text-decoration-line: underline;
|
|
11
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
12
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function, cubic-bezier(0.4, 0, 0.2, 1)));
|
|
13
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration, 150ms));
|
|
14
|
+
--tw-duration: var(--sd-duration-fast, 150ms);
|
|
15
|
+
transition-duration: var(--sd-duration-fast, 150ms);
|
|
16
|
+
--tw-ease: var(--ease-in-out, cubic-bezier(0.4, 0, 0.2, 1));
|
|
17
|
+
transition-timing-function: var(--ease-in-out, cubic-bezier(0.4, 0, 0.2, 1));
|
|
18
|
+
}
|
|
19
|
+
.sd-2-0-0-next-0-prose a:hover:not([disabled]), .sd-2-0-0-next-0-interactive:hover:not([disabled]) {
|
|
20
|
+
color: var(--sd-color-text-primary-500, var(--sd-color-primary-500));
|
|
21
|
+
}
|
|
22
|
+
.sd-2-0-0-next-0-prose a:focus-visible, .sd-2-0-0-next-0-interactive:focus-visible {
|
|
23
|
+
outline-style: solid;
|
|
24
|
+
outline-offset: 2px;
|
|
25
|
+
outline-width: 2px;
|
|
26
|
+
outline-color: var(--outline-color-primary);
|
|
27
|
+
}
|
|
28
|
+
.sd-2-0-0-next-0-prose a:focus-visible, .sd-2-0-0-next-0-interactive:focus-visible {
|
|
29
|
+
outline-style: solid;
|
|
30
|
+
outline-offset: 2px;
|
|
31
|
+
outline-width: 2px;
|
|
32
|
+
outline-color: var(--outline-color-primary);
|
|
33
|
+
}
|
|
34
|
+
.sd-2-0-0-next-0-prose a:active:not([disabled]), .sd-2-0-0-next-0-interactive:active:not([disabled]) {
|
|
35
|
+
color: var(--sd-interactive--active-color-text, var(--sd-color-primary-800));
|
|
36
|
+
}
|
|
37
|
+
.sd-2-0-0-next-0-prose a:is(.sd-2-0-0-next-0-interactive), .sd-2-0-0-next-0-interactive:is(.sd-2-0-0-next-0-interactive) {
|
|
38
|
+
text-decoration-line: none;
|
|
39
|
+
}
|
|
40
|
+
.sd-2-0-0-next-0-prose a--disabled, .sd-2-0-0-next-0-prose a[disabled], .sd-2-0-0-next-0-prose a[href=''], .sd-2-0-0-next-0-interactive--disabled, .sd-2-0-0-next-0-interactive[disabled], .sd-2-0-0-next-0-interactive[href=''] {
|
|
41
|
+
cursor: not-allowed;
|
|
42
|
+
color: var(--sd-color-text-neutral-500, var(--sd-color-neutral-500));
|
|
43
|
+
}
|
|
44
|
+
.sd-2-0-0-next-0-prose a--disabled:hover:not([disabled]), .sd-2-0-0-next-0-prose a[disabled]:hover:not([disabled]), .sd-2-0-0-next-0-prose a[href='']:hover:not([disabled]), .sd-2-0-0-next-0-interactive--disabled:hover:not([disabled]), .sd-2-0-0-next-0-interactive[disabled]:hover:not([disabled]), .sd-2-0-0-next-0-interactive[href='']:hover:not([disabled]) {
|
|
45
|
+
color: var(--sd-color-text-neutral-500, var(--sd-color-neutral-500));
|
|
46
|
+
}
|
|
47
|
+
.sd-2-0-0-next-0-prose a--disabled:active:not([disabled]), .sd-2-0-0-next-0-prose a[disabled]:active:not([disabled]), .sd-2-0-0-next-0-prose a[href='']:active:not([disabled]), .sd-2-0-0-next-0-interactive--disabled:active:not([disabled]), .sd-2-0-0-next-0-interactive[disabled]:active:not([disabled]), .sd-2-0-0-next-0-interactive[href='']:active:not([disabled]) {
|
|
48
|
+
color: var(--sd-color-text-neutral-500, var(--sd-color-neutral-500));
|
|
49
|
+
}
|
|
50
|
+
.sd-2-0-0-next-0-prose a--disabled.sd-2-0-0-next-0-interactive--inverted, .sd-2-0-0-next-0-prose a[disabled].sd-2-0-0-next-0-interactive--inverted, .sd-2-0-0-next-0-prose a[href=''].sd-2-0-0-next-0-interactive--inverted, .sd-2-0-0-next-0-interactive--disabled.sd-2-0-0-next-0-interactive--inverted, .sd-2-0-0-next-0-interactive[disabled].sd-2-0-0-next-0-interactive--inverted, .sd-2-0-0-next-0-interactive[href=''].sd-2-0-0-next-0-interactive--inverted {
|
|
51
|
+
color: var(--sd-color-text-neutral-600, var(--sd-color-neutral-600));
|
|
52
|
+
}
|
|
53
|
+
.sd-2-0-0-next-0-prose a--disabled.sd-2-0-0-next-0-interactive--inverted:hover:not([disabled]), .sd-2-0-0-next-0-prose a[disabled].sd-2-0-0-next-0-interactive--inverted:hover:not([disabled]), .sd-2-0-0-next-0-prose a[href=''].sd-2-0-0-next-0-interactive--inverted:hover:not([disabled]), .sd-2-0-0-next-0-interactive--disabled.sd-2-0-0-next-0-interactive--inverted:hover:not([disabled]), .sd-2-0-0-next-0-interactive[disabled].sd-2-0-0-next-0-interactive--inverted:hover:not([disabled]), .sd-2-0-0-next-0-interactive[href=''].sd-2-0-0-next-0-interactive--inverted:hover:not([disabled]) {
|
|
54
|
+
color: var(--sd-color-text-neutral-600, var(--sd-color-neutral-600));
|
|
55
|
+
}
|
|
56
|
+
.sd-2-0-0-next-0-prose a--disabled.sd-2-0-0-next-0-interactive--inverted:active:not([disabled]), .sd-2-0-0-next-0-prose a[disabled].sd-2-0-0-next-0-interactive--inverted:active:not([disabled]), .sd-2-0-0-next-0-prose a[href=''].sd-2-0-0-next-0-interactive--inverted:active:not([disabled]), .sd-2-0-0-next-0-interactive--disabled.sd-2-0-0-next-0-interactive--inverted:active:not([disabled]), .sd-2-0-0-next-0-interactive[disabled].sd-2-0-0-next-0-interactive--inverted:active:not([disabled]), .sd-2-0-0-next-0-interactive[href=''].sd-2-0-0-next-0-interactive--inverted:active:not([disabled]) {
|
|
57
|
+
color: var(--sd-color-text-neutral-600, var(--sd-color-neutral-600));
|
|
58
|
+
}
|
|
59
|
+
.sd-2-0-0-next-0-prose--inverted a, .sd-2-0-0-next-0-interactive--inverted {
|
|
60
|
+
color: var(--sd-color-text-white, var(--sd-color-white));
|
|
61
|
+
}
|
|
62
|
+
.sd-2-0-0-next-0-prose--inverted a:hover:not([disabled]), .sd-2-0-0-next-0-interactive--inverted:hover:not([disabled]) {
|
|
63
|
+
color: var(--sd-color-text-primary-200, var(--sd-color-primary-200));
|
|
64
|
+
}
|
|
65
|
+
.sd-2-0-0-next-0-prose--inverted a:focus-visible, .sd-2-0-0-next-0-interactive--inverted:focus-visible {
|
|
66
|
+
outline-style: solid;
|
|
67
|
+
outline-offset: 2px;
|
|
68
|
+
outline-width: 2px;
|
|
69
|
+
outline-color: var(--outline-color-primary);
|
|
70
|
+
}
|
|
71
|
+
.sd-2-0-0-next-0-prose--inverted a:focus-visible, .sd-2-0-0-next-0-interactive--inverted:focus-visible {
|
|
72
|
+
outline-style: solid;
|
|
73
|
+
outline-offset: 2px;
|
|
74
|
+
outline-width: 2px;
|
|
75
|
+
outline-color: var(--outline-color-primary);
|
|
76
|
+
}
|
|
77
|
+
.sd-2-0-0-next-0-prose--inverted a:active:not([disabled]), .sd-2-0-0-next-0-interactive--inverted:active:not([disabled]) {
|
|
78
|
+
color: var(--sd-color-text-primary-400, var(--sd-color-primary-400));
|
|
79
|
+
}
|
|
80
|
+
@property --tw-duration {
|
|
81
|
+
syntax: "*";
|
|
82
|
+
inherits: false;
|
|
83
|
+
}
|
|
84
|
+
@property --tw-ease {
|
|
85
|
+
syntax: "*";
|
|
86
|
+
inherits: false;
|
|
87
|
+
}
|
|
88
|
+
@layer properties {
|
|
89
|
+
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
90
|
+
*, ::before, ::after, ::backdrop {
|
|
91
|
+
--tw-duration: initial;
|
|
92
|
+
--tw-ease: initial;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
}
|
|
@@ -1 +1,39 @@
|
|
|
1
|
-
.
|
|
1
|
+
/*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
|
|
2
|
+
@layer properties;
|
|
3
|
+
.sd-2-0-0-next-0-prose > .sd-2-0-0-next-0-leadtext, .sd-2-0-0-next-0-leadtext {
|
|
4
|
+
font-size: var(--sd-text-xl);
|
|
5
|
+
line-height: var(--tw-leading, var(--text-xl--line-height, calc(1.75 / 1.25)));
|
|
6
|
+
--tw-leading: var(--leading-normal, 1.5);
|
|
7
|
+
line-height: var(--leading-normal, 1.5);
|
|
8
|
+
--tw-font-weight: var(--sd-font-weight-normal);
|
|
9
|
+
font-weight: var(--sd-font-weight-normal);
|
|
10
|
+
color: var(--sd-color-text-black, var(--sd-color-black));
|
|
11
|
+
}
|
|
12
|
+
.sd-2-0-0-next-0-prose > .sd-2-0-0-next-0-leadtext--size-lg, .sd-2-0-0-next-0-leadtext--size-lg {
|
|
13
|
+
font-size: var(--sd-text-lg);
|
|
14
|
+
line-height: var(--tw-leading, var(--text-lg--line-height, calc(1.75 / 1.125)));
|
|
15
|
+
--tw-leading: var(--leading-normal, 1.5);
|
|
16
|
+
line-height: var(--leading-normal, 1.5);
|
|
17
|
+
--tw-font-weight: var(--sd-font-weight-normal);
|
|
18
|
+
font-weight: var(--sd-font-weight-normal);
|
|
19
|
+
color: var(--sd-color-text-black, var(--sd-color-black));
|
|
20
|
+
}
|
|
21
|
+
.sd-2-0-0-next-0-prose--inverted > .sd-2-0-0-next-0-leadtext, .sd-2-0-0-next-0-leadtext--inverted {
|
|
22
|
+
color: var(--sd-color-text-white, var(--sd-color-white));
|
|
23
|
+
}
|
|
24
|
+
@property --tw-leading {
|
|
25
|
+
syntax: "*";
|
|
26
|
+
inherits: false;
|
|
27
|
+
}
|
|
28
|
+
@property --tw-font-weight {
|
|
29
|
+
syntax: "*";
|
|
30
|
+
inherits: false;
|
|
31
|
+
}
|
|
32
|
+
@layer properties {
|
|
33
|
+
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
34
|
+
*, ::before, ::after, ::backdrop {
|
|
35
|
+
--tw-leading: initial;
|
|
36
|
+
--tw-font-weight: initial;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
@@ -1 +1,125 @@
|
|
|
1
|
-
|
|
1
|
+
/*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
|
|
2
|
+
@layer properties;
|
|
3
|
+
.sd-2-0-0-next-0-list:not(.sd-2-0-0-next-0-list--icon), .sd-2-0-0-next-0-prose > :is(ol, ul) {
|
|
4
|
+
list-style-position: revert;
|
|
5
|
+
list-style-type: revert;
|
|
6
|
+
padding: revert;
|
|
7
|
+
padding-block: var(--sd-spacing-4);
|
|
8
|
+
padding-left: var(--sd-spacing-4);
|
|
9
|
+
text-align: left;
|
|
10
|
+
}
|
|
11
|
+
.sd-2-0-0-next-0-list:not(.sd-2-0-0-next-0-list--icon) li:not(:first-child), .sd-2-0-0-next-0-prose > :is(ol, ul) li:not(:first-child) {
|
|
12
|
+
margin-top: var(--sd-spacing-3);
|
|
13
|
+
}
|
|
14
|
+
.sd-2-0-0-next-0-list:not(.sd-2-0-0-next-0-list--icon) ul, .sd-2-0-0-next-0-list:not(.sd-2-0-0-next-0-list--icon) ol, .sd-2-0-0-next-0-prose > :is(ol, ul) ul, .sd-2-0-0-next-0-prose > :is(ol, ul) ol {
|
|
15
|
+
all: revert;
|
|
16
|
+
padding-top: 0.75em;
|
|
17
|
+
padding-left: 1.4em;
|
|
18
|
+
}
|
|
19
|
+
@supports not (-webkit-hyphens: none) {
|
|
20
|
+
.sd-2-0-0-next-0-list:not(.sd-2-0-0-next-0-list--icon) li, .sd-2-0-0-next-0-prose > :is(ol, ul) li {
|
|
21
|
+
padding-left: 0.3em;
|
|
22
|
+
}
|
|
23
|
+
.sd-2-0-0-next-0-list:not(.sd-2-0-0-next-0-list--icon):is(ol):not(.sd-2-0-0-next-0-list--icon), .sd-2-0-0-next-0-prose > :is(ol, ul):is(ol):not(.sd-2-0-0-next-0-list--icon) {
|
|
24
|
+
counter-reset: item;
|
|
25
|
+
}
|
|
26
|
+
.sd-2-0-0-next-0-list:not(.sd-2-0-0-next-0-list--icon):is(ol):not(.sd-2-0-0-next-0-list--icon) > li, .sd-2-0-0-next-0-prose > :is(ol, ul):is(ol):not(.sd-2-0-0-next-0-list--icon) > li {
|
|
27
|
+
counter-increment: item;
|
|
28
|
+
}
|
|
29
|
+
.sd-2-0-0-next-0-list:not(.sd-2-0-0-next-0-list--icon):is(ol):not(.sd-2-0-0-next-0-list--icon) > li::marker, .sd-2-0-0-next-0-prose > :is(ol, ul):is(ol):not(.sd-2-0-0-next-0-list--icon) > li::marker {
|
|
30
|
+
content: counters(item, '.', decimal) '. ';
|
|
31
|
+
}
|
|
32
|
+
.sd-2-0-0-next-0-list:not(.sd-2-0-0-next-0-list--icon):is(ol):not(.sd-2-0-0-next-0-list--icon) > li > ol, .sd-2-0-0-next-0-prose > :is(ol, ul):is(ol):not(.sd-2-0-0-next-0-list--icon) > li > ol {
|
|
33
|
+
padding-left: 1.9em;
|
|
34
|
+
counter-reset: subitem;
|
|
35
|
+
}
|
|
36
|
+
.sd-2-0-0-next-0-list:not(.sd-2-0-0-next-0-list--icon):is(ol):not(.sd-2-0-0-next-0-list--icon) > li > ol > li, .sd-2-0-0-next-0-prose > :is(ol, ul):is(ol):not(.sd-2-0-0-next-0-list--icon) > li > ol > li {
|
|
37
|
+
counter-increment: subitem;
|
|
38
|
+
}
|
|
39
|
+
.sd-2-0-0-next-0-list:not(.sd-2-0-0-next-0-list--icon):is(ol):not(.sd-2-0-0-next-0-list--icon) > li > ol > li::marker, .sd-2-0-0-next-0-prose > :is(ol, ul):is(ol):not(.sd-2-0-0-next-0-list--icon) > li > ol > li::marker {
|
|
40
|
+
content: counters(item, '.', decimal) '.' counters(subitem, '.', decimal) '. ';
|
|
41
|
+
}
|
|
42
|
+
.sd-2-0-0-next-0-list:not(.sd-2-0-0-next-0-list--icon):is(ol):not(.sd-2-0-0-next-0-list--icon) > li > ol > li > ol, .sd-2-0-0-next-0-prose > :is(ol, ul):is(ol):not(.sd-2-0-0-next-0-list--icon) > li > ol > li > ol {
|
|
43
|
+
padding-left: 2.7em;
|
|
44
|
+
counter-reset: subsubitem;
|
|
45
|
+
}
|
|
46
|
+
.sd-2-0-0-next-0-list:not(.sd-2-0-0-next-0-list--icon):is(ol):not(.sd-2-0-0-next-0-list--icon) > li > ol > li > ol > li, .sd-2-0-0-next-0-prose > :is(ol, ul):is(ol):not(.sd-2-0-0-next-0-list--icon) > li > ol > li > ol > li {
|
|
47
|
+
counter-increment: subsubitem;
|
|
48
|
+
}
|
|
49
|
+
.sd-2-0-0-next-0-list:not(.sd-2-0-0-next-0-list--icon):is(ol):not(.sd-2-0-0-next-0-list--icon) > li > ol > li > ol > li::marker, .sd-2-0-0-next-0-prose > :is(ol, ul):is(ol):not(.sd-2-0-0-next-0-list--icon) > li > ol > li > ol > li::marker {
|
|
50
|
+
content: counters(item, '.', decimal) '.' counters(subitem, '.', decimal) '.' counters(subsubitem, '.', decimal) '. ';
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
.sd-2-0-0-next-0-list:not(.sd-2-0-0-next-0-list--icon):is(ul):not(.sd-2-0-0-next-0-list--icon), .sd-2-0-0-next-0-list:not(.sd-2-0-0-next-0-list--icon) ul, .sd-2-0-0-next-0-prose > :is(ol, ul):is(ul):not(.sd-2-0-0-next-0-list--icon), .sd-2-0-0-next-0-prose > :is(ol, ul) ul {
|
|
54
|
+
padding-left: 0.5em;
|
|
55
|
+
}
|
|
56
|
+
.sd-2-0-0-next-0-list:not(.sd-2-0-0-next-0-list--icon):is(ul):not(.sd-2-0-0-next-0-list--icon) > li, .sd-2-0-0-next-0-list:not(.sd-2-0-0-next-0-list--icon) ul > li, .sd-2-0-0-next-0-prose > :is(ol, ul):is(ul):not(.sd-2-0-0-next-0-list--icon) > li, .sd-2-0-0-next-0-prose > :is(ol, ul) ul > li {
|
|
57
|
+
padding-left: 0.75em;
|
|
58
|
+
list-style-type: '\2022';
|
|
59
|
+
}
|
|
60
|
+
.sd-2-0-0-next-0-list:not(.sd-2-0-0-next-0-list--icon):is(ul):not(.sd-2-0-0-next-0-list--icon) > li > ul, .sd-2-0-0-next-0-list:not(.sd-2-0-0-next-0-list--icon) ul > li > ul, .sd-2-0-0-next-0-prose > :is(ol, ul):is(ul):not(.sd-2-0-0-next-0-list--icon) > li > ul, .sd-2-0-0-next-0-prose > :is(ol, ul) ul > li > ul {
|
|
61
|
+
padding-left: 0.3em;
|
|
62
|
+
}
|
|
63
|
+
.sd-2-0-0-next-0-list:not(.sd-2-0-0-next-0-list--icon):is(ul):not(.sd-2-0-0-next-0-list--icon) > li > ul > li, .sd-2-0-0-next-0-list:not(.sd-2-0-0-next-0-list--icon) ul > li > ul > li, .sd-2-0-0-next-0-prose > :is(ol, ul):is(ul):not(.sd-2-0-0-next-0-list--icon) > li > ul > li, .sd-2-0-0-next-0-prose > :is(ol, ul) ul > li > ul > li {
|
|
64
|
+
list-style-type: '\002B1D';
|
|
65
|
+
}
|
|
66
|
+
.sd-2-0-0-next-0-list:not(.sd-2-0-0-next-0-list--icon):is(ul):not(.sd-2-0-0-next-0-list--icon) > li > ul > li > ul, .sd-2-0-0-next-0-list:not(.sd-2-0-0-next-0-list--icon) ul > li > ul > li > ul, .sd-2-0-0-next-0-prose > :is(ol, ul):is(ul):not(.sd-2-0-0-next-0-list--icon) > li > ul > li > ul, .sd-2-0-0-next-0-prose > :is(ol, ul) ul > li > ul > li > ul {
|
|
67
|
+
padding-left: 0.4em;
|
|
68
|
+
}
|
|
69
|
+
.sd-2-0-0-next-0-list:not(.sd-2-0-0-next-0-list--icon):is(ul):not(.sd-2-0-0-next-0-list--icon) > li > ul > li > ul > li, .sd-2-0-0-next-0-list:not(.sd-2-0-0-next-0-list--icon) ul > li > ul > li > ul > li, .sd-2-0-0-next-0-prose > :is(ol, ul):is(ul):not(.sd-2-0-0-next-0-list--icon) > li > ul > li > ul > li, .sd-2-0-0-next-0-prose > :is(ol, ul) ul > li > ul > li > ul > li {
|
|
70
|
+
list-style-type: '\2010';
|
|
71
|
+
}
|
|
72
|
+
.sd-2-0-0-next-0-list--icon {
|
|
73
|
+
padding-block: var(--sd-spacing-4);
|
|
74
|
+
text-align: left;
|
|
75
|
+
}
|
|
76
|
+
.sd-2-0-0-next-0-list--icon li sd-icon:first-of-type, .sd-2-0-0-next-0-list--icon li .sd-2-0-0-next-0-list--icon__icon:first-of-type {
|
|
77
|
+
color: var(--sd-color-text-white, var(--sd-color-white));
|
|
78
|
+
}
|
|
79
|
+
.sd-2-0-0-next-0-list--icon{
|
|
80
|
+
list-style-type: '';
|
|
81
|
+
}
|
|
82
|
+
.sd-2-0-0-next-0-list--icon > li:first-of-type {
|
|
83
|
+
padding-top: calc(var(--sd-spacing-1) * 0);
|
|
84
|
+
}
|
|
85
|
+
.sd-2-0-0-next-0-list--icon li {
|
|
86
|
+
position: relative;
|
|
87
|
+
padding-top: var(--sd-spacing-3);
|
|
88
|
+
padding-left: var(--sd-spacing-10);
|
|
89
|
+
--tw-leading: 32px;
|
|
90
|
+
line-height: 32px;
|
|
91
|
+
}
|
|
92
|
+
.sd-2-0-0-next-0-list--icon li > sd-icon:first-of-type, .sd-2-0-0-next-0-list--icon li > .sd-2-0-0-next-0-list--icon__icon:first-of-type {
|
|
93
|
+
position: absolute;
|
|
94
|
+
left: calc(var(--sd-spacing-1) * 0);
|
|
95
|
+
font-size: var(--sd-text-3xl);
|
|
96
|
+
line-height: var(--tw-leading, var(--text-3xl--line-height, calc(2.25 / 1.875)));
|
|
97
|
+
color: var(--sd-color-text-primary, var(--sd-color-primary));
|
|
98
|
+
}
|
|
99
|
+
.sd-2-0-0-next-0-list--icon.sd-2-0-0-next-0-list--horizontal {
|
|
100
|
+
display: flex;
|
|
101
|
+
}
|
|
102
|
+
.sd-2-0-0-next-0-list--icon.sd-2-0-0-next-0-list--horizontal li {
|
|
103
|
+
display: flex;
|
|
104
|
+
padding-top: calc(var(--sd-spacing-1) * 0);
|
|
105
|
+
}
|
|
106
|
+
.sd-2-0-0-next-0-list--icon.sd-2-0-0-next-0-list--horizontal li:not(:last-child) {
|
|
107
|
+
margin-right: var(--sd-spacing-8);
|
|
108
|
+
}
|
|
109
|
+
.sd-2-0-0-next-0-list--inverted, .sd-2-0-0-next-0-prose--inverted > :is(ol, ul) {
|
|
110
|
+
color: var(--sd-color-text-white, var(--sd-color-white));
|
|
111
|
+
}
|
|
112
|
+
.sd-2-0-0-next-0-list--inverted li > sd-icon:first-of-type, .sd-2-0-0-next-0-list--inverted li > .sd-2-0-0-next-0-list--icon__icon:first-of-type, .sd-2-0-0-next-0-prose--inverted > :is(ol, ul) li > sd-icon:first-of-type, .sd-2-0-0-next-0-prose--inverted > :is(ol, ul) li > .sd-2-0-0-next-0-list--icon__icon:first-of-type {
|
|
113
|
+
color: var(--sd-color-text-white, var(--sd-color-white));
|
|
114
|
+
}
|
|
115
|
+
@property --tw-leading {
|
|
116
|
+
syntax: "*";
|
|
117
|
+
inherits: false;
|
|
118
|
+
}
|
|
119
|
+
@layer properties {
|
|
120
|
+
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
121
|
+
*, ::before, ::after, ::backdrop {
|
|
122
|
+
--tw-leading: initial;
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
}
|
|
@@ -1 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
/*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
|
|
2
|
+
mark.sd-2-0-0-next-0-mark {
|
|
3
|
+
background-color: transparent;
|
|
4
|
+
color: var(--sd-color-text-accent, var(--sd-color-accent));
|
|
5
|
+
}
|
|
@@ -1 +1,13 @@
|
|
|
1
|
-
|
|
1
|
+
/*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
|
|
2
|
+
.sd-2-0-0-next-0-prose figure, figure.sd-2-0-0-next-0-media {
|
|
3
|
+
margin: calc(var(--sd-spacing-1) * 0);
|
|
4
|
+
}
|
|
5
|
+
.sd-2-0-0-next-0-prose figure figcaption, figure.sd-2-0-0-next-0-media figcaption {
|
|
6
|
+
color: var(--sd-color-text-neutral-700, var(--sd-color-neutral-700));
|
|
7
|
+
}
|
|
8
|
+
.sd-2-0-0-next-0-prose figure figcaption:last-child, figure.sd-2-0-0-next-0-media figcaption:last-child {
|
|
9
|
+
margin-top: var(--sd-spacing-3);
|
|
10
|
+
}
|
|
11
|
+
.sd-2-0-0-next-0-prose--inverted figure figcaption, figure.sd-2-0-0-next-0-media--inverted figcaption {
|
|
12
|
+
color: var(--sd-color-text-primary-400, var(--sd-color-primary-400));
|
|
13
|
+
}
|