@solid-design-system/styles 2.0.0-next.0 → 2.0.0-next.1
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 +6 -0
- package/cdn/modules/chip.css +1 -23
- package/cdn/modules/container.css +1 -116
- package/cdn/modules/copyright.css +1 -128
- package/cdn/modules/display.css +1 -59
- package/cdn/modules/flag.css +1 -22
- package/cdn/modules/footnotes.css +1 -165
- package/cdn/modules/headline.css +1 -137
- package/cdn/modules/hidden-links.css +1 -129
- package/cdn/modules/interactive.css +1 -94
- package/cdn/modules/leadtext.css +1 -38
- package/cdn/modules/list.css +1 -124
- package/cdn/modules/mark.css +1 -4
- package/cdn/modules/media.css +1 -12
- package/cdn/modules/meta.css +1 -46
- package/cdn/modules/pagination.css +1 -291
- package/cdn/modules/paragraph.css +1 -38
- package/cdn/modules/prose.css +1 -74
- package/cdn/modules/status-badge.css +1 -25
- package/cdn/modules/table-cell.css +1 -169
- package/cdn/modules/table.css +1 -30
- package/cdn/solid-styles.css +1 -961
- package/cdn-versioned/modules/chip.css +1 -23
- package/cdn-versioned/modules/container.css +1 -116
- package/cdn-versioned/modules/copyright.css +1 -128
- package/cdn-versioned/modules/display.css +1 -59
- package/cdn-versioned/modules/flag.css +1 -22
- package/cdn-versioned/modules/footnotes.css +1 -165
- package/cdn-versioned/modules/headline.css +1 -137
- package/cdn-versioned/modules/hidden-links.css +1 -129
- package/cdn-versioned/modules/interactive.css +1 -94
- package/cdn-versioned/modules/leadtext.css +1 -38
- package/cdn-versioned/modules/list.css +1 -124
- package/cdn-versioned/modules/mark.css +1 -4
- package/cdn-versioned/modules/media.css +1 -12
- package/cdn-versioned/modules/meta.css +1 -46
- package/cdn-versioned/modules/pagination.css +1 -291
- package/cdn-versioned/modules/paragraph.css +1 -38
- package/cdn-versioned/modules/prose.css +1 -74
- package/cdn-versioned/modules/status-badge.css +1 -25
- package/cdn-versioned/modules/table-cell.css +1 -169
- package/cdn-versioned/modules/table.css +1 -30
- package/cdn-versioned/solid-styles.css +1 -961
- package/dist/modules/chip.css +7 -6
- package/dist/modules/container.css +12 -11
- package/dist/modules/copyright.css +3 -2
- package/dist/modules/display.css +5 -4
- package/dist/modules/flag.css +6 -5
- package/dist/modules/footnotes.css +9 -8
- package/dist/modules/headline.css +6 -5
- package/dist/modules/hidden-links.css +2 -1
- package/dist/modules/interactive.css +12 -23
- package/dist/modules/leadtext.css +4 -3
- package/dist/modules/list.css +5 -4
- package/dist/modules/mark.css +2 -1
- package/dist/modules/media.css +3 -2
- package/dist/modules/meta.css +5 -4
- package/dist/modules/pagination.css +18 -17
- package/dist/modules/paragraph.css +4 -3
- package/dist/modules/prose.css +591 -12
- package/dist/modules/status-badge.css +6 -5
- package/dist/modules/table-cell.css +7 -6
- package/dist/modules/table.css +1 -0
- package/dist/solid-styles.css +635 -72
- package/dist-versioned/modules/chip.css +11 -10
- package/dist-versioned/modules/container.css +38 -37
- package/dist-versioned/modules/copyright.css +9 -8
- package/dist-versioned/modules/display.css +11 -10
- package/dist-versioned/modules/flag.css +10 -9
- package/dist-versioned/modules/footnotes.css +37 -36
- package/dist-versioned/modules/headline.css +34 -33
- package/dist-versioned/modules/hidden-links.css +6 -5
- package/dist-versioned/modules/interactive.css +28 -39
- package/dist-versioned/modules/leadtext.css +7 -6
- package/dist-versioned/modules/list.css +35 -34
- package/dist-versioned/modules/mark.css +3 -2
- package/dist-versioned/modules/media.css +7 -6
- package/dist-versioned/modules/meta.css +12 -11
- package/dist-versioned/modules/pagination.css +78 -77
- package/dist-versioned/modules/paragraph.css +7 -6
- package/dist-versioned/modules/prose.css +606 -27
- package/dist-versioned/modules/status-badge.css +12 -11
- package/dist-versioned/modules/table-cell.css +23 -22
- package/dist-versioned/modules/table.css +3 -2
- package/dist-versioned/solid-styles.css +801 -238
- package/package.json +1 -1
package/dist/modules/chip.css
CHANGED
|
@@ -1,24 +1,25 @@
|
|
|
1
1
|
/*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
|
|
2
|
+
@layer theme, base, components, utilities;
|
|
2
3
|
.sd-chip {
|
|
3
4
|
display: inline-flex;
|
|
4
5
|
height: var(--sd-spacing-6);
|
|
5
6
|
align-items: center;
|
|
6
7
|
overflow: hidden;
|
|
7
8
|
border-radius: var(--sd-radius);
|
|
8
|
-
background-color: var(--sd-color-background-primary-200
|
|
9
|
+
background-color: var(--sd-color-background-primary-200);
|
|
9
10
|
padding-inline: var(--sd-spacing-2);
|
|
10
11
|
font-size: var(--sd-text-sm);
|
|
11
12
|
line-height: var(--tw-leading, var(--text-sm--line-height, calc(1.25 / 0.875)));
|
|
12
13
|
white-space: nowrap;
|
|
13
|
-
color: var(--sd-color-text-black
|
|
14
|
+
color: var(--sd-color-text-black);
|
|
14
15
|
}
|
|
15
16
|
.sd-chip--primary-500 {
|
|
16
|
-
background-color: var(--sd-color-background-primary-500
|
|
17
|
-
color: var(--sd-color-text-white
|
|
17
|
+
background-color: var(--sd-color-background-primary-500);
|
|
18
|
+
color: var(--sd-color-text-white);
|
|
18
19
|
}
|
|
19
20
|
.sd-chip--primary-300 {
|
|
20
|
-
background-color: var(--sd-color-background-primary-300
|
|
21
|
+
background-color: var(--sd-color-background-primary-300);
|
|
21
22
|
}
|
|
22
23
|
.sd-chip--white {
|
|
23
|
-
background-color: var(--sd-color-background-white
|
|
24
|
+
background-color: var(--sd-color-background-white);
|
|
24
25
|
}
|
|
@@ -1,31 +1,32 @@
|
|
|
1
1
|
/*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
|
|
2
|
+
@layer theme, base, components, utilities;
|
|
2
3
|
.sd-container {
|
|
3
4
|
position: relative;
|
|
4
|
-
background-color: var(--sd-color-background-neutral-100
|
|
5
|
+
background-color: var(--sd-color-background-neutral-100);
|
|
5
6
|
padding-inline: var(--sd-spacing-10);
|
|
6
7
|
padding-block: var(--sd-spacing-8);
|
|
7
8
|
}
|
|
8
9
|
.sd-container--variant-primary-100 {
|
|
9
|
-
background-color: var(--sd-color-background-primary-100
|
|
10
|
+
background-color: var(--sd-color-background-primary-100);
|
|
10
11
|
}
|
|
11
12
|
.sd-container--variant-primary {
|
|
12
|
-
background-color: var(--sd-color-background-primary
|
|
13
|
+
background-color: var(--sd-color-background-primary);
|
|
13
14
|
}
|
|
14
15
|
.sd-container--variant-border-neutral-400 {
|
|
15
16
|
--tw-border-style: solid;
|
|
16
17
|
border-style: solid;
|
|
17
|
-
border-color: var(--sd-color-border-neutral-400
|
|
18
|
-
background-color: var(--sd-color-background-white
|
|
18
|
+
border-color: var(--sd-color-border-neutral-400);
|
|
19
|
+
background-color: var(--sd-color-background-white);
|
|
19
20
|
border-width: 1px;
|
|
20
21
|
}
|
|
21
22
|
.sd-container--variant-white {
|
|
22
|
-
background-color: var(--sd-color-background-white
|
|
23
|
+
background-color: var(--sd-color-background-white);
|
|
23
24
|
}
|
|
24
25
|
.sd-container--padding-sm {
|
|
25
26
|
padding-inline: var(--sd-spacing-6);
|
|
26
27
|
padding-block: var(--sd-spacing-4);
|
|
27
28
|
}
|
|
28
|
-
.sd-container
|
|
29
|
+
.sd-container{
|
|
29
30
|
--triangle-background: var(--sd-color-white);
|
|
30
31
|
}
|
|
31
32
|
.sd-container--triangle-top::before, .sd-container--triangle-right::before, .sd-container--triangle-bottom::before, .sd-container--triangle-left::before {
|
|
@@ -75,7 +76,7 @@
|
|
|
75
76
|
top: -1px;
|
|
76
77
|
}
|
|
77
78
|
.sd-container--triangle-top-border::before {
|
|
78
|
-
border-top-color: var(--sd-color-border-neutral-400
|
|
79
|
+
border-top-color: var(--sd-color-border-neutral-400);
|
|
79
80
|
left: calc(50% - 15px);
|
|
80
81
|
}
|
|
81
82
|
.sd-container--triangle-top-border::after {
|
|
@@ -86,7 +87,7 @@
|
|
|
86
87
|
right: -1px;
|
|
87
88
|
}
|
|
88
89
|
.sd-container--triangle-right-border::before {
|
|
89
|
-
border-right-color: var(--sd-color-border-neutral-400
|
|
90
|
+
border-right-color: var(--sd-color-border-neutral-400);
|
|
90
91
|
top: calc(50% - 15px);
|
|
91
92
|
}
|
|
92
93
|
.sd-container--triangle-right-border::after {
|
|
@@ -97,7 +98,7 @@
|
|
|
97
98
|
bottom: -1px;
|
|
98
99
|
}
|
|
99
100
|
.sd-container--triangle-bottom-border::before {
|
|
100
|
-
border-bottom-color: var(--sd-color-border-neutral-400
|
|
101
|
+
border-bottom-color: var(--sd-color-border-neutral-400);
|
|
101
102
|
left: calc(50% - 15px);
|
|
102
103
|
}
|
|
103
104
|
.sd-container--triangle-bottom-border::after {
|
|
@@ -108,7 +109,7 @@
|
|
|
108
109
|
left: -1px;
|
|
109
110
|
}
|
|
110
111
|
.sd-container--triangle-left-border::before {
|
|
111
|
-
border-left-color: var(--sd-color-border-neutral-400
|
|
112
|
+
border-left-color: var(--sd-color-border-neutral-400);
|
|
112
113
|
top: calc(50% - 15px);
|
|
113
114
|
}
|
|
114
115
|
.sd-container--triangle-left-border::after {
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
|
|
2
2
|
@layer properties;
|
|
3
|
+
@layer theme, base, components, utilities;
|
|
3
4
|
.sd-copyright {
|
|
4
5
|
position: relative;
|
|
5
6
|
--tw-blur: ;
|
|
@@ -21,7 +22,7 @@
|
|
|
21
22
|
padding-left: var(--sd-spacing-4);
|
|
22
23
|
font-size: var(--sd-text-sm);
|
|
23
24
|
line-height: var(--tw-leading, var(--text-sm--line-height, calc(1.25 / 0.875)));
|
|
24
|
-
color: var(--sd-color-text-white
|
|
25
|
+
color: var(--sd-color-text-white);
|
|
25
26
|
--tw-drop-shadow-size: drop-shadow(var(--sd-drop-shadow-sm));
|
|
26
27
|
--tw-drop-shadow: drop-shadow(var(--sd-drop-shadow-sm));
|
|
27
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,);
|
|
@@ -39,7 +40,7 @@
|
|
|
39
40
|
transform: rotate(180deg);
|
|
40
41
|
}
|
|
41
42
|
.sd-copyright--color-black::after {
|
|
42
|
-
color: var(--sd-color-text-black
|
|
43
|
+
color: var(--sd-color-text-black);
|
|
43
44
|
filter: drop-shadow(0 0 transparent);
|
|
44
45
|
}
|
|
45
46
|
.sd-copyright--no-shadow::after {
|
package/dist/modules/display.css
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
|
|
2
2
|
@layer properties;
|
|
3
|
+
@layer theme, base, components, utilities;
|
|
3
4
|
.sd-display {
|
|
4
5
|
font-size: var(--sd-text-3xl);
|
|
5
6
|
line-height: var(--tw-leading, var(--text-3xl--line-height, calc(2.25 / 1.875)));
|
|
@@ -7,7 +8,7 @@
|
|
|
7
8
|
line-height: var(--leading-tight, 1.25);
|
|
8
9
|
--tw-font-weight: var(--sd-font-weight-normal);
|
|
9
10
|
font-weight: var(--sd-font-weight-normal);
|
|
10
|
-
color: var(--sd-color-text-black
|
|
11
|
+
color: var(--sd-color-text-black);
|
|
11
12
|
}
|
|
12
13
|
@media (width >= 64rem) {
|
|
13
14
|
.sd-display {
|
|
@@ -22,7 +23,7 @@
|
|
|
22
23
|
line-height: var(--leading-tight, 1.25);
|
|
23
24
|
--tw-font-weight: var(--sd-font-weight-normal);
|
|
24
25
|
font-weight: var(--sd-font-weight-normal);
|
|
25
|
-
color: var(--sd-color-text-black
|
|
26
|
+
color: var(--sd-color-text-black);
|
|
26
27
|
}
|
|
27
28
|
.sd-display--size-3xl {
|
|
28
29
|
font-size: var(--sd-text-2xl);
|
|
@@ -31,7 +32,7 @@
|
|
|
31
32
|
line-height: var(--leading-tight, 1.25);
|
|
32
33
|
--tw-font-weight: var(--sd-font-weight-normal);
|
|
33
34
|
font-weight: var(--sd-font-weight-normal);
|
|
34
|
-
color: var(--sd-color-text-black
|
|
35
|
+
color: var(--sd-color-text-black);
|
|
35
36
|
}
|
|
36
37
|
@media (width >= 64rem) {
|
|
37
38
|
.sd-display--size-3xl {
|
|
@@ -40,7 +41,7 @@
|
|
|
40
41
|
}
|
|
41
42
|
}
|
|
42
43
|
.sd-display--inverted {
|
|
43
|
-
color: var(--sd-color-text-white
|
|
44
|
+
color: var(--sd-color-text-white);
|
|
44
45
|
}
|
|
45
46
|
@property --tw-leading {
|
|
46
47
|
syntax: "*";
|
package/dist/modules/flag.css
CHANGED
|
@@ -1,23 +1,24 @@
|
|
|
1
1
|
/*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
|
|
2
|
+
@layer theme, base, components, utilities;
|
|
2
3
|
.sd-flag {
|
|
3
4
|
display: inline-flex;
|
|
4
5
|
height: var(--sd-spacing-8);
|
|
5
6
|
align-items: center;
|
|
6
7
|
overflow: hidden;
|
|
7
|
-
background-color: var(--sd-color-background-neutral-200
|
|
8
|
+
background-color: var(--sd-color-background-neutral-200);
|
|
8
9
|
padding-inline: var(--sd-spacing-3);
|
|
9
10
|
font-size: var(--sd-text-sm);
|
|
10
11
|
line-height: var(--tw-leading, var(--text-sm--line-height, calc(1.25 / 0.875)));
|
|
11
12
|
white-space: nowrap;
|
|
12
|
-
color: var(--sd-color-text-black
|
|
13
|
+
color: var(--sd-color-text-black);
|
|
13
14
|
}
|
|
14
15
|
.sd-flag--neutral-500 {
|
|
15
16
|
background-color: var(--sd-flag--neutral-500-color-background, var(--sd-color-neutral-500));
|
|
16
|
-
color: var(--sd-color-text-black
|
|
17
|
+
color: var(--sd-color-text-black);
|
|
17
18
|
}
|
|
18
19
|
.sd-flag--neutral-300 {
|
|
19
|
-
background-color: var(--sd-color-background-neutral-300
|
|
20
|
+
background-color: var(--sd-color-background-neutral-300);
|
|
20
21
|
}
|
|
21
22
|
.sd-flag--white {
|
|
22
|
-
background-color: var(--sd-color-background-white
|
|
23
|
+
background-color: var(--sd-color-background-white);
|
|
23
24
|
}
|
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
/*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
|
|
2
2
|
@layer properties;
|
|
3
|
+
@layer theme, base, components, utilities;
|
|
3
4
|
.sd-footnotes {
|
|
4
5
|
margin-block: calc(var(--sd-spacing-1) * 0);
|
|
5
6
|
padding: calc(var(--sd-spacing-1) * 0);
|
|
6
7
|
text-align: left;
|
|
7
8
|
font-size: var(--sd-text-sm);
|
|
8
9
|
line-height: var(--tw-leading, var(--text-sm--line-height, calc(1.25 / 0.875)));
|
|
9
|
-
color: var(--sd-color-text-neutral-700
|
|
10
|
+
color: var(--sd-color-text-neutral-700);
|
|
10
11
|
}
|
|
11
12
|
.sd-footnotes :target {
|
|
12
|
-
background-color: var(--sd-color-background-neutral-200
|
|
13
|
+
background-color: var(--sd-color-background-neutral-200);
|
|
13
14
|
}
|
|
14
15
|
.sd-footnotes:is(ol) {
|
|
15
16
|
padding-inline-start: var(--sd-spacing-8);
|
|
@@ -68,17 +69,17 @@
|
|
|
68
69
|
list-style: '';
|
|
69
70
|
}
|
|
70
71
|
.sd-footnotes--inverted {
|
|
71
|
-
color: var(--sd-color-text-primary-400
|
|
72
|
+
color: var(--sd-color-text-primary-400);
|
|
72
73
|
}
|
|
73
74
|
.sd-footnotes--inverted :target {
|
|
74
75
|
background-color: var(--sd-footnotes--target--inverted-color-background, var(--sd-color-primary-800));
|
|
75
76
|
}
|
|
76
77
|
.sd-footnotes--inverted .sd-footnotes--marker::before {
|
|
77
|
-
color: var(--sd-color-text-white
|
|
78
|
+
color: var(--sd-color-text-white);
|
|
78
79
|
outline-color: var(--color-white, #fff) !important;
|
|
79
80
|
}
|
|
80
81
|
.sd-footnotes--inverted:is(.sd-footnotes--marker) {
|
|
81
|
-
color: var(--sd-color-text-white
|
|
82
|
+
color: var(--sd-color-text-white) !important;
|
|
82
83
|
outline-color: var(--color-white, #fff) !important;
|
|
83
84
|
}
|
|
84
85
|
.sd-footnotes--inverted:is(.sd-footnotes--marker):target {
|
|
@@ -95,7 +96,7 @@
|
|
|
95
96
|
font-size: x-small;
|
|
96
97
|
}
|
|
97
98
|
.sd-footnotes--marker:target {
|
|
98
|
-
background-color: var(--sd-color-background-neutral-200
|
|
99
|
+
background-color: var(--sd-color-background-neutral-200);
|
|
99
100
|
}
|
|
100
101
|
.sd-footnotes--marker:not(:has(a))::before {
|
|
101
102
|
content: '[ ';
|
|
@@ -129,10 +130,10 @@
|
|
|
129
130
|
outline-color: var(--sd-border-color-primary, var(--sd-color-primary));
|
|
130
131
|
}
|
|
131
132
|
.sd-footnotes--marker :is(a):link {
|
|
132
|
-
color: var(--sd-color-text-primary
|
|
133
|
+
color: var(--sd-color-text-primary);
|
|
133
134
|
}
|
|
134
135
|
.sd-footnotes--marker:link, .sd-footnotes--marker:visited {
|
|
135
|
-
color: var(--sd-color-text-primary
|
|
136
|
+
color: var(--sd-color-text-primary);
|
|
136
137
|
}
|
|
137
138
|
.sd-footnotes--marker:focus-visible {
|
|
138
139
|
border-radius: var(--sd-radius);
|
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
/*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
|
|
2
2
|
@layer properties;
|
|
3
|
+
@layer theme, base, components, utilities;
|
|
3
4
|
.sd-headline, .sd-prose :is(h1, h2, h3, h4, h5) {
|
|
4
5
|
display: flex;
|
|
5
6
|
--tw-font-weight: var(--sd-font-weight-bold);
|
|
6
7
|
font-weight: var(--sd-font-weight-bold);
|
|
7
|
-
color: var(--sd-color-text-primary
|
|
8
|
+
color: var(--sd-color-text-primary);
|
|
8
9
|
}
|
|
9
10
|
.sd-headline sd-icon, .sd-prose :is(h1, h2, h3, h4, h5) sd-icon {
|
|
10
11
|
flex-shrink: 0;
|
|
11
12
|
font-size: 3rem;
|
|
12
|
-
color: var(--sd-color-text-primary
|
|
13
|
+
color: var(--sd-color-text-primary);
|
|
13
14
|
}
|
|
14
15
|
@media (width >= 40rem) {
|
|
15
16
|
.sd-headline sd-icon, .sd-prose :is(h1, h2, h3, h4, h5) sd-icon {
|
|
@@ -60,7 +61,7 @@
|
|
|
60
61
|
}
|
|
61
62
|
.sd-headline.sd-headline--size-xl, .sd-headline.sd-headline--size-lg, .sd-headline.sd-headline--size-base, .sd-headline:is(h3, h4, h5):not(.sd-headline), .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-xl, .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-lg, .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-base, .sd-prose :is(h1, h2, h3, h4, h5):is(h3, h4, h5):not(.sd-headline) {
|
|
62
63
|
gap: var(--sd-spacing-2);
|
|
63
|
-
color: var(--sd-color-text-black
|
|
64
|
+
color: var(--sd-color-text-black);
|
|
64
65
|
}
|
|
65
66
|
.sd-headline.sd-headline--size-xl sd-icon, .sd-headline.sd-headline--size-lg sd-icon, .sd-headline.sd-headline--size-base sd-icon, .sd-headline:is(h3, h4, h5):not(.sd-headline) sd-icon, .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-xl sd-icon, .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-lg sd-icon, .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-base sd-icon, .sd-prose :is(h1, h2, h3, h4, h5):is(h3, h4, h5):not(.sd-headline) sd-icon {
|
|
66
67
|
font-size: 2rem;
|
|
@@ -115,10 +116,10 @@
|
|
|
115
116
|
margin-right: var(--sd-spacing-0\.5);
|
|
116
117
|
}
|
|
117
118
|
.sd-headline--inverted:not(#_), .sd-prose--inverted :is(h1, h2, h3, h4, h5):not(.sd-headline):not(#_) {
|
|
118
|
-
color: var(--sd-color-text-white
|
|
119
|
+
color: var(--sd-color-text-white);
|
|
119
120
|
}
|
|
120
121
|
.sd-headline--inverted:not(#_) sd-icon, .sd-prose--inverted :is(h1, h2, h3, h4, h5):not(.sd-headline):not(#_) sd-icon {
|
|
121
|
-
color: var(--sd-color-text-white
|
|
122
|
+
color: var(--sd-color-text-white);
|
|
122
123
|
}
|
|
123
124
|
@property --tw-font-weight {
|
|
124
125
|
syntax: "*";
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
|
|
2
2
|
@layer properties;
|
|
3
|
+
@layer theme, base, components, utilities;
|
|
3
4
|
:lang(en) {
|
|
4
5
|
--sd-hidden-links-title: 'Jump to';
|
|
5
6
|
}
|
|
@@ -25,7 +26,7 @@
|
|
|
25
26
|
.sd-hidden-links--multiple {
|
|
26
27
|
display: flex;
|
|
27
28
|
flex-direction: column;
|
|
28
|
-
background-color: var(--sd-color-background-white
|
|
29
|
+
background-color: var(--sd-color-background-white);
|
|
29
30
|
padding-inline: var(--sd-spacing-2);
|
|
30
31
|
padding-block: var(--sd-spacing-4);
|
|
31
32
|
--tw-shadow: var(--sd-shadow);
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
/*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
|
|
2
2
|
@layer properties;
|
|
3
|
+
@layer theme, base, components, utilities;
|
|
3
4
|
.sd-prose a--reset, .sd-interactive--reset {
|
|
4
5
|
all: unset;
|
|
5
6
|
outline: revert;
|
|
6
7
|
}
|
|
7
8
|
.sd-prose a, .sd-interactive{
|
|
8
9
|
cursor: pointer;
|
|
9
|
-
color: var(--sd-color-text-primary
|
|
10
|
+
color: var(--sd-color-text-primary);
|
|
10
11
|
text-decoration-line: underline;
|
|
11
12
|
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
12
13
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function, cubic-bezier(0.4, 0, 0.2, 1)));
|
|
@@ -17,13 +18,7 @@
|
|
|
17
18
|
transition-timing-function: var(--ease-in-out, cubic-bezier(0.4, 0, 0.2, 1));
|
|
18
19
|
}
|
|
19
20
|
.sd-prose a:hover:not([disabled]), .sd-interactive:hover:not([disabled]) {
|
|
20
|
-
color: var(--sd-color-text-primary-500
|
|
21
|
-
}
|
|
22
|
-
.sd-prose a:focus-visible, .sd-interactive:focus-visible {
|
|
23
|
-
outline-style: solid;
|
|
24
|
-
outline-offset: 2px;
|
|
25
|
-
outline-width: 2px;
|
|
26
|
-
outline-color: var(--outline-color-primary);
|
|
21
|
+
color: var(--sd-color-text-primary-500);
|
|
27
22
|
}
|
|
28
23
|
.sd-prose a:focus-visible, .sd-interactive:focus-visible {
|
|
29
24
|
outline-style: solid;
|
|
@@ -39,34 +34,28 @@
|
|
|
39
34
|
}
|
|
40
35
|
.sd-prose a--disabled, .sd-prose a[disabled], .sd-prose a[href=''], .sd-interactive--disabled, .sd-interactive[disabled], .sd-interactive[href=''] {
|
|
41
36
|
cursor: not-allowed;
|
|
42
|
-
color: var(--sd-color-text-neutral-500
|
|
37
|
+
color: var(--sd-color-text-neutral-500);
|
|
43
38
|
}
|
|
44
39
|
.sd-prose a--disabled:hover:not([disabled]), .sd-prose a[disabled]:hover:not([disabled]), .sd-prose a[href='']:hover:not([disabled]), .sd-interactive--disabled:hover:not([disabled]), .sd-interactive[disabled]:hover:not([disabled]), .sd-interactive[href='']:hover:not([disabled]) {
|
|
45
|
-
color: var(--sd-color-text-neutral-500
|
|
40
|
+
color: var(--sd-color-text-neutral-500);
|
|
46
41
|
}
|
|
47
42
|
.sd-prose a--disabled:active:not([disabled]), .sd-prose a[disabled]:active:not([disabled]), .sd-prose a[href='']:active:not([disabled]), .sd-interactive--disabled:active:not([disabled]), .sd-interactive[disabled]:active:not([disabled]), .sd-interactive[href='']:active:not([disabled]) {
|
|
48
|
-
color: var(--sd-color-text-neutral-500
|
|
43
|
+
color: var(--sd-color-text-neutral-500);
|
|
49
44
|
}
|
|
50
45
|
.sd-prose a--disabled.sd-interactive--inverted, .sd-prose a[disabled].sd-interactive--inverted, .sd-prose a[href=''].sd-interactive--inverted, .sd-interactive--disabled.sd-interactive--inverted, .sd-interactive[disabled].sd-interactive--inverted, .sd-interactive[href=''].sd-interactive--inverted {
|
|
51
|
-
color: var(--sd-color-text-neutral-600
|
|
46
|
+
color: var(--sd-color-text-neutral-600);
|
|
52
47
|
}
|
|
53
48
|
.sd-prose a--disabled.sd-interactive--inverted:hover:not([disabled]), .sd-prose a[disabled].sd-interactive--inverted:hover:not([disabled]), .sd-prose a[href=''].sd-interactive--inverted:hover:not([disabled]), .sd-interactive--disabled.sd-interactive--inverted:hover:not([disabled]), .sd-interactive[disabled].sd-interactive--inverted:hover:not([disabled]), .sd-interactive[href=''].sd-interactive--inverted:hover:not([disabled]) {
|
|
54
|
-
color: var(--sd-color-text-neutral-600
|
|
49
|
+
color: var(--sd-color-text-neutral-600);
|
|
55
50
|
}
|
|
56
51
|
.sd-prose a--disabled.sd-interactive--inverted:active:not([disabled]), .sd-prose a[disabled].sd-interactive--inverted:active:not([disabled]), .sd-prose a[href=''].sd-interactive--inverted:active:not([disabled]), .sd-interactive--disabled.sd-interactive--inverted:active:not([disabled]), .sd-interactive[disabled].sd-interactive--inverted:active:not([disabled]), .sd-interactive[href=''].sd-interactive--inverted:active:not([disabled]) {
|
|
57
|
-
color: var(--sd-color-text-neutral-600
|
|
52
|
+
color: var(--sd-color-text-neutral-600);
|
|
58
53
|
}
|
|
59
54
|
.sd-prose--inverted a, .sd-interactive--inverted {
|
|
60
|
-
color: var(--sd-color-text-white
|
|
55
|
+
color: var(--sd-color-text-white);
|
|
61
56
|
}
|
|
62
57
|
.sd-prose--inverted a:hover:not([disabled]), .sd-interactive--inverted:hover:not([disabled]) {
|
|
63
|
-
color: var(--sd-color-text-primary-200
|
|
64
|
-
}
|
|
65
|
-
.sd-prose--inverted a:focus-visible, .sd-interactive--inverted:focus-visible {
|
|
66
|
-
outline-style: solid;
|
|
67
|
-
outline-offset: 2px;
|
|
68
|
-
outline-width: 2px;
|
|
69
|
-
outline-color: var(--outline-color-primary);
|
|
58
|
+
color: var(--sd-color-text-primary-200);
|
|
70
59
|
}
|
|
71
60
|
.sd-prose--inverted a:focus-visible, .sd-interactive--inverted:focus-visible {
|
|
72
61
|
outline-style: solid;
|
|
@@ -75,7 +64,7 @@
|
|
|
75
64
|
outline-color: var(--outline-color-primary);
|
|
76
65
|
}
|
|
77
66
|
.sd-prose--inverted a:active:not([disabled]), .sd-interactive--inverted:active:not([disabled]) {
|
|
78
|
-
color: var(--sd-color-text-primary-400
|
|
67
|
+
color: var(--sd-color-text-primary-400);
|
|
79
68
|
}
|
|
80
69
|
@property --tw-duration {
|
|
81
70
|
syntax: "*";
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
|
|
2
2
|
@layer properties;
|
|
3
|
+
@layer theme, base, components, utilities;
|
|
3
4
|
.sd-prose > .sd-leadtext, .sd-leadtext {
|
|
4
5
|
font-size: var(--sd-text-xl);
|
|
5
6
|
line-height: var(--tw-leading, var(--text-xl--line-height, calc(1.75 / 1.25)));
|
|
@@ -7,7 +8,7 @@
|
|
|
7
8
|
line-height: var(--leading-normal, 1.5);
|
|
8
9
|
--tw-font-weight: var(--sd-font-weight-normal);
|
|
9
10
|
font-weight: var(--sd-font-weight-normal);
|
|
10
|
-
color: var(--sd-color-text-black
|
|
11
|
+
color: var(--sd-color-text-black);
|
|
11
12
|
}
|
|
12
13
|
.sd-prose > .sd-leadtext--size-lg, .sd-leadtext--size-lg {
|
|
13
14
|
font-size: var(--sd-text-lg);
|
|
@@ -16,10 +17,10 @@
|
|
|
16
17
|
line-height: var(--leading-normal, 1.5);
|
|
17
18
|
--tw-font-weight: var(--sd-font-weight-normal);
|
|
18
19
|
font-weight: var(--sd-font-weight-normal);
|
|
19
|
-
color: var(--sd-color-text-black
|
|
20
|
+
color: var(--sd-color-text-black);
|
|
20
21
|
}
|
|
21
22
|
.sd-prose--inverted > .sd-leadtext, .sd-leadtext--inverted {
|
|
22
|
-
color: var(--sd-color-text-white
|
|
23
|
+
color: var(--sd-color-text-white);
|
|
23
24
|
}
|
|
24
25
|
@property --tw-leading {
|
|
25
26
|
syntax: "*";
|
package/dist/modules/list.css
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
|
|
2
2
|
@layer properties;
|
|
3
|
+
@layer theme, base, components, utilities;
|
|
3
4
|
.sd-list:not(.sd-list--icon), .sd-prose > :is(ol, ul) {
|
|
4
5
|
list-style-position: revert;
|
|
5
6
|
list-style-type: revert;
|
|
@@ -74,7 +75,7 @@
|
|
|
74
75
|
text-align: left;
|
|
75
76
|
}
|
|
76
77
|
.sd-list--icon li sd-icon:first-of-type, .sd-list--icon li .sd-list--icon__icon:first-of-type {
|
|
77
|
-
color: var(--sd-color-text-white
|
|
78
|
+
color: var(--sd-color-text-white);
|
|
78
79
|
}
|
|
79
80
|
.sd-list--icon{
|
|
80
81
|
list-style-type: '';
|
|
@@ -94,7 +95,7 @@
|
|
|
94
95
|
left: calc(var(--sd-spacing-1) * 0);
|
|
95
96
|
font-size: var(--sd-text-3xl);
|
|
96
97
|
line-height: var(--tw-leading, var(--text-3xl--line-height, calc(2.25 / 1.875)));
|
|
97
|
-
color: var(--sd-color-text-primary
|
|
98
|
+
color: var(--sd-color-text-primary);
|
|
98
99
|
}
|
|
99
100
|
.sd-list--icon.sd-list--horizontal {
|
|
100
101
|
display: flex;
|
|
@@ -107,10 +108,10 @@
|
|
|
107
108
|
margin-right: var(--sd-spacing-8);
|
|
108
109
|
}
|
|
109
110
|
.sd-list--inverted, .sd-prose--inverted > :is(ol, ul) {
|
|
110
|
-
color: var(--sd-color-text-white
|
|
111
|
+
color: var(--sd-color-text-white);
|
|
111
112
|
}
|
|
112
113
|
.sd-list--inverted li > sd-icon:first-of-type, .sd-list--inverted li > .sd-list--icon__icon:first-of-type, .sd-prose--inverted > :is(ol, ul) li > sd-icon:first-of-type, .sd-prose--inverted > :is(ol, ul) li > .sd-list--icon__icon:first-of-type {
|
|
113
|
-
color: var(--sd-color-text-white
|
|
114
|
+
color: var(--sd-color-text-white);
|
|
114
115
|
}
|
|
115
116
|
@property --tw-leading {
|
|
116
117
|
syntax: "*";
|
package/dist/modules/mark.css
CHANGED
package/dist/modules/media.css
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
/*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
|
|
2
|
+
@layer theme, base, components, utilities;
|
|
2
3
|
.sd-prose figure, figure.sd-media {
|
|
3
4
|
margin: calc(var(--sd-spacing-1) * 0);
|
|
4
5
|
}
|
|
5
6
|
.sd-prose figure figcaption, figure.sd-media figcaption {
|
|
6
|
-
color: var(--sd-color-text-neutral-700
|
|
7
|
+
color: var(--sd-color-text-neutral-700);
|
|
7
8
|
}
|
|
8
9
|
.sd-prose figure figcaption:last-child, figure.sd-media figcaption:last-child {
|
|
9
10
|
margin-top: var(--sd-spacing-3);
|
|
10
11
|
}
|
|
11
12
|
.sd-prose--inverted figure figcaption, figure.sd-media--inverted figcaption {
|
|
12
|
-
color: var(--sd-color-text-primary-400
|
|
13
|
+
color: var(--sd-color-text-primary-400);
|
|
13
14
|
}
|
package/dist/modules/meta.css
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
|
|
2
2
|
@layer properties;
|
|
3
|
+
@layer theme, base, components, utilities;
|
|
3
4
|
.sd-meta {
|
|
4
5
|
font-size: var(--sd-text-base);
|
|
5
6
|
line-height: var(--tw-leading, var(--text-base--line-height, calc(1.5 / 1)));
|
|
@@ -7,20 +8,20 @@
|
|
|
7
8
|
line-height: 1;
|
|
8
9
|
--tw-font-weight: var(--sd-font-weight-normal);
|
|
9
10
|
font-weight: var(--sd-font-weight-normal);
|
|
10
|
-
color: var(--sd-color-text-black
|
|
11
|
+
color: var(--sd-color-text-black);
|
|
11
12
|
}
|
|
12
13
|
.sd-meta--size-sm {
|
|
13
14
|
font-size: var(--sd-text-sm);
|
|
14
15
|
line-height: var(--tw-leading, var(--text-sm--line-height, calc(1.25 / 0.875)));
|
|
15
16
|
}
|
|
16
17
|
.sd-meta--light {
|
|
17
|
-
color: var(--sd-color-text-neutral-700
|
|
18
|
+
color: var(--sd-color-text-neutral-700);
|
|
18
19
|
}
|
|
19
20
|
.sd-meta--inverted {
|
|
20
|
-
color: var(--sd-color-text-white
|
|
21
|
+
color: var(--sd-color-text-white);
|
|
21
22
|
}
|
|
22
23
|
.sd-meta--inverted.sd-meta--light {
|
|
23
|
-
color: var(--sd-color-text-primary-400
|
|
24
|
+
color: var(--sd-color-text-primary-400);
|
|
24
25
|
}
|
|
25
26
|
.sd-meta--pipe::after {
|
|
26
27
|
content: '|';
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
|
|
2
2
|
@layer properties;
|
|
3
|
+
@layer theme, base, components, utilities;
|
|
3
4
|
.sd-pagination > :not(ul) {
|
|
4
5
|
position: absolute;
|
|
5
6
|
height: var(--sd-spacing-0\.25);
|
|
@@ -29,17 +30,17 @@
|
|
|
29
30
|
display: flex;
|
|
30
31
|
align-items: center;
|
|
31
32
|
justify-content: center;
|
|
32
|
-
color: var(--sd-color-text-primary
|
|
33
|
+
color: var(--sd-color-text-primary);
|
|
33
34
|
text-decoration-line: none;
|
|
34
35
|
transition-property: color;
|
|
35
36
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function, cubic-bezier(0.4, 0, 0.2, 1)));
|
|
36
37
|
transition-duration: var(--tw-duration, var(--default-transition-duration, 150ms));
|
|
37
38
|
}
|
|
38
39
|
.sd-pagination ul li a:hover:not([disabled]), .sd-pagination ul li button:hover:not([disabled]) {
|
|
39
|
-
color: var(--sd-color-text-primary-500
|
|
40
|
+
color: var(--sd-color-text-primary-500);
|
|
40
41
|
}
|
|
41
42
|
.sd-pagination ul li a:active:not([disabled]), .sd-pagination ul li button:active:not([disabled]) {
|
|
42
|
-
color: var(--sd-color-text-primary-800
|
|
43
|
+
color: var(--sd-color-text-primary-800);
|
|
43
44
|
}
|
|
44
45
|
.sd-pagination ul li a:focus-visible, .sd-pagination ul li button:focus-visible {
|
|
45
46
|
outline-width: 1px;
|
|
@@ -74,20 +75,20 @@
|
|
|
74
75
|
border-bottom-color: transparent;
|
|
75
76
|
}
|
|
76
77
|
.sd-pagination ul li:not(:first-child):not(:last-child) a[aria-current], .sd-pagination ul li:not(:first-child):not(:last-child) button[aria-current] {
|
|
77
|
-
border-bottom-color: var(--sd-color-border-accent
|
|
78
|
+
border-bottom-color: var(--sd-color-border-accent);
|
|
78
79
|
}
|
|
79
80
|
.sd-pagination ul li a[aria-current], .sd-pagination ul li button[aria-current] {
|
|
80
|
-
color: var(--sd-color-text-black
|
|
81
|
+
color: var(--sd-color-text-black);
|
|
81
82
|
}
|
|
82
83
|
.sd-pagination ul li a[aria-current]:hover:not([disabled]), .sd-pagination ul li button[aria-current]:hover:not([disabled]) {
|
|
83
|
-
color: var(--sd-color-text-black
|
|
84
|
+
color: var(--sd-color-text-black);
|
|
84
85
|
}
|
|
85
86
|
.sd-pagination ul li:first-child:has(a:not([href])) a, .sd-pagination ul li:last-child:has(a:not([href])) a, .sd-pagination ul li:first-child:has(button[disabled]) button, .sd-pagination ul li:last-child:has(button[disabled]) button {
|
|
86
87
|
cursor: not-allowed;
|
|
87
|
-
color: var(--sd-color-text-neutral-500
|
|
88
|
+
color: var(--sd-color-text-neutral-500);
|
|
88
89
|
}
|
|
89
90
|
.sd-pagination ul li:first-child:has(a:not([href])) a:hover:not([disabled]), .sd-pagination ul li:last-child:has(a:not([href])) a:hover:not([disabled]), .sd-pagination ul li:first-child:has(button[disabled]) button:hover:not([disabled]), .sd-pagination ul li:last-child:has(button[disabled]) button:hover:not([disabled]) {
|
|
90
|
-
color: var(--sd-color-text-neutral-500
|
|
91
|
+
color: var(--sd-color-text-neutral-500);
|
|
91
92
|
}
|
|
92
93
|
.sd-pagination:not(.sd-pagination--simple) ul li:not(:first-child):not(:last-child):not(:has(a[aria-current], button[aria-current])) {
|
|
93
94
|
pointer-events: none;
|
|
@@ -192,7 +193,7 @@
|
|
|
192
193
|
width: var(--sd-spacing-8);
|
|
193
194
|
border-bottom-style: var(--tw-border-style);
|
|
194
195
|
border-bottom-width: var(--sd-border-width-2);
|
|
195
|
-
border-bottom-color: var(--sd-color-border-accent
|
|
196
|
+
border-bottom-color: var(--sd-color-border-accent);
|
|
196
197
|
}
|
|
197
198
|
.sd-pagination--simple ul li:nth-child(2)::after {
|
|
198
199
|
content: var(--tw-content);
|
|
@@ -221,32 +222,32 @@
|
|
|
221
222
|
}
|
|
222
223
|
.sd-pagination--inverted ul li::after {
|
|
223
224
|
content: var(--tw-content);
|
|
224
|
-
color: var(--sd-color-text-white
|
|
225
|
+
color: var(--sd-color-text-white);
|
|
225
226
|
}
|
|
226
227
|
.sd-pagination--inverted ul li:first-child:has(a:not([href])) a, .sd-pagination--inverted ul li:last-child:has(a:not([href])) a, .sd-pagination--inverted ul li:first-child:has(button[disabled]) button, .sd-pagination--inverted ul li:last-child:has(button[disabled]) button {
|
|
227
|
-
color: var(--sd-color-text-neutral-600
|
|
228
|
+
color: var(--sd-color-text-neutral-600);
|
|
228
229
|
}
|
|
229
230
|
.sd-pagination--inverted ul li:first-child:has(a:not([href])) a:hover:not([disabled]), .sd-pagination--inverted ul li:last-child:has(a:not([href])) a:hover:not([disabled]), .sd-pagination--inverted ul li:first-child:has(button[disabled]) button:hover:not([disabled]), .sd-pagination--inverted ul li:last-child:has(button[disabled]) button:hover:not([disabled]) {
|
|
230
|
-
color: var(--sd-color-text-neutral-600
|
|
231
|
+
color: var(--sd-color-text-neutral-600);
|
|
231
232
|
}
|
|
232
233
|
.sd-pagination--inverted ul li a, .sd-pagination--inverted ul li a[aria-current], .sd-pagination--inverted ul li button, .sd-pagination--inverted ul li button[aria-current] {
|
|
233
|
-
color: var(--sd-color-text-white
|
|
234
|
+
color: var(--sd-color-text-white);
|
|
234
235
|
}
|
|
235
236
|
.sd-pagination--inverted ul li a:hover:not([disabled]), .sd-pagination--inverted ul li a[aria-current]:hover:not([disabled]), .sd-pagination--inverted ul li button:hover:not([disabled]), .sd-pagination--inverted ul li button[aria-current]:hover:not([disabled]) {
|
|
236
|
-
color: var(--sd-color-text-primary-200
|
|
237
|
+
color: var(--sd-color-text-primary-200);
|
|
237
238
|
}
|
|
238
239
|
.sd-pagination--inverted ul li a:active:not([disabled]), .sd-pagination--inverted ul li a[aria-current]:active:not([disabled]), .sd-pagination--inverted ul li button:active:not([disabled]), .sd-pagination--inverted ul li button[aria-current]:active:not([disabled]) {
|
|
239
|
-
color: var(--sd-color-text-primary-400
|
|
240
|
+
color: var(--sd-color-text-primary-400);
|
|
240
241
|
}
|
|
241
242
|
.sd-pagination--inverted ul li a:focus-visible, .sd-pagination--inverted ul li a[aria-current]:focus-visible, .sd-pagination--inverted ul li button:focus-visible, .sd-pagination--inverted ul li button[aria-current]:focus-visible {
|
|
242
243
|
outline-color: var(--color-white, #fff);
|
|
243
244
|
}
|
|
244
245
|
.sd-pagination--inverted.sd-pagination--simple ul li {
|
|
245
|
-
color: var(--sd-color-text-white
|
|
246
|
+
color: var(--sd-color-text-white);
|
|
246
247
|
}
|
|
247
248
|
.sd-pagination--inverted.sd-pagination--simple ul li::after {
|
|
248
249
|
content: var(--tw-content);
|
|
249
|
-
color: var(--sd-color-text-white
|
|
250
|
+
color: var(--sd-color-text-white);
|
|
250
251
|
}
|
|
251
252
|
@property --tw-border-style {
|
|
252
253
|
syntax: "*";
|