@solid-design-system/styles 1.0.0 → 1.0.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.
Files changed (40) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/cdn-versioned/modules/chip.css +1 -1
  3. package/cdn-versioned/modules/container.css +1 -1
  4. package/cdn-versioned/modules/copyright.css +1 -1
  5. package/cdn-versioned/modules/display.css +1 -1
  6. package/cdn-versioned/modules/flag.css +1 -1
  7. package/cdn-versioned/modules/footnotes.css +1 -1
  8. package/cdn-versioned/modules/headline.css +1 -1
  9. package/cdn-versioned/modules/hidden-links.css +1 -1
  10. package/cdn-versioned/modules/interactive.css +1 -1
  11. package/cdn-versioned/modules/leadtext.css +1 -1
  12. package/cdn-versioned/modules/list.css +1 -1
  13. package/cdn-versioned/modules/mark.css +1 -1
  14. package/cdn-versioned/modules/media.css +1 -1
  15. package/cdn-versioned/modules/meta.css +1 -1
  16. package/cdn-versioned/modules/paragraph.css +1 -1
  17. package/cdn-versioned/modules/prose.css +1 -1
  18. package/cdn-versioned/modules/table-cell.css +1 -1
  19. package/cdn-versioned/modules/table.css +1 -1
  20. package/cdn-versioned/solid-styles.css +1 -1
  21. package/dist-versioned/modules/chip.css +6 -6
  22. package/dist-versioned/modules/container.css +45 -45
  23. package/dist-versioned/modules/copyright.css +11 -11
  24. package/dist-versioned/modules/display.css +9 -9
  25. package/dist-versioned/modules/flag.css +6 -6
  26. package/dist-versioned/modules/footnotes.css +7 -7
  27. package/dist-versioned/modules/headline.css +67 -67
  28. package/dist-versioned/modules/hidden-links.css +7 -7
  29. package/dist-versioned/modules/interactive.css +38 -38
  30. package/dist-versioned/modules/leadtext.css +8 -8
  31. package/dist-versioned/modules/list.css +47 -47
  32. package/dist-versioned/modules/mark.css +2 -2
  33. package/dist-versioned/modules/media.css +7 -7
  34. package/dist-versioned/modules/meta.css +12 -12
  35. package/dist-versioned/modules/paragraph.css +8 -8
  36. package/dist-versioned/modules/prose.css +231 -231
  37. package/dist-versioned/modules/table-cell.css +23 -23
  38. package/dist-versioned/modules/table.css +4 -4
  39. package/dist-versioned/solid-styles.css +327 -327
  40. package/package.json +5 -5
@@ -1,12 +1,12 @@
1
1
  /**
2
2
  * Generates basic styles for chip elements.
3
- * @name sd-1-0-0-chip
3
+ * @name sd-1-0-1-chip
4
4
  * @status stable
5
5
  * @since 1.30.0
6
- * @variant { primary-300 | primary-500 | white } sd-1-0-0-chip--...
6
+ * @variant { primary-300 | primary-500 | white } sd-1-0-1-chip--...
7
7
  */
8
8
 
9
- .sd-1-0-0-chip {
9
+ .sd-1-0-1-chip {
10
10
  display: inline-flex;
11
11
  height: var(--sd-spacing-6, 1.5rem) /* 24px */;
12
12
  align-items: center;
@@ -22,34 +22,34 @@
22
22
  color: rgb(var(--sd-color-black, 24 24 24) / var(--tw-text-opacity, 1)) /* Default text color */;
23
23
  }
24
24
 
25
- .sd-1-0-0-chip--primary-500 {
25
+ .sd-1-0-1-chip--primary-500 {
26
26
 
27
27
  background-color: rgb(var(--sd-color-primary-500, 70 109 175) / var(--tw-bg-opacity, 1)) /* Used for hover interaction */;
28
28
 
29
29
  color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */;
30
30
  }
31
31
 
32
- .sd-1-0-0-chip--primary-300 {
32
+ .sd-1-0-1-chip--primary-300 {
33
33
 
34
34
  background-color: rgb(var(--sd-color-primary-300, 200 213 231) / var(--tw-bg-opacity, 1)) /* Used for chip background */;
35
35
  }
36
36
 
37
- .sd-1-0-0-chip--white {
37
+ .sd-1-0-1-chip--white {
38
38
 
39
39
  background-color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-bg-opacity, 1)) /* Default background color (light mode) 
Used for inverted button */;
40
40
  }
41
41
 
42
42
  /**
43
43
  * Container lets users delimit and highlight a piece of content. The user has no interaction with it, it is merely a visual element that influences the flow of the page.
44
- * @name sd-1-0-0-container
44
+ * @name sd-1-0-1-container
45
45
  * @status stable
46
46
  * @since 1.30.0
47
- * @variant { primary-100 | primary | border-neutral-400 | white } sd-1-0-0-container--variant-... Defines the background color and border of sd-1-0-0-container.
48
- * @variant { sm } sd-1-0-0-container--padding-... Defines the padding of sd-1-0-0-container. This makes it adaptable to both small and large screens.
49
- * @variant { top | right | bottom | left } sd-1-0-0-container--triangle-... Defines an optional triangle cut-out for sd-1-0-0-container. This allows for an indentation resembling an arrow on any side of the container. CSS Property `triangle-background` defines the background color of the cut-out.
47
+ * @variant { primary-100 | primary | border-neutral-400 | white } sd-1-0-1-container--variant-... Defines the background color and border of sd-1-0-1-container.
48
+ * @variant { sm } sd-1-0-1-container--padding-... Defines the padding of sd-1-0-1-container. This makes it adaptable to both small and large screens.
49
+ * @variant { top | right | bottom | left } sd-1-0-1-container--triangle-... Defines an optional triangle cut-out for sd-1-0-1-container. This allows for an indentation resembling an arrow on any side of the container. CSS Property `triangle-background` defines the background color of the cut-out.
50
50
  */
51
51
 
52
- .sd-1-0-0-container {
52
+ .sd-1-0-1-container {
53
53
  position: relative;
54
54
 
55
55
  background-color: rgb(var(--sd-color-neutral-100, 246 246 246) / var(--tw-bg-opacity, 1)) /* Additional background color (light mode) */;
@@ -59,18 +59,18 @@
59
59
  padding-bottom: var(--sd-spacing-8, 2rem) /* 32px */;
60
60
  }
61
61
 
62
- .sd-1-0-0-container--variant-primary-100 {
62
+ .sd-1-0-1-container--variant-primary-100 {
63
63
 
64
64
  background-color: rgb(var(--sd-color-primary-100, 236 240 249) / var(--tw-bg-opacity, 1)) /* Additional background color (light mode) */;
65
65
  }
66
66
 
67
- .sd-1-0-0-container--variant-primary {
67
+ .sd-1-0-1-container--variant-primary {
68
68
 
69
69
  background-color: rgb(var(--sd-color-primary, 0 53 142) / var(--tw-bg-opacity, 1)) /* Inverted background color (light mode)
70
70
  Used for button */;
71
71
  }
72
72
 
73
- .sd-1-0-0-container--variant-border-neutral-400 {
73
+ .sd-1-0-1-container--variant-border-neutral-400 {
74
74
  border-style: solid;
75
75
  --tw-border-opacity: 1;
76
76
  border-color: rgb(var(--sd-color-neutral-400, 195 195 195) / var(--tw-border-opacity, 1)) /* Default border color.
@@ -80,27 +80,27 @@ Used for divider, teaser, container, ... */;
80
80
  border-width: 1px;
81
81
  }
82
82
 
83
- .sd-1-0-0-container--variant-white {
83
+ .sd-1-0-1-container--variant-white {
84
84
 
85
85
  background-color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-bg-opacity, 1)) /* Default background color (light mode) 
Used for inverted button */;
86
86
  }
87
87
 
88
- .sd-1-0-0-container--padding-sm {
88
+ .sd-1-0-1-container--padding-sm {
89
89
  padding-left: var(--sd-spacing-6, 1.5rem) /* 24px */;
90
90
  padding-right: var(--sd-spacing-6, 1.5rem) /* 24px */;
91
91
  padding-top: var(--sd-spacing-4, 1rem) /* 16px */;
92
92
  padding-bottom: var(--sd-spacing-4, 1rem) /* 16px */;
93
93
  }
94
94
 
95
- .sd-1-0-0-container {
95
+ .sd-1-0-1-container {
96
96
 
97
97
  --triangle-background: white;
98
98
  }
99
99
 
100
- .sd-1-0-0-container--triangle-top::before,
101
- .sd-1-0-0-container--triangle-right::before,
102
- .sd-1-0-0-container--triangle-bottom::before,
103
- .sd-1-0-0-container--triangle-left::before {
100
+ .sd-1-0-1-container--triangle-top::before,
101
+ .sd-1-0-1-container--triangle-right::before,
102
+ .sd-1-0-1-container--triangle-bottom::before,
103
+ .sd-1-0-1-container--triangle-left::before {
104
104
  position: absolute;
105
105
  display: block;
106
106
  border-style: solid;
@@ -109,38 +109,38 @@ Used for divider, teaser, container, ... */;
109
109
  content: '';
110
110
  }
111
111
 
112
- .sd-1-0-0-container--triangle-top::before {
112
+ .sd-1-0-1-container--triangle-top::before {
113
113
  top: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
114
114
  left: calc(50% - 14px);
115
115
  border-top-color: var(--triangle-background);
116
116
  }
117
117
 
118
- .sd-1-0-0-container--triangle-right::before {
118
+ .sd-1-0-1-container--triangle-right::before {
119
119
  right: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
120
120
  top: calc(50% - 14px);
121
121
  border-right-color: var(--triangle-background);
122
122
  }
123
123
 
124
- .sd-1-0-0-container--triangle-bottom::before {
124
+ .sd-1-0-1-container--triangle-bottom::before {
125
125
  bottom: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
126
126
  left: calc(50% - 14px);
127
127
  border-bottom-color: var(--triangle-background);
128
128
  }
129
129
 
130
- .sd-1-0-0-container--triangle-left::before {
130
+ .sd-1-0-1-container--triangle-left::before {
131
131
  left: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
132
132
  top: calc(50% - 14px);
133
133
  border-left-color: var(--triangle-background);
134
134
  }
135
135
 
136
- .sd-1-0-0-container--triangle-top-border::after,
137
- .sd-1-0-0-container--triangle-top-border::before,
138
- .sd-1-0-0-container--triangle-right-border::after,
139
- .sd-1-0-0-container--triangle-right-border::before,
140
- .sd-1-0-0-container--triangle-bottom-border::after,
141
- .sd-1-0-0-container--triangle-bottom-border::before,
142
- .sd-1-0-0-container--triangle-left-border::after,
143
- .sd-1-0-0-container--triangle-left-border::before {
136
+ .sd-1-0-1-container--triangle-top-border::after,
137
+ .sd-1-0-1-container--triangle-top-border::before,
138
+ .sd-1-0-1-container--triangle-right-border::after,
139
+ .sd-1-0-1-container--triangle-right-border::before,
140
+ .sd-1-0-1-container--triangle-bottom-border::after,
141
+ .sd-1-0-1-container--triangle-bottom-border::before,
142
+ .sd-1-0-1-container--triangle-left-border::after,
143
+ .sd-1-0-1-container--triangle-left-border::before {
144
144
  position: absolute;
145
145
  display: block;
146
146
  border-style: solid;
@@ -148,98 +148,98 @@ Used for divider, teaser, container, ... */;
148
148
  content: '';
149
149
  }
150
150
 
151
- .sd-1-0-0-container--triangle-top-border::after, .sd-1-0-0-container--triangle-right-border::after, .sd-1-0-0-container--triangle-bottom-border::after, .sd-1-0-0-container--triangle-left-border::after {
151
+ .sd-1-0-1-container--triangle-top-border::after, .sd-1-0-1-container--triangle-right-border::after, .sd-1-0-1-container--triangle-bottom-border::after, .sd-1-0-1-container--triangle-left-border::after {
152
152
  border-width: 14px;
153
153
  }
154
154
 
155
- .sd-1-0-0-container--triangle-top-border::before, .sd-1-0-0-container--triangle-right-border::before, .sd-1-0-0-container--triangle-bottom-border::before, .sd-1-0-0-container--triangle-left-border::before {
155
+ .sd-1-0-1-container--triangle-top-border::before, .sd-1-0-1-container--triangle-right-border::before, .sd-1-0-1-container--triangle-bottom-border::before, .sd-1-0-1-container--triangle-left-border::before {
156
156
  border-width: 15px;
157
157
  }
158
158
 
159
- .sd-1-0-0-container--triangle-top-border::after,
160
- .sd-1-0-0-container--triangle-top-border::before {
159
+ .sd-1-0-1-container--triangle-top-border::after,
160
+ .sd-1-0-1-container--triangle-top-border::before {
161
161
  top: -1px;
162
162
  }
163
163
 
164
- .sd-1-0-0-container--triangle-top-border::before {
164
+ .sd-1-0-1-container--triangle-top-border::before {
165
165
  --tw-border-opacity: 1;
166
166
  border-top-color: rgb(var(--sd-color-neutral-400, 195 195 195) / var(--tw-border-opacity, 1)) /* Default border color.
167
167
  Used for divider, teaser, container, ... */;
168
168
  left: calc(50% - 15px);
169
169
  }
170
170
 
171
- .sd-1-0-0-container--triangle-top-border::after {
171
+ .sd-1-0-1-container--triangle-top-border::after {
172
172
  left: calc(50% - 14px);
173
173
  border-top-color: var(--triangle-background);
174
174
  }
175
175
 
176
- .sd-1-0-0-container--triangle-right-border::after,
177
- .sd-1-0-0-container--triangle-right-border::before {
176
+ .sd-1-0-1-container--triangle-right-border::after,
177
+ .sd-1-0-1-container--triangle-right-border::before {
178
178
  right: -1px;
179
179
  }
180
180
 
181
- .sd-1-0-0-container--triangle-right-border::before {
181
+ .sd-1-0-1-container--triangle-right-border::before {
182
182
  --tw-border-opacity: 1;
183
183
  border-right-color: rgb(var(--sd-color-neutral-400, 195 195 195) / var(--tw-border-opacity, 1)) /* Default border color.
184
184
  Used for divider, teaser, container, ... */;
185
185
  top: calc(50% - 15px);
186
186
  }
187
187
 
188
- .sd-1-0-0-container--triangle-right-border::after {
188
+ .sd-1-0-1-container--triangle-right-border::after {
189
189
  top: calc(50% - 14px);
190
190
  border-right-color: var(--triangle-background);
191
191
  }
192
192
 
193
- .sd-1-0-0-container--triangle-bottom-border::after,
194
- .sd-1-0-0-container--triangle-bottom-border::before {
193
+ .sd-1-0-1-container--triangle-bottom-border::after,
194
+ .sd-1-0-1-container--triangle-bottom-border::before {
195
195
  bottom: -1px;
196
196
  }
197
197
 
198
- .sd-1-0-0-container--triangle-bottom-border::before {
198
+ .sd-1-0-1-container--triangle-bottom-border::before {
199
199
  --tw-border-opacity: 1;
200
200
  border-bottom-color: rgb(var(--sd-color-neutral-400, 195 195 195) / var(--tw-border-opacity, 1)) /* Default border color.
201
201
  Used for divider, teaser, container, ... */;
202
202
  left: calc(50% - 15px);
203
203
  }
204
204
 
205
- .sd-1-0-0-container--triangle-bottom-border::after {
205
+ .sd-1-0-1-container--triangle-bottom-border::after {
206
206
  left: calc(50% - 14px);
207
207
  border-bottom-color: var(--triangle-background);
208
208
  }
209
209
 
210
- .sd-1-0-0-container--triangle-left-border::after,
211
- .sd-1-0-0-container--triangle-left-border::before {
210
+ .sd-1-0-1-container--triangle-left-border::after,
211
+ .sd-1-0-1-container--triangle-left-border::before {
212
212
  left: -1px;
213
213
  }
214
214
 
215
- .sd-1-0-0-container--triangle-left-border::before {
215
+ .sd-1-0-1-container--triangle-left-border::before {
216
216
  --tw-border-opacity: 1;
217
217
  border-left-color: rgb(var(--sd-color-neutral-400, 195 195 195) / var(--tw-border-opacity, 1)) /* Default border color.
218
218
  Used for divider, teaser, container, ... */;
219
219
  top: calc(50% - 15px);
220
220
  }
221
221
 
222
- .sd-1-0-0-container--triangle-left-border::after {
222
+ .sd-1-0-1-container--triangle-left-border::after {
223
223
  top: calc(50% - 14px);
224
224
  border-left-color: var(--triangle-background);
225
225
  }
226
226
 
227
227
  /**
228
228
  * Generates basic styles for copyright elements.
229
- * @name sd-1-0-0-copyright
229
+ * @name sd-1-0-1-copyright
230
230
  * @status stable
231
231
  * @since 2.5.0
232
- * @variant { vertical } sd-1-0-0-copyright--orientation-... The copyright's orientation.
233
- * @variant { black } sd-1-0-0-copyright--color-... The copyright's text color.
234
- * @boolean sd-1-0-0-copyright--... Removes the shadow.
235
- * @variant { top } sd-1-0-0-copyright--placement-... The copyright's placement.
232
+ * @variant { vertical } sd-1-0-1-copyright--orientation-... The copyright's orientation.
233
+ * @variant { black } sd-1-0-1-copyright--color-... The copyright's text color.
234
+ * @boolean sd-1-0-1-copyright--... Removes the shadow.
235
+ * @variant { top } sd-1-0-1-copyright--placement-... The copyright's placement.
236
236
  */
237
237
 
238
- .sd-1-0-0-copyright {
238
+ .sd-1-0-1-copyright {
239
239
  position: relative;
240
240
  }
241
241
 
242
- .sd-1-0-0-copyright::after {
242
+ .sd-1-0-1-copyright::after {
243
243
  position: absolute;
244
244
  bottom: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
245
245
  left: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
@@ -255,7 +255,7 @@ Used for divider, teaser, container, ... */;
255
255
  content: var(--copyright);
256
256
  }
257
257
 
258
- .sd-1-0-0-copyright--orientation-vertical::after {
258
+ .sd-1-0-1-copyright--orientation-vertical::after {
259
259
  width: -moz-max-content;
260
260
  width: max-content;
261
261
  padding-top: var(--sd-spacing-2, 0.5rem) /* 8px */;
@@ -267,17 +267,17 @@ Used for divider, teaser, container, ... */;
267
267
  transform: rotate(180deg);
268
268
  }
269
269
 
270
- .sd-1-0-0-copyright--color-black::after {
270
+ .sd-1-0-1-copyright--color-black::after {
271
271
 
272
272
  color: rgb(var(--sd-color-black, 24 24 24) / var(--tw-text-opacity, 1)) /* Default text color */;
273
273
  filter: drop-shadow(0 0 transparent);
274
274
  }
275
275
 
276
- .sd-1-0-0-copyright--no-shadow::after {
276
+ .sd-1-0-1-copyright--no-shadow::after {
277
277
  filter: drop-shadow(0 0 transparent);
278
278
  }
279
279
 
280
- .sd-1-0-0-copyright--placement-top::after {
280
+ .sd-1-0-1-copyright--placement-top::after {
281
281
  position: absolute;
282
282
  top: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
283
283
  right: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
@@ -290,13 +290,13 @@ Used for divider, teaser, container, ... */;
290
290
 
291
291
  /**
292
292
  * Generates basic styles for flag elements.
293
- * @name sd-1-0-0-flag
293
+ * @name sd-1-0-1-flag
294
294
  * @status stable
295
295
  * @since 1.34.0
296
- * @variant { neutral-300 | neutral-500 | white } sd-1-0-0-flag--...
296
+ * @variant { neutral-300 | neutral-500 | white } sd-1-0-1-flag--...
297
297
  */
298
298
 
299
- .sd-1-0-0-flag {
299
+ .sd-1-0-1-flag {
300
300
  display: inline-flex;
301
301
  height: var(--sd-spacing-8, 2rem) /* 32px */;
302
302
  align-items: center;
@@ -311,32 +311,32 @@ Used for divider, teaser, container, ... */;
311
311
  color: rgb(var(--sd-color-black, 24 24 24) / var(--tw-text-opacity, 1)) /* Default text color */;
312
312
  }
313
313
 
314
- .sd-1-0-0-flag--neutral-500 {
314
+ .sd-1-0-1-flag--neutral-500 {
315
315
 
316
316
  background-color: rgb(var(--sd-color-neutral-500, 174 174 174) / var(--tw-bg-opacity, 1)) /* Used for disabled state */;
317
317
 
318
318
  color: rgb(var(--sd-color-black, 24 24 24) / var(--tw-text-opacity, 1)) /* Default text color */;
319
319
  }
320
320
 
321
- .sd-1-0-0-flag--neutral-300 {
321
+ .sd-1-0-1-flag--neutral-300 {
322
322
 
323
323
  background-color: rgb(var(--sd-color-neutral-300, 218 218 218) / var(--tw-bg-opacity, 1)) /* Used for flag */;
324
324
  }
325
325
 
326
- .sd-1-0-0-flag--white {
326
+ .sd-1-0-1-flag--white {
327
327
 
328
328
  background-color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-bg-opacity, 1)) /* Default background color (light mode) 
Used for inverted button */;
329
329
  }
330
330
 
331
331
  /**
332
332
  * A footnote contains additional information/sources related to the content and usually appears at the bottom of a page or below the content it refers to.
333
- * @name sd-1-0-0-footnotes
333
+ * @name sd-1-0-1-footnotes
334
334
  * @status stable
335
335
  * @since 3.0.0
336
- * @boolean sd-1-0-0-footnotes--inverted Inverts the footnote text.
336
+ * @boolean sd-1-0-1-footnotes--inverted Inverts the footnote text.
337
337
  */
338
338
 
339
- .sd-1-0-0-footnotes {
339
+ .sd-1-0-1-footnotes {
340
340
  margin-top: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
341
341
  margin-bottom: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
342
342
  padding: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
@@ -346,13 +346,13 @@ Used for divider, teaser, container, ... */;
346
346
  color: rgb(var(--sd-color-neutral-700, 104 104 104) / var(--tw-text-opacity, 1)) /* Additional text color */;
347
347
  }
348
348
 
349
- .sd-1-0-0-footnotes:is(ol) li {
349
+ .sd-1-0-1-footnotes:is(ol) li {
350
350
  counter-increment: list-item;
351
351
  display: flex;
352
352
  gap: var(--sd-spacing-2, 0.5rem) /* 8px */;
353
353
  }
354
354
 
355
- .sd-1-0-0-footnotes:is(ol) li::before {
355
+ .sd-1-0-1-footnotes:is(ol) li::before {
356
356
  width: var(--sd-spacing-5, 1.25rem) /* 20px */;
357
357
  flex-shrink: 0;
358
358
  line-height: var(--sd-line-height-normal, 150%) /* Used for body copy and smaller titles */;
@@ -361,11 +361,11 @@ Used for divider, teaser, container, ... */;
361
361
  font-size: 10px;
362
362
  }
363
363
 
364
- .sd-1-0-0-footnotes:is(ul) {
364
+ .sd-1-0-1-footnotes:is(ul) {
365
365
  list-style: '';
366
366
  }
367
367
 
368
- .sd-1-0-0-footnotes--inverted {
368
+ .sd-1-0-1-footnotes--inverted {
369
369
 
370
370
  color: rgb(var(--sd-color-primary-400, 153 171 208) / var(--tw-text-opacity, 1)) /* Additional text inverted color
371
371
  Used for inverted pressed interaction text link */;
@@ -373,11 +373,11 @@ Used for inverted pressed interaction text link */;
373
373
 
374
374
  /**
375
375
  * Hidden links can be used to show links only for keyboard users.
376
- * @name sd-1-0-0-hidden-links
376
+ * @name sd-1-0-1-hidden-links
377
377
  * @status stable
378
378
  * @since 3.15.0
379
- * @boolean sd-1-0-0-hidden-links--multiple Adapts styling for multiple skip links.
380
- * @boolean sd-1-0-0-hidden-links--debug Always show the links for debugging purposes.
379
+ * @boolean sd-1-0-1-hidden-links--multiple Adapts styling for multiple skip links.
380
+ * @boolean sd-1-0-1-hidden-links--debug Always show the links for debugging purposes.
381
381
  */
382
382
 
383
383
  :lang(en) {
@@ -388,7 +388,7 @@ Used for inverted pressed interaction text link */;
388
388
  --sd-hidden-links-title: 'Springe zu';
389
389
  }
390
390
 
391
- .sd-1-0-0-hidden-links:not(:focus-within):not(.sd-1-0-0-hidden-links--debug) {
391
+ .sd-1-0-1-hidden-links:not(:focus-within):not(.sd-1-0-1-hidden-links--debug) {
392
392
  position: absolute;
393
393
  width: 1px;
394
394
  height: 1px;
@@ -400,13 +400,13 @@ Used for inverted pressed interaction text link */;
400
400
  border-width: 0;
401
401
  }
402
402
 
403
- .sd-1-0-0-hidden-links {
403
+ .sd-1-0-1-hidden-links {
404
404
  position: absolute;
405
405
  top: var(--sd-spacing-6, 1.5rem) /* 24px */;
406
406
  left: var(--sd-spacing-6, 1.5rem) /* 24px */;
407
407
  }
408
408
 
409
- .sd-1-0-0-hidden-links--multiple {
409
+ .sd-1-0-1-hidden-links--multiple {
410
410
  display: flex;
411
411
  flex-direction: column;
412
412
 
@@ -420,7 +420,7 @@ Used for inverted pressed interaction text link */;
420
420
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
421
421
  }
422
422
 
423
- .sd-1-0-0-hidden-links--multiple:before {
423
+ .sd-1-0-1-hidden-links--multiple:before {
424
424
  padding-left: var(--sd-spacing-4, 1rem) /* 16px */;
425
425
  padding-right: var(--sd-spacing-4, 1rem) /* 16px */;
426
426
  padding-top: var(--sd-spacing-2, 0.5rem) /* 8px */;
@@ -431,12 +431,12 @@ Used for inverted pressed interaction text link */;
431
431
 
432
432
  /**
433
433
  * The green accent color can be used to highlight parts of the text.
434
- * @name sd-1-0-0-mark
434
+ * @name sd-1-0-1-mark
435
435
  * @status stable
436
436
  * @since 1.7
437
437
  */
438
438
 
439
- mark.sd-1-0-0-mark {
439
+ mark.sd-1-0-1-mark {
440
440
  background-color: transparent;
441
441
 
442
442
  color: rgb(var(--sd-color-accent, 45 157 0) / var(--tw-text-opacity, 1)) /* Used for inverted hover interaction button label */;
@@ -444,16 +444,16 @@ mark.sd-1-0-0-mark {
444
444
 
445
445
  /**
446
446
  * Meta information like file size, date, or whatever is needed.
447
- * @name sd-1-0-0-meta
447
+ * @name sd-1-0-1-meta
448
448
  * @status stable
449
449
  * @since 1.7
450
- * @variant { sm } sd-1-0-0-meta--size-... The size. Small can be used as an alternative in tight spaces.
451
- * @boolean sd-1-0-0-meta--inverted Inverts the meta element.
452
- * @boolean sd-1-0-0-meta--pipe Adds a pipe right from the meta element.
453
- * @boolean sd-1-0-0-meta--light Makes sd-1-0-0-meta light.
450
+ * @variant { sm } sd-1-0-1-meta--size-... The size. Small can be used as an alternative in tight spaces.
451
+ * @boolean sd-1-0-1-meta--inverted Inverts the meta element.
452
+ * @boolean sd-1-0-1-meta--pipe Adds a pipe right from the meta element.
453
+ * @boolean sd-1-0-1-meta--light Makes sd-1-0-1-meta light.
454
454
  */
455
455
 
456
- .sd-1-0-0-meta {
456
+ .sd-1-0-1-meta {
457
457
  font-size: var(--sd-font-size-base, 1rem) /* 16px */;
458
458
  font-weight: 400;
459
459
  line-height: var(--sd-line-height-none, 100%) /* Used for buttons, input fields etc. */;
@@ -461,33 +461,33 @@ mark.sd-1-0-0-mark {
461
461
  color: rgb(var(--sd-color-black, 24 24 24) / var(--tw-text-opacity, 1)) /* Default text color */;
462
462
  }
463
463
 
464
- .sd-1-0-0-meta--size-sm {
464
+ .sd-1-0-1-meta--size-sm {
465
465
  font-size: var(--sd-font-size-sm, 0.875rem) /* 14px */;
466
466
  }
467
467
 
468
- .sd-1-0-0-meta--light {
468
+ .sd-1-0-1-meta--light {
469
469
 
470
470
  color: rgb(var(--sd-color-neutral-700, 104 104 104) / var(--tw-text-opacity, 1)) /* Additional text color */;
471
471
  }
472
472
 
473
- .sd-1-0-0-meta--inverted {
473
+ .sd-1-0-1-meta--inverted {
474
474
 
475
475
  color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */;
476
476
  }
477
477
 
478
- .sd-1-0-0-meta--inverted.sd-1-0-0-meta--light {
478
+ .sd-1-0-1-meta--inverted.sd-1-0-1-meta--light {
479
479
 
480
480
  color: rgb(var(--sd-color-primary-400, 153 171 208) / var(--tw-text-opacity, 1)) /* Additional text inverted color
481
481
  Used for inverted pressed interaction text link */;
482
482
  }
483
483
 
484
- .sd-1-0-0-meta--pipe::after {
484
+ .sd-1-0-1-meta--pipe::after {
485
485
  content: '|';
486
486
  margin-left: var(--sd-spacing-1, 0.25rem) /* 4px */;
487
487
  margin-right: var(--sd-spacing-1, 0.25rem) /* 4px */;
488
488
  }
489
489
 
490
- .sd-1-0-0-meta--pipe.sd-1-0-0-meta--size-sm::after {
490
+ .sd-1-0-1-meta--pipe.sd-1-0-1-meta--size-sm::after {
491
491
  margin-left: var(--sd-spacing-0-5, 0.125rem) /* 2px */;
492
492
  margin-right: var(--sd-spacing-0-5, 0.125rem) /* 2px */;
493
493
  }
@@ -496,23 +496,23 @@ Used for inverted pressed interaction text link */;
496
496
 
497
497
  /**
498
498
  * Prose
499
- * @name sd-1-0-0-prose
499
+ * @name sd-1-0-1-prose
500
500
  * @status stable
501
501
  * @since 3.6.0
502
- * @boolean sd-1-0-0-prose--inverted Inverts the content, but not tables.
503
- * @boolean sd-1-0-0-prose--full-width Overrides the 80ch max-width and makes the prose full width.
502
+ * @boolean sd-1-0-1-prose--inverted Inverts the content, but not tables.
503
+ * @boolean sd-1-0-1-prose--full-width Overrides the 80ch max-width and makes the prose full width.
504
504
  */
505
505
 
506
506
  /**
507
507
  * Display provides larger text sizes that are not used as headlines. The different sizes allow for a more versatile styling of text elements. Display text should not be used as substitute for headlines.
508
- * @name sd-1-0-0-display
508
+ * @name sd-1-0-1-display
509
509
  * @status stable
510
510
  * @since 1.7
511
- * @variant { xl | 3xl } sd-1-0-0-display--size-... The display's size.
512
- * @boolean sd-1-0-0-display--inverted Inverts the display text.
511
+ * @variant { xl | 3xl } sd-1-0-1-display--size-... The display's size.
512
+ * @boolean sd-1-0-1-display--inverted Inverts the display text.
513
513
  */
514
514
 
515
- .sd-1-0-0-display {
515
+ .sd-1-0-1-display {
516
516
  font-size: var(--sd-font-size-3xl, 2rem) /* 32px */;
517
517
  font-weight: 400;
518
518
  line-height: var(--sd-line-height-tight, 120%) /* Used for display and large titles */;
@@ -522,12 +522,12 @@ Used for inverted pressed interaction text link */;
522
522
 
523
523
  @media (min-width: 1024px) {
524
524
 
525
- .sd-1-0-0-display {
525
+ .sd-1-0-1-display {
526
526
  font-size: var(--sd-font-size-4xl, 2.5rem) /* 40px */;
527
527
  }
528
528
  }
529
529
 
530
- .sd-1-0-0-display--size-xl {
530
+ .sd-1-0-1-display--size-xl {
531
531
  font-size: var(--sd-font-size-xl, 1.5rem) /* 24px */;
532
532
  font-weight: 400;
533
533
  line-height: var(--sd-line-height-tight, 120%) /* Used for display and large titles */;
@@ -535,7 +535,7 @@ Used for inverted pressed interaction text link */;
535
535
  color: rgb(var(--sd-color-black, 24 24 24) / var(--tw-text-opacity, 1)) /* Default text color */;
536
536
  }
537
537
 
538
- .sd-1-0-0-display--size-3xl {
538
+ .sd-1-0-1-display--size-3xl {
539
539
  font-size: var(--sd-font-size-2xl, 1.75rem) /* 28px */;
540
540
  font-weight: 400;
541
541
  line-height: var(--sd-line-height-tight, 120%) /* Used for display and large titles */;
@@ -545,35 +545,35 @@ Used for inverted pressed interaction text link */;
545
545
 
546
546
  @media (min-width: 1024px) {
547
547
 
548
- .sd-1-0-0-display--size-3xl {
548
+ .sd-1-0-1-display--size-3xl {
549
549
  font-size: var(--sd-font-size-3xl, 2rem) /* 32px */;
550
550
  }
551
551
  }
552
552
 
553
- .sd-1-0-0-display--inverted {
553
+ .sd-1-0-1-display--inverted {
554
554
 
555
555
  color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */;
556
556
  }
557
557
 
558
558
  /**
559
559
  * Headlines are vital for displaying content hierarchy and to improve accessibility. A headline can be additionally accompanied by an icon. The icon can be displayed on the left side or inline.
560
- * @name sd-1-0-0-headline
560
+ * @name sd-1-0-1-headline
561
561
  * @status stable
562
562
  * @since 1.16
563
- * @variant { 3xl | xl | lg | base } sd-1-0-0-headline--size-... The headline's size.
564
- * @boolean sd-1-0-0-headline--inverted Inverts the headline text.
565
- * @boolean sd-1-0-0-headline--inline Sets inline behavior. Used exclusively when an sd-icon or other component is present. See usage <a href="#inline">here.</a>
563
+ * @variant { 3xl | xl | lg | base } sd-1-0-1-headline--size-... The headline's size.
564
+ * @boolean sd-1-0-1-headline--inverted Inverts the headline text.
565
+ * @boolean sd-1-0-1-headline--inline Sets inline behavior. Used exclusively when an sd-icon or other component is present. See usage <a href="#inline">here.</a>
566
566
  */
567
567
 
568
- .sd-1-0-0-headline,
569
- .sd-1-0-0-prose :is(h1, h2, h3, h4, h5) {
568
+ .sd-1-0-1-headline,
569
+ .sd-1-0-1-prose :is(h1, h2, h3, h4, h5) {
570
570
  display: flex;
571
571
  font-weight: 700;
572
572
 
573
573
  color: rgb(var(--sd-color-primary, 0 53 142) / var(--tw-text-opacity, 1)) /* Primary brand color for text */;
574
574
  }
575
575
 
576
- .sd-1-0-0-headline sd-icon, .sd-1-0-0-prose :is(h1, h2, h3, h4, h5) sd-icon {
576
+ .sd-1-0-1-headline sd-icon, .sd-1-0-1-prose :is(h1, h2, h3, h4, h5) sd-icon {
577
577
  flex-shrink: 0;
578
578
  font-size: 3rem;
579
579
 
@@ -582,15 +582,15 @@ Used for inverted pressed interaction text link */;
582
582
 
583
583
  @media (min-width: 640px) {
584
584
 
585
- .sd-1-0-0-headline sd-icon, .sd-1-0-0-prose :is(h1, h2, h3, h4, h5) sd-icon {
585
+ .sd-1-0-1-headline sd-icon, .sd-1-0-1-prose :is(h1, h2, h3, h4, h5) sd-icon {
586
586
  margin-top: var(--sd-spacing-2, 0.5rem) /* 8px */;
587
587
  }
588
588
  }
589
589
 
590
- .sd-1-0-0-headline.sd-1-0-0-headline,
591
- .sd-1-0-0-headline:is(h1):not(.sd-1-0-0-headline),
592
- .sd-1-0-0-prose :is(h1, h2, h3, h4, h5).sd-1-0-0-headline,
593
- .sd-1-0-0-prose :is(h1, h2, h3, h4, h5):is(h1):not(.sd-1-0-0-headline) {
590
+ .sd-1-0-1-headline.sd-1-0-1-headline,
591
+ .sd-1-0-1-headline:is(h1):not(.sd-1-0-1-headline),
592
+ .sd-1-0-1-prose :is(h1, h2, h3, h4, h5).sd-1-0-1-headline,
593
+ .sd-1-0-1-prose :is(h1, h2, h3, h4, h5):is(h1):not(.sd-1-0-1-headline) {
594
594
  gap: var(--sd-spacing-4, 1rem) /* 16px */;
595
595
  font-size: var(--sd-font-size-3xl, 2rem) /* 32px */;
596
596
  line-height: var(--sd-line-height-tight, 120%) /* Used for display and large titles */;
@@ -598,29 +598,29 @@ Used for inverted pressed interaction text link */;
598
598
 
599
599
  @media (min-width: 640px) {
600
600
 
601
- .sd-1-0-0-headline.sd-1-0-0-headline,
602
- .sd-1-0-0-headline:is(h1):not(.sd-1-0-0-headline),
603
- .sd-1-0-0-prose :is(h1, h2, h3, h4, h5).sd-1-0-0-headline,
604
- .sd-1-0-0-prose :is(h1, h2, h3, h4, h5):is(h1):not(.sd-1-0-0-headline) {
601
+ .sd-1-0-1-headline.sd-1-0-1-headline,
602
+ .sd-1-0-1-headline:is(h1):not(.sd-1-0-1-headline),
603
+ .sd-1-0-1-prose :is(h1, h2, h3, h4, h5).sd-1-0-1-headline,
604
+ .sd-1-0-1-prose :is(h1, h2, h3, h4, h5):is(h1):not(.sd-1-0-1-headline) {
605
605
  font-size: var(--sd-font-size-4xl, 2.5rem) /* 40px */;
606
606
  }
607
607
  }
608
608
 
609
- .sd-1-0-0-headline.sd-1-0-0-headline sd-icon, .sd-1-0-0-headline:is(h1):not(.sd-1-0-0-headline) sd-icon, .sd-1-0-0-prose :is(h1, h2, h3, h4, h5).sd-1-0-0-headline sd-icon, .sd-1-0-0-prose :is(h1, h2, h3, h4, h5):is(h1):not(.sd-1-0-0-headline) sd-icon {
609
+ .sd-1-0-1-headline.sd-1-0-1-headline sd-icon, .sd-1-0-1-headline:is(h1):not(.sd-1-0-1-headline) sd-icon, .sd-1-0-1-prose :is(h1, h2, h3, h4, h5).sd-1-0-1-headline sd-icon, .sd-1-0-1-prose :is(h1, h2, h3, h4, h5):is(h1):not(.sd-1-0-1-headline) sd-icon {
610
610
  margin-top: calc(var(--sd-spacing-1, 0.25rem) /* 4px */ * -1);
611
611
  }
612
612
 
613
613
  @media (min-width: 640px) {
614
614
 
615
- .sd-1-0-0-headline.sd-1-0-0-headline sd-icon, .sd-1-0-0-headline:is(h1):not(.sd-1-0-0-headline) sd-icon, .sd-1-0-0-prose :is(h1, h2, h3, h4, h5).sd-1-0-0-headline sd-icon, .sd-1-0-0-prose :is(h1, h2, h3, h4, h5):is(h1):not(.sd-1-0-0-headline) sd-icon {
615
+ .sd-1-0-1-headline.sd-1-0-1-headline sd-icon, .sd-1-0-1-headline:is(h1):not(.sd-1-0-1-headline) sd-icon, .sd-1-0-1-prose :is(h1, h2, h3, h4, h5).sd-1-0-1-headline sd-icon, .sd-1-0-1-prose :is(h1, h2, h3, h4, h5):is(h1):not(.sd-1-0-1-headline) sd-icon {
616
616
  margin-top: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
617
617
  }
618
618
  }
619
619
 
620
- .sd-1-0-0-headline.sd-1-0-0-headline--size-3xl,
621
- .sd-1-0-0-headline:is(h2):not(.sd-1-0-0-headline),
622
- .sd-1-0-0-prose :is(h1, h2, h3, h4, h5).sd-1-0-0-headline--size-3xl,
623
- .sd-1-0-0-prose :is(h1, h2, h3, h4, h5):is(h2):not(.sd-1-0-0-headline) {
620
+ .sd-1-0-1-headline.sd-1-0-1-headline--size-3xl,
621
+ .sd-1-0-1-headline:is(h2):not(.sd-1-0-1-headline),
622
+ .sd-1-0-1-prose :is(h1, h2, h3, h4, h5).sd-1-0-1-headline--size-3xl,
623
+ .sd-1-0-1-prose :is(h1, h2, h3, h4, h5):is(h2):not(.sd-1-0-1-headline) {
624
624
  gap: var(--sd-spacing-4, 1rem) /* 16px */;
625
625
  font-size: var(--sd-font-size-2xl, 1.75rem) /* 28px */;
626
626
  line-height: var(--sd-line-height-tight, 120%) /* Used for display and large titles */;
@@ -628,144 +628,144 @@ Used for inverted pressed interaction text link */;
628
628
 
629
629
  @media (min-width: 640px) {
630
630
 
631
- .sd-1-0-0-headline.sd-1-0-0-headline--size-3xl,
632
- .sd-1-0-0-headline:is(h2):not(.sd-1-0-0-headline),
633
- .sd-1-0-0-prose :is(h1, h2, h3, h4, h5).sd-1-0-0-headline--size-3xl,
634
- .sd-1-0-0-prose :is(h1, h2, h3, h4, h5):is(h2):not(.sd-1-0-0-headline) {
631
+ .sd-1-0-1-headline.sd-1-0-1-headline--size-3xl,
632
+ .sd-1-0-1-headline:is(h2):not(.sd-1-0-1-headline),
633
+ .sd-1-0-1-prose :is(h1, h2, h3, h4, h5).sd-1-0-1-headline--size-3xl,
634
+ .sd-1-0-1-prose :is(h1, h2, h3, h4, h5):is(h2):not(.sd-1-0-1-headline) {
635
635
  font-size: var(--sd-font-size-3xl, 2rem) /* 32px */;
636
636
  }
637
637
  }
638
638
 
639
- .sd-1-0-0-headline.sd-1-0-0-headline--size-3xl sd-icon, .sd-1-0-0-headline:is(h2):not(.sd-1-0-0-headline) sd-icon, .sd-1-0-0-prose :is(h1, h2, h3, h4, h5).sd-1-0-0-headline--size-3xl sd-icon, .sd-1-0-0-prose :is(h1, h2, h3, h4, h5):is(h2):not(.sd-1-0-0-headline) sd-icon {
639
+ .sd-1-0-1-headline.sd-1-0-1-headline--size-3xl sd-icon, .sd-1-0-1-headline:is(h2):not(.sd-1-0-1-headline) sd-icon, .sd-1-0-1-prose :is(h1, h2, h3, h4, h5).sd-1-0-1-headline--size-3xl sd-icon, .sd-1-0-1-prose :is(h1, h2, h3, h4, h5):is(h2):not(.sd-1-0-1-headline) sd-icon {
640
640
  margin-top: calc(var(--sd-spacing-1, 0.25rem) /* 4px */ * -1);
641
641
  }
642
642
 
643
643
  @media (min-width: 640px) {
644
644
 
645
- .sd-1-0-0-headline.sd-1-0-0-headline--size-3xl sd-icon, .sd-1-0-0-headline:is(h2):not(.sd-1-0-0-headline) sd-icon, .sd-1-0-0-prose :is(h1, h2, h3, h4, h5).sd-1-0-0-headline--size-3xl sd-icon, .sd-1-0-0-prose :is(h1, h2, h3, h4, h5):is(h2):not(.sd-1-0-0-headline) sd-icon {
645
+ .sd-1-0-1-headline.sd-1-0-1-headline--size-3xl sd-icon, .sd-1-0-1-headline:is(h2):not(.sd-1-0-1-headline) sd-icon, .sd-1-0-1-prose :is(h1, h2, h3, h4, h5).sd-1-0-1-headline--size-3xl sd-icon, .sd-1-0-1-prose :is(h1, h2, h3, h4, h5):is(h2):not(.sd-1-0-1-headline) sd-icon {
646
646
  margin-top: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
647
647
  }
648
648
  }
649
649
 
650
- .sd-1-0-0-headline.sd-1-0-0-headline--size-xl,
651
- .sd-1-0-0-headline.sd-1-0-0-headline--size-lg,
652
- .sd-1-0-0-headline.sd-1-0-0-headline--size-base,
653
- .sd-1-0-0-headline:is(h3, h4, h5):not(.sd-1-0-0-headline),
654
- .sd-1-0-0-prose :is(h1, h2, h3, h4, h5).sd-1-0-0-headline--size-xl,
655
- .sd-1-0-0-prose :is(h1, h2, h3, h4, h5).sd-1-0-0-headline--size-lg,
656
- .sd-1-0-0-prose :is(h1, h2, h3, h4, h5).sd-1-0-0-headline--size-base,
657
- .sd-1-0-0-prose :is(h1, h2, h3, h4, h5):is(h3, h4, h5):not(.sd-1-0-0-headline) {
650
+ .sd-1-0-1-headline.sd-1-0-1-headline--size-xl,
651
+ .sd-1-0-1-headline.sd-1-0-1-headline--size-lg,
652
+ .sd-1-0-1-headline.sd-1-0-1-headline--size-base,
653
+ .sd-1-0-1-headline:is(h3, h4, h5):not(.sd-1-0-1-headline),
654
+ .sd-1-0-1-prose :is(h1, h2, h3, h4, h5).sd-1-0-1-headline--size-xl,
655
+ .sd-1-0-1-prose :is(h1, h2, h3, h4, h5).sd-1-0-1-headline--size-lg,
656
+ .sd-1-0-1-prose :is(h1, h2, h3, h4, h5).sd-1-0-1-headline--size-base,
657
+ .sd-1-0-1-prose :is(h1, h2, h3, h4, h5):is(h3, h4, h5):not(.sd-1-0-1-headline) {
658
658
  gap: var(--sd-spacing-2, 0.5rem) /* 8px */;
659
659
 
660
660
  color: rgb(var(--sd-color-black, 24 24 24) / var(--tw-text-opacity, 1)) /* Default text color */;
661
661
  }
662
662
 
663
- .sd-1-0-0-headline.sd-1-0-0-headline--size-xl sd-icon, .sd-1-0-0-headline.sd-1-0-0-headline--size-lg sd-icon, .sd-1-0-0-headline.sd-1-0-0-headline--size-base sd-icon, .sd-1-0-0-headline:is(h3, h4, h5):not(.sd-1-0-0-headline) sd-icon, .sd-1-0-0-prose :is(h1, h2, h3, h4, h5).sd-1-0-0-headline--size-xl sd-icon, .sd-1-0-0-prose :is(h1, h2, h3, h4, h5).sd-1-0-0-headline--size-lg sd-icon, .sd-1-0-0-prose :is(h1, h2, h3, h4, h5).sd-1-0-0-headline--size-base sd-icon, .sd-1-0-0-prose :is(h1, h2, h3, h4, h5):is(h3, h4, h5):not(.sd-1-0-0-headline) sd-icon {
663
+ .sd-1-0-1-headline.sd-1-0-1-headline--size-xl sd-icon, .sd-1-0-1-headline.sd-1-0-1-headline--size-lg sd-icon, .sd-1-0-1-headline.sd-1-0-1-headline--size-base sd-icon, .sd-1-0-1-headline:is(h3, h4, h5):not(.sd-1-0-1-headline) sd-icon, .sd-1-0-1-prose :is(h1, h2, h3, h4, h5).sd-1-0-1-headline--size-xl sd-icon, .sd-1-0-1-prose :is(h1, h2, h3, h4, h5).sd-1-0-1-headline--size-lg sd-icon, .sd-1-0-1-prose :is(h1, h2, h3, h4, h5).sd-1-0-1-headline--size-base sd-icon, .sd-1-0-1-prose :is(h1, h2, h3, h4, h5):is(h3, h4, h5):not(.sd-1-0-1-headline) sd-icon {
664
664
  font-size: 2rem;
665
665
  }
666
666
 
667
- .sd-1-0-0-headline.sd-1-0-0-headline--size-xl,
668
- .sd-1-0-0-headline:is(h3):not(.sd-1-0-0-headline),
669
- .sd-1-0-0-prose :is(h1, h2, h3, h4, h5).sd-1-0-0-headline--size-xl,
670
- .sd-1-0-0-prose :is(h1, h2, h3, h4, h5):is(h3):not(.sd-1-0-0-headline) {
667
+ .sd-1-0-1-headline.sd-1-0-1-headline--size-xl,
668
+ .sd-1-0-1-headline:is(h3):not(.sd-1-0-1-headline),
669
+ .sd-1-0-1-prose :is(h1, h2, h3, h4, h5).sd-1-0-1-headline--size-xl,
670
+ .sd-1-0-1-prose :is(h1, h2, h3, h4, h5):is(h3):not(.sd-1-0-1-headline) {
671
671
  font-size: var(--sd-font-size-xl, 1.5rem) /* 24px */;
672
672
  }
673
673
 
674
- .sd-1-0-0-headline.sd-1-0-0-headline--size-xl sd-icon, .sd-1-0-0-headline:is(h3):not(.sd-1-0-0-headline) sd-icon, .sd-1-0-0-prose :is(h1, h2, h3, h4, h5).sd-1-0-0-headline--size-xl sd-icon, .sd-1-0-0-prose :is(h1, h2, h3, h4, h5):is(h3):not(.sd-1-0-0-headline) sd-icon {
674
+ .sd-1-0-1-headline.sd-1-0-1-headline--size-xl sd-icon, .sd-1-0-1-headline:is(h3):not(.sd-1-0-1-headline) sd-icon, .sd-1-0-1-prose :is(h1, h2, h3, h4, h5).sd-1-0-1-headline--size-xl sd-icon, .sd-1-0-1-prose :is(h1, h2, h3, h4, h5):is(h3):not(.sd-1-0-1-headline) sd-icon {
675
675
  margin-top: var(--sd-spacing-0-5, 0.125rem) /* 2px */;
676
676
  }
677
677
 
678
678
  @media (min-width: 640px) {
679
679
 
680
- .sd-1-0-0-headline.sd-1-0-0-headline--size-xl sd-icon, .sd-1-0-0-headline:is(h3):not(.sd-1-0-0-headline) sd-icon, .sd-1-0-0-prose :is(h1, h2, h3, h4, h5).sd-1-0-0-headline--size-xl sd-icon, .sd-1-0-0-prose :is(h1, h2, h3, h4, h5):is(h3):not(.sd-1-0-0-headline) sd-icon {
680
+ .sd-1-0-1-headline.sd-1-0-1-headline--size-xl sd-icon, .sd-1-0-1-headline:is(h3):not(.sd-1-0-1-headline) sd-icon, .sd-1-0-1-prose :is(h1, h2, h3, h4, h5).sd-1-0-1-headline--size-xl sd-icon, .sd-1-0-1-prose :is(h1, h2, h3, h4, h5):is(h3):not(.sd-1-0-1-headline) sd-icon {
681
681
  margin-top: var(--sd-spacing-0-5, 0.125rem) /* 2px */;
682
682
  }
683
683
  }
684
684
 
685
- .sd-1-0-0-headline.sd-1-0-0-headline--size-lg,
686
- .sd-1-0-0-headline.sd-1-0-0-headline--size-base,
687
- .sd-1-0-0-headline:is(h4, h5):not(.sd-1-0-0-headline),
688
- .sd-1-0-0-prose :is(h1, h2, h3, h4, h5).sd-1-0-0-headline--size-lg,
689
- .sd-1-0-0-prose :is(h1, h2, h3, h4, h5).sd-1-0-0-headline--size-base,
690
- .sd-1-0-0-prose :is(h1, h2, h3, h4, h5):is(h4, h5):not(.sd-1-0-0-headline) {
685
+ .sd-1-0-1-headline.sd-1-0-1-headline--size-lg,
686
+ .sd-1-0-1-headline.sd-1-0-1-headline--size-base,
687
+ .sd-1-0-1-headline:is(h4, h5):not(.sd-1-0-1-headline),
688
+ .sd-1-0-1-prose :is(h1, h2, h3, h4, h5).sd-1-0-1-headline--size-lg,
689
+ .sd-1-0-1-prose :is(h1, h2, h3, h4, h5).sd-1-0-1-headline--size-base,
690
+ .sd-1-0-1-prose :is(h1, h2, h3, h4, h5):is(h4, h5):not(.sd-1-0-1-headline) {
691
691
  line-height: var(--sd-line-height-normal, 150%) /* Used for body copy and smaller titles */;
692
692
  }
693
693
 
694
- .sd-1-0-0-headline.sd-1-0-0-headline--size-lg,
695
- .sd-1-0-0-headline:is(h4),
696
- .sd-1-0-0-prose :is(h1, h2, h3, h4, h5).sd-1-0-0-headline--size-lg,
697
- .sd-1-0-0-prose :is(h1, h2, h3, h4, h5):is(h4) {
694
+ .sd-1-0-1-headline.sd-1-0-1-headline--size-lg,
695
+ .sd-1-0-1-headline:is(h4),
696
+ .sd-1-0-1-prose :is(h1, h2, h3, h4, h5).sd-1-0-1-headline--size-lg,
697
+ .sd-1-0-1-prose :is(h1, h2, h3, h4, h5):is(h4) {
698
698
  font-size: var(--sd-font-size-lg, 1.25rem) /* 20px */;
699
699
  }
700
700
 
701
- .sd-1-0-0-headline.sd-1-0-0-headline--size-lg sd-icon, .sd-1-0-0-headline:is(h4) sd-icon, .sd-1-0-0-prose :is(h1, h2, h3, h4, h5).sd-1-0-0-headline--size-lg sd-icon, .sd-1-0-0-prose :is(h1, h2, h3, h4, h5):is(h4) sd-icon {
701
+ .sd-1-0-1-headline.sd-1-0-1-headline--size-lg sd-icon, .sd-1-0-1-headline:is(h4) sd-icon, .sd-1-0-1-prose :is(h1, h2, h3, h4, h5).sd-1-0-1-headline--size-lg sd-icon, .sd-1-0-1-prose :is(h1, h2, h3, h4, h5):is(h4) sd-icon {
702
702
  margin-top: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
703
703
  }
704
704
 
705
705
  @media (min-width: 640px) {
706
706
 
707
- .sd-1-0-0-headline.sd-1-0-0-headline--size-lg sd-icon, .sd-1-0-0-headline:is(h4) sd-icon, .sd-1-0-0-prose :is(h1, h2, h3, h4, h5).sd-1-0-0-headline--size-lg sd-icon, .sd-1-0-0-prose :is(h1, h2, h3, h4, h5):is(h4) sd-icon {
707
+ .sd-1-0-1-headline.sd-1-0-1-headline--size-lg sd-icon, .sd-1-0-1-headline:is(h4) sd-icon, .sd-1-0-1-prose :is(h1, h2, h3, h4, h5).sd-1-0-1-headline--size-lg sd-icon, .sd-1-0-1-prose :is(h1, h2, h3, h4, h5):is(h4) sd-icon {
708
708
  margin-top: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
709
709
  }
710
710
  }
711
711
 
712
- .sd-1-0-0-headline.sd-1-0-0-headline--size-base,
713
- .sd-1-0-0-headline:is(h5):not(.sd-1-0-0-headline),
714
- .sd-1-0-0-prose :is(h1, h2, h3, h4, h5).sd-1-0-0-headline--size-base,
715
- .sd-1-0-0-prose :is(h1, h2, h3, h4, h5):is(h5):not(.sd-1-0-0-headline) {
712
+ .sd-1-0-1-headline.sd-1-0-1-headline--size-base,
713
+ .sd-1-0-1-headline:is(h5):not(.sd-1-0-1-headline),
714
+ .sd-1-0-1-prose :is(h1, h2, h3, h4, h5).sd-1-0-1-headline--size-base,
715
+ .sd-1-0-1-prose :is(h1, h2, h3, h4, h5):is(h5):not(.sd-1-0-1-headline) {
716
716
  font-size: var(--sd-font-size-base, 1rem) /* 16px */;
717
717
  }
718
718
 
719
- .sd-1-0-0-headline.sd-1-0-0-headline--size-base sd-icon, .sd-1-0-0-headline:is(h5):not(.sd-1-0-0-headline) sd-icon, .sd-1-0-0-prose :is(h1, h2, h3, h4, h5).sd-1-0-0-headline--size-base sd-icon, .sd-1-0-0-prose :is(h1, h2, h3, h4, h5):is(h5):not(.sd-1-0-0-headline) sd-icon {
719
+ .sd-1-0-1-headline.sd-1-0-1-headline--size-base sd-icon, .sd-1-0-1-headline:is(h5):not(.sd-1-0-1-headline) sd-icon, .sd-1-0-1-prose :is(h1, h2, h3, h4, h5).sd-1-0-1-headline--size-base sd-icon, .sd-1-0-1-prose :is(h1, h2, h3, h4, h5):is(h5):not(.sd-1-0-1-headline) sd-icon {
720
720
  margin-top: calc(var(--sd-spacing-1, 0.25rem) /* 4px */ * -1);
721
721
  }
722
722
 
723
- .sd-1-0-0-headline.sd-1-0-0-headline--size-base mark, .sd-1-0-0-headline:is(h5):not(.sd-1-0-0-headline) mark, .sd-1-0-0-prose :is(h1, h2, h3, h4, h5).sd-1-0-0-headline--size-base mark, .sd-1-0-0-prose :is(h1, h2, h3, h4, h5):is(h5):not(.sd-1-0-0-headline) mark {
723
+ .sd-1-0-1-headline.sd-1-0-1-headline--size-base mark, .sd-1-0-1-headline:is(h5):not(.sd-1-0-1-headline) mark, .sd-1-0-1-prose :is(h1, h2, h3, h4, h5).sd-1-0-1-headline--size-base mark, .sd-1-0-1-prose :is(h1, h2, h3, h4, h5):is(h5):not(.sd-1-0-1-headline) mark {
724
724
  color: inherit;
725
725
  }
726
726
 
727
- .sd-1-0-0-headline--inline {
727
+ .sd-1-0-1-headline--inline {
728
728
  display: inline-block;
729
729
  }
730
730
 
731
- .sd-1-0-0-headline--inline sd-icon {
731
+ .sd-1-0-1-headline--inline sd-icon {
732
732
  margin-right: var(--sd-spacing-2, 0.5rem) /* 8px */;
733
733
  margin-top: calc(var(--sd-spacing-1, 0.25rem) /* 4px */ * -1);
734
734
  vertical-align: middle;
735
735
  }
736
736
 
737
- .sd-1-0-0-headline--inline:is(.sd-1-0-0-headline--size-xl, .sd-1-0-0-headline--size-lg, .sd-1-0-0-headline--size-base) sd-icon {
737
+ .sd-1-0-1-headline--inline:is(.sd-1-0-1-headline--size-xl, .sd-1-0-1-headline--size-lg, .sd-1-0-1-headline--size-base) sd-icon {
738
738
  margin-right: var(--sd-spacing-0-5, 0.125rem) /* 2px */;
739
739
  }
740
740
 
741
- .sd-1-0-0-headline--inverted:not(#_),
742
- .sd-1-0-0-prose--inverted :is(h1, h2, h3, h4, h5):not(.sd-1-0-0-headline):not(#_) {
741
+ .sd-1-0-1-headline--inverted:not(#_),
742
+ .sd-1-0-1-prose--inverted :is(h1, h2, h3, h4, h5):not(.sd-1-0-1-headline):not(#_) {
743
743
 
744
744
  color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */;
745
745
  }
746
746
 
747
- .sd-1-0-0-headline--inverted:not(#_) sd-icon, .sd-1-0-0-prose--inverted :is(h1, h2, h3, h4, h5):not(.sd-1-0-0-headline):not(#_) sd-icon {
747
+ .sd-1-0-1-headline--inverted:not(#_) sd-icon, .sd-1-0-1-prose--inverted :is(h1, h2, h3, h4, h5):not(.sd-1-0-1-headline):not(#_) sd-icon {
748
748
 
749
749
  color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */;
750
750
  }
751
751
 
752
752
  /**
753
753
  * Generates basic styles for interactive elements.
754
- * @name sd-1-0-0-interactive
754
+ * @name sd-1-0-1-interactive
755
755
  * @status stable
756
756
  * @since 1.11
757
- * @boolean sd-1-0-0-interactive--disabled Makes an element look disabled.
758
- * @boolean sd-1-0-0-interactive--inverted Inverts the colors of an element.
759
- * @boolean sd-1-0-0-interactive--reset Resets the default browser styles of e.g., a button.
757
+ * @boolean sd-1-0-1-interactive--disabled Makes an element look disabled.
758
+ * @boolean sd-1-0-1-interactive--inverted Inverts the colors of an element.
759
+ * @boolean sd-1-0-1-interactive--reset Resets the default browser styles of e.g., a button.
760
760
  */
761
761
 
762
- .sd-1-0-0-prose a--reset, .sd-1-0-0-interactive--reset {
762
+ .sd-1-0-1-prose a--reset, .sd-1-0-1-interactive--reset {
763
763
  all: unset;
764
764
  outline: revert;
765
765
  }
766
766
 
767
- .sd-1-0-0-prose a,
768
- .sd-1-0-0-interactive {
767
+ .sd-1-0-1-prose a,
768
+ .sd-1-0-1-interactive {
769
769
  cursor: pointer;
770
770
 
771
771
  color: rgb(var(--sd-color-primary, 0 53 142) / var(--tw-text-opacity, 1)) /* Primary brand color for text */;
@@ -775,80 +775,80 @@ Used for inverted pressed interaction text link */;
775
775
  transition-duration: 150ms;
776
776
  }
777
777
 
778
- .sd-1-0-0-prose a:hover:not([disabled]),
779
- .sd-1-0-0-interactive:hover:not([disabled]) {
778
+ .sd-1-0-1-prose a:hover:not([disabled]),
779
+ .sd-1-0-1-interactive:hover:not([disabled]) {
780
780
 
781
781
  color: rgb(var(--sd-color-primary-500, 70 109 175) / var(--tw-text-opacity, 1)) /* Used for hover interaction */;
782
782
  }
783
783
 
784
- .sd-1-0-0-prose a:active:not([disabled]),
785
- .sd-1-0-0-interactive:active:not([disabled]) {
784
+ .sd-1-0-1-prose a:active:not([disabled]),
785
+ .sd-1-0-1-interactive:active:not([disabled]) {
786
786
 
787
787
  color: rgb(var(--sd-color-primary-800, 5 21 48) / var(--tw-text-opacity, 1)) /* Used for pressed interaction */;
788
788
  }
789
789
 
790
- .sd-1-0-0-prose a:is(.sd-1-0-0-interactive), .sd-1-0-0-interactive:is(.sd-1-0-0-interactive) {
790
+ .sd-1-0-1-prose a:is(.sd-1-0-1-interactive), .sd-1-0-1-interactive:is(.sd-1-0-1-interactive) {
791
791
  text-decoration-line: none;
792
792
  }
793
793
 
794
- .sd-1-0-0-prose a:focus-visible, .sd-1-0-0-interactive:focus-visible {
794
+ .sd-1-0-1-prose a:focus-visible, .sd-1-0-1-interactive:focus-visible {
795
795
  outline-style: solid;
796
796
  outline-width: 2px;
797
797
  outline-offset: 2px;
798
798
  outline-color: rgb(var(--sd-color-primary, 0 53 142) / 1) /* Used for buttons, select field, focus state */;
799
799
  }
800
800
 
801
- .sd-1-0-0-prose a--disabled,
802
- .sd-1-0-0-prose a[disabled],
803
- .sd-1-0-0-prose a[href=''],
804
- .sd-1-0-0-interactive--disabled,
805
- .sd-1-0-0-interactive[disabled],
806
- .sd-1-0-0-interactive[href=''] {
801
+ .sd-1-0-1-prose a--disabled,
802
+ .sd-1-0-1-prose a[disabled],
803
+ .sd-1-0-1-prose a[href=''],
804
+ .sd-1-0-1-interactive--disabled,
805
+ .sd-1-0-1-interactive[disabled],
806
+ .sd-1-0-1-interactive[href=''] {
807
807
  cursor: not-allowed;
808
808
 
809
809
  color: rgb(var(--sd-color-neutral-600, 136 136 136) / var(--tw-text-opacity, 1)) /* Used for inverted disabled state */;
810
810
  }
811
811
 
812
- .sd-1-0-0-prose a--disabled:hover:not([disabled]),
813
- .sd-1-0-0-prose a[disabled]:hover:not([disabled]),
814
- .sd-1-0-0-prose a[href='']:hover:not([disabled]),
815
- .sd-1-0-0-interactive--disabled:hover:not([disabled]),
816
- .sd-1-0-0-interactive[disabled]:hover:not([disabled]),
817
- .sd-1-0-0-interactive[href='']:hover:not([disabled]) {
812
+ .sd-1-0-1-prose a--disabled:hover:not([disabled]),
813
+ .sd-1-0-1-prose a[disabled]:hover:not([disabled]),
814
+ .sd-1-0-1-prose a[href='']:hover:not([disabled]),
815
+ .sd-1-0-1-interactive--disabled:hover:not([disabled]),
816
+ .sd-1-0-1-interactive[disabled]:hover:not([disabled]),
817
+ .sd-1-0-1-interactive[href='']:hover:not([disabled]) {
818
818
 
819
819
  color: rgb(var(--sd-color-neutral-600, 136 136 136) / var(--tw-text-opacity, 1)) /* Used for inverted disabled state */;
820
820
  }
821
821
 
822
- .sd-1-0-0-prose a--disabled:active:not([disabled]),
823
- .sd-1-0-0-prose a[disabled]:active:not([disabled]),
824
- .sd-1-0-0-prose a[href='']:active:not([disabled]),
825
- .sd-1-0-0-interactive--disabled:active:not([disabled]),
826
- .sd-1-0-0-interactive[disabled]:active:not([disabled]),
827
- .sd-1-0-0-interactive[href='']:active:not([disabled]) {
822
+ .sd-1-0-1-prose a--disabled:active:not([disabled]),
823
+ .sd-1-0-1-prose a[disabled]:active:not([disabled]),
824
+ .sd-1-0-1-prose a[href='']:active:not([disabled]),
825
+ .sd-1-0-1-interactive--disabled:active:not([disabled]),
826
+ .sd-1-0-1-interactive[disabled]:active:not([disabled]),
827
+ .sd-1-0-1-interactive[href='']:active:not([disabled]) {
828
828
 
829
829
  color: rgb(var(--sd-color-neutral-600, 136 136 136) / var(--tw-text-opacity, 1)) /* Used for inverted disabled state */;
830
830
  }
831
831
 
832
- .sd-1-0-0-prose--inverted a,
833
- .sd-1-0-0-interactive--inverted {
832
+ .sd-1-0-1-prose--inverted a,
833
+ .sd-1-0-1-interactive--inverted {
834
834
 
835
835
  color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */;
836
836
  }
837
837
 
838
- .sd-1-0-0-prose--inverted a:hover:not([disabled]),
839
- .sd-1-0-0-interactive--inverted:hover:not([disabled]) {
838
+ .sd-1-0-1-prose--inverted a:hover:not([disabled]),
839
+ .sd-1-0-1-interactive--inverted:hover:not([disabled]) {
840
840
 
841
841
  color: rgb(var(--sd-color-primary-200, 224 233 243) / var(--tw-text-opacity, 1)) /* Used for inverted hover interaction text link and inverted pressed interaction button label */;
842
842
  }
843
843
 
844
- .sd-1-0-0-prose--inverted a:active:not([disabled]),
845
- .sd-1-0-0-interactive--inverted:active:not([disabled]) {
844
+ .sd-1-0-1-prose--inverted a:active:not([disabled]),
845
+ .sd-1-0-1-interactive--inverted:active:not([disabled]) {
846
846
 
847
847
  color: rgb(var(--sd-color-primary-400, 153 171 208) / var(--tw-text-opacity, 1)) /* Additional text inverted color
848
848
  Used for inverted pressed interaction text link */;
849
849
  }
850
850
 
851
- .sd-1-0-0-prose--inverted a:focus-visible, .sd-1-0-0-interactive--inverted:focus-visible {
851
+ .sd-1-0-1-prose--inverted a:focus-visible, .sd-1-0-1-interactive--inverted:focus-visible {
852
852
  outline-style: solid;
853
853
  outline-width: 2px;
854
854
  outline-offset: 2px;
@@ -857,15 +857,15 @@ Used for inverted pressed interaction text link */;
857
857
 
858
858
  /**
859
859
  * Leadtext is used for text that should be highlighted and a focal point of the page.
860
- * @name sd-1-0-0-leadtext
860
+ * @name sd-1-0-1-leadtext
861
861
  * @status stable
862
862
  * @since 1.7
863
- * @variant { lg } sd-1-0-0-leadtext--size-... The leadtext's size.
864
- * @boolean sd-1-0-0-leadtext--inverted Inverts the leadtext text.
863
+ * @variant { lg } sd-1-0-1-leadtext--size-... The leadtext's size.
864
+ * @boolean sd-1-0-1-leadtext--inverted Inverts the leadtext text.
865
865
  */
866
866
 
867
- .sd-1-0-0-prose > .sd-1-0-0-leadtext,
868
- .sd-1-0-0-leadtext {
867
+ .sd-1-0-1-prose > .sd-1-0-1-leadtext,
868
+ .sd-1-0-1-leadtext {
869
869
  font-size: var(--sd-font-size-xl, 1.5rem) /* 24px */;
870
870
  font-weight: 400;
871
871
  line-height: var(--sd-line-height-normal, 150%) /* Used for body copy and smaller titles */;
@@ -873,7 +873,7 @@ Used for inverted pressed interaction text link */;
873
873
  color: rgb(var(--sd-color-black, 24 24 24) / var(--tw-text-opacity, 1)) /* Default text color */;
874
874
  }
875
875
 
876
- .sd-1-0-0-prose > .sd-1-0-0-leadtext--size-lg, .sd-1-0-0-leadtext--size-lg {
876
+ .sd-1-0-1-prose > .sd-1-0-1-leadtext--size-lg, .sd-1-0-1-leadtext--size-lg {
877
877
  font-size: var(--sd-font-size-lg, 1.25rem) /* 20px */;
878
878
  font-weight: 400;
879
879
  line-height: var(--sd-line-height-normal, 150%) /* Used for body copy and smaller titles */;
@@ -881,111 +881,111 @@ Used for inverted pressed interaction text link */;
881
881
  color: rgb(var(--sd-color-black, 24 24 24) / var(--tw-text-opacity, 1)) /* Default text color */;
882
882
  }
883
883
 
884
- .sd-1-0-0-prose--inverted > .sd-1-0-0-leadtext,
885
- .sd-1-0-0-leadtext--inverted {
884
+ .sd-1-0-1-prose--inverted > .sd-1-0-1-leadtext,
885
+ .sd-1-0-1-leadtext--inverted {
886
886
 
887
887
  color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */;
888
888
  }
889
889
 
890
890
  /**
891
891
  * Generates basic styles for list elements.
892
- * @name sd-1-0-0-list
892
+ * @name sd-1-0-1-list
893
893
  * @status stable
894
894
  * @since 1.39.0
895
- * @boolean sd-1-0-0-list--inverted Inverts the list text.
895
+ * @boolean sd-1-0-1-list--inverted Inverts the list text.
896
896
  */
897
897
 
898
- .sd-1-0-0-list:not(.sd-1-0-0-list--icon),
899
- .sd-1-0-0-prose > :is(ol, ul) {
898
+ .sd-1-0-1-list:not(.sd-1-0-1-list--icon),
899
+ .sd-1-0-1-prose > :is(ol, ul) {
900
900
  padding-top: var(--sd-spacing-4, 1rem) /* 16px */;
901
901
  padding-bottom: var(--sd-spacing-4, 1rem) /* 16px */;
902
902
  text-align: left;
903
903
  }
904
904
 
905
- .sd-1-0-0-list:not(.sd-1-0-0-list--icon) li:not(:first-child), .sd-1-0-0-prose > :is(ol, ul) li:not(:first-child) {
905
+ .sd-1-0-1-list:not(.sd-1-0-1-list--icon) li:not(:first-child), .sd-1-0-1-prose > :is(ol, ul) li:not(:first-child) {
906
906
  margin-top: var(--sd-spacing-3, 0.75rem) /* 12px */;
907
907
  }
908
908
 
909
- .sd-1-0-0-list:not(.sd-1-0-0-list--icon) ol,
910
- .sd-1-0-0-list:not(.sd-1-0-0-list--icon) ul,
911
- .sd-1-0-0-prose > :is(ol, ul) ol,
912
- .sd-1-0-0-prose > :is(ol, ul) ul {
909
+ .sd-1-0-1-list:not(.sd-1-0-1-list--icon) ol,
910
+ .sd-1-0-1-list:not(.sd-1-0-1-list--icon) ul,
911
+ .sd-1-0-1-prose > :is(ol, ul) ol,
912
+ .sd-1-0-1-prose > :is(ol, ul) ul {
913
913
  padding-top: var(--sd-spacing-3, 0.75rem) /* 12px */;
914
914
  }
915
915
 
916
916
  /* Counter handling for ordered lists. */
917
917
 
918
- .sd-1-0-0-list:not(.sd-1-0-0-list--icon):is(ol) > li, .sd-1-0-0-list:not(.sd-1-0-0-list--icon) ol > li, .sd-1-0-0-prose > :is(ol, ul):is(ol) > li, .sd-1-0-0-prose > :is(ol, ul) ol > li {
918
+ .sd-1-0-1-list:not(.sd-1-0-1-list--icon):is(ol) > li, .sd-1-0-1-list:not(.sd-1-0-1-list--icon) ol > li, .sd-1-0-1-prose > :is(ol, ul):is(ol) > li, .sd-1-0-1-prose > :is(ol, ul) ol > li {
919
919
  counter-increment: item;
920
920
  }
921
921
 
922
- .sd-1-0-0-list:not(.sd-1-0-0-list--icon):is(ol) > li:before, .sd-1-0-0-list:not(.sd-1-0-0-list--icon) ol > li:before, .sd-1-0-0-prose > :is(ol, ul):is(ol) > li:before, .sd-1-0-0-prose > :is(ol, ul) ol > li:before {
922
+ .sd-1-0-1-list:not(.sd-1-0-1-list--icon):is(ol) > li:before, .sd-1-0-1-list:not(.sd-1-0-1-list--icon) ol > li:before, .sd-1-0-1-prose > :is(ol, ul):is(ol) > li:before, .sd-1-0-1-prose > :is(ol, ul) ol > li:before {
923
923
  content: counters(item, '.') '. ';
924
924
  }
925
925
 
926
926
  /* Add second level */
927
927
 
928
- .sd-1-0-0-list:not(.sd-1-0-0-list--icon):is(ol),
929
- .sd-1-0-0-list:not(.sd-1-0-0-list--icon):is(ol) > li > ol,
930
- .sd-1-0-0-list:not(.sd-1-0-0-list--icon) ol > li > ol,
931
- .sd-1-0-0-prose > :is(ol, ul):is(ol),
932
- .sd-1-0-0-prose > :is(ol, ul):is(ol) > li > ol,
933
- .sd-1-0-0-prose > :is(ol, ul) ol > li > ol {
928
+ .sd-1-0-1-list:not(.sd-1-0-1-list--icon):is(ol),
929
+ .sd-1-0-1-list:not(.sd-1-0-1-list--icon):is(ol) > li > ol,
930
+ .sd-1-0-1-list:not(.sd-1-0-1-list--icon) ol > li > ol,
931
+ .sd-1-0-1-prose > :is(ol, ul):is(ol),
932
+ .sd-1-0-1-prose > :is(ol, ul):is(ol) > li > ol,
933
+ .sd-1-0-1-prose > :is(ol, ul) ol > li > ol {
934
934
  counter-reset: item;
935
935
  }
936
936
 
937
937
  /* Ordered lists inside unordered lists. */
938
938
 
939
- .sd-1-0-0-list:not(.sd-1-0-0-list--icon):is(ul) > li > ol,
940
- .sd-1-0-0-list:not(.sd-1-0-0-list--icon) ul > li > ol,
941
- .sd-1-0-0-prose > :is(ol, ul):is(ul) > li > ol,
942
- .sd-1-0-0-prose > :is(ol, ul) ul > li > ol {
939
+ .sd-1-0-1-list:not(.sd-1-0-1-list--icon):is(ul) > li > ol,
940
+ .sd-1-0-1-list:not(.sd-1-0-1-list--icon) ul > li > ol,
941
+ .sd-1-0-1-prose > :is(ol, ul):is(ul) > li > ol,
942
+ .sd-1-0-1-prose > :is(ol, ul) ul > li > ol {
943
943
  counter-set: item 0;
944
944
  }
945
945
 
946
946
  /* Styling */
947
947
 
948
- .sd-1-0-0-list:not(.sd-1-0-0-list--icon) li, .sd-1-0-0-prose > :is(ol, ul) li {
948
+ .sd-1-0-1-list:not(.sd-1-0-1-list--icon) li, .sd-1-0-1-prose > :is(ol, ul) li {
949
949
  display: table;
950
950
  }
951
951
 
952
- .sd-1-0-0-list:not(.sd-1-0-0-list--icon) li:before, .sd-1-0-0-prose > :is(ol, ul) li:before {
952
+ .sd-1-0-1-list:not(.sd-1-0-1-list--icon) li:before, .sd-1-0-1-prose > :is(ol, ul) li:before {
953
953
  display: table-cell;
954
954
  padding-right: var(--sd-spacing-2, 0.5rem) /* 8px */;
955
955
  }
956
956
 
957
- .sd-1-0-0-list:not(.sd-1-0-0-list--icon):is(ul),
958
- .sd-1-0-0-list:not(.sd-1-0-0-list--icon) ul,
959
- .sd-1-0-0-prose > :is(ol, ul):is(ul),
960
- .sd-1-0-0-prose > :is(ol, ul) ul {
957
+ .sd-1-0-1-list:not(.sd-1-0-1-list--icon):is(ul),
958
+ .sd-1-0-1-list:not(.sd-1-0-1-list--icon) ul,
959
+ .sd-1-0-1-prose > :is(ol, ul):is(ul),
960
+ .sd-1-0-1-prose > :is(ol, ul) ul {
961
961
  list-style-type: '';
962
962
  }
963
963
 
964
- .sd-1-0-0-list:not(.sd-1-0-0-list--icon):is(ul):not(.sd-1-0-0-list--icon) > li:before, .sd-1-0-0-list:not(.sd-1-0-0-list--icon) ul > li:before, .sd-1-0-0-prose > :is(ol, ul):is(ul):not(.sd-1-0-0-list--icon) > li:before, .sd-1-0-0-prose > :is(ol, ul) ul > li:before {
964
+ .sd-1-0-1-list:not(.sd-1-0-1-list--icon):is(ul):not(.sd-1-0-1-list--icon) > li:before, .sd-1-0-1-list:not(.sd-1-0-1-list--icon) ul > li:before, .sd-1-0-1-prose > :is(ol, ul):is(ul):not(.sd-1-0-1-list--icon) > li:before, .sd-1-0-1-prose > :is(ol, ul) ul > li:before {
965
965
  content: '\2022';
966
966
  }
967
967
 
968
- .sd-1-0-0-list:not(.sd-1-0-0-list--icon):is(ul):not(.sd-1-0-0-list--icon) > li > ul > li:before, .sd-1-0-0-list:not(.sd-1-0-0-list--icon) ul > li > ul > li:before, .sd-1-0-0-prose > :is(ol, ul):is(ul):not(.sd-1-0-0-list--icon) > li > ul > li:before, .sd-1-0-0-prose > :is(ol, ul) ul > li > ul > li:before {
968
+ .sd-1-0-1-list:not(.sd-1-0-1-list--icon):is(ul):not(.sd-1-0-1-list--icon) > li > ul > li:before, .sd-1-0-1-list:not(.sd-1-0-1-list--icon) ul > li > ul > li:before, .sd-1-0-1-prose > :is(ol, ul):is(ul):not(.sd-1-0-1-list--icon) > li > ul > li:before, .sd-1-0-1-prose > :is(ol, ul) ul > li > ul > li:before {
969
969
  content: '\002B1D';
970
970
  }
971
971
 
972
- .sd-1-0-0-list:not(.sd-1-0-0-list--icon):is(ul):not(.sd-1-0-0-list--icon) > li > ul > li > ul > li:before, .sd-1-0-0-list:not(.sd-1-0-0-list--icon) ul > li > ul > li > ul > li:before, .sd-1-0-0-prose > :is(ol, ul):is(ul):not(.sd-1-0-0-list--icon) > li > ul > li > ul > li:before, .sd-1-0-0-prose > :is(ol, ul) ul > li > ul > li > ul > li:before {
972
+ .sd-1-0-1-list:not(.sd-1-0-1-list--icon):is(ul):not(.sd-1-0-1-list--icon) > li > ul > li > ul > li:before, .sd-1-0-1-list:not(.sd-1-0-1-list--icon) ul > li > ul > li > ul > li:before, .sd-1-0-1-prose > :is(ol, ul):is(ul):not(.sd-1-0-1-list--icon) > li > ul > li > ul > li:before, .sd-1-0-1-prose > :is(ol, ul) ul > li > ul > li > ul > li:before {
973
973
  content: '\2010';
974
974
  }
975
975
 
976
- .sd-1-0-0-list--icon {
976
+ .sd-1-0-1-list--icon {
977
977
  padding-top: var(--sd-spacing-4, 1rem) /* 16px */;
978
978
  padding-bottom: var(--sd-spacing-4, 1rem) /* 16px */;
979
979
  text-align: left;
980
980
  }
981
981
 
982
- .sd-1-0-0-list--icon li sd-icon:first-of-type,
983
- .sd-1-0-0-list--icon li .sd-1-0-0-list--icon__icon:first-of-type {
982
+ .sd-1-0-1-list--icon li sd-icon:first-of-type,
983
+ .sd-1-0-1-list--icon li .sd-1-0-1-list--icon__icon:first-of-type {
984
984
 
985
985
  color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */;
986
986
  }
987
987
 
988
- .sd-1-0-0-list--icon {
988
+ .sd-1-0-1-list--icon {
989
989
  list-style-type: '';
990
990
  }
991
991
 
@@ -993,19 +993,19 @@ Used for inverted pressed interaction text link */;
993
993
  styles without affecting semantics is to set list-style-type to an empty string.
994
994
  https://www.matuzo.at/blog/2023/removing-list-styles-without-affecting-semantics */
995
995
 
996
- .sd-1-0-0-list--icon > li:first-of-type {
996
+ .sd-1-0-1-list--icon > li:first-of-type {
997
997
  padding-top: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
998
998
  }
999
999
 
1000
- .sd-1-0-0-list--icon li {
1000
+ .sd-1-0-1-list--icon li {
1001
1001
  position: relative;
1002
1002
  padding-top: var(--sd-spacing-3, 0.75rem) /* 12px */;
1003
1003
  padding-left: var(--sd-spacing-10, 2.5rem) /* 40px */;
1004
1004
  line-height: 32px;
1005
1005
  }
1006
1006
 
1007
- .sd-1-0-0-list--icon li > sd-icon:first-of-type,
1008
- .sd-1-0-0-list--icon li > .sd-1-0-0-list--icon__icon:first-of-type {
1007
+ .sd-1-0-1-list--icon li > sd-icon:first-of-type,
1008
+ .sd-1-0-1-list--icon li > .sd-1-0-1-list--icon__icon:first-of-type {
1009
1009
  position: absolute;
1010
1010
  left: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
1011
1011
  font-size: var(--sd-font-size-3xl, 2rem) /* 32px */;
@@ -1013,44 +1013,44 @@ Used for inverted pressed interaction text link */;
1013
1013
  color: rgb(var(--sd-color-primary, 0 53 142) / var(--tw-text-opacity, 1)) /* Primary brand color for text */;
1014
1014
  }
1015
1015
 
1016
- .sd-1-0-0-list--icon.sd-1-0-0-list--horizontal {
1016
+ .sd-1-0-1-list--icon.sd-1-0-1-list--horizontal {
1017
1017
  display: flex;
1018
1018
  }
1019
1019
 
1020
- .sd-1-0-0-list--icon.sd-1-0-0-list--horizontal li {
1020
+ .sd-1-0-1-list--icon.sd-1-0-1-list--horizontal li {
1021
1021
  display: flex;
1022
1022
  padding-top: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
1023
1023
  }
1024
1024
 
1025
- .sd-1-0-0-list--icon.sd-1-0-0-list--horizontal li:not(:last-child) {
1025
+ .sd-1-0-1-list--icon.sd-1-0-1-list--horizontal li:not(:last-child) {
1026
1026
  margin-right: var(--sd-spacing-8, 2rem) /* 32px */;
1027
1027
  }
1028
1028
 
1029
- .sd-1-0-0-list--inverted,
1030
- .sd-1-0-0-prose--inverted > :is(ol, ul) {
1029
+ .sd-1-0-1-list--inverted,
1030
+ .sd-1-0-1-prose--inverted > :is(ol, ul) {
1031
1031
 
1032
1032
  color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */;
1033
1033
  }
1034
1034
 
1035
- .sd-1-0-0-list--inverted li > sd-icon:first-of-type,
1036
- .sd-1-0-0-list--inverted li > .sd-1-0-0-list--icon__icon:first-of-type,
1037
- .sd-1-0-0-prose--inverted > :is(ol, ul) li > sd-icon:first-of-type,
1038
- .sd-1-0-0-prose--inverted > :is(ol, ul) li > .sd-1-0-0-list--icon__icon:first-of-type {
1035
+ .sd-1-0-1-list--inverted li > sd-icon:first-of-type,
1036
+ .sd-1-0-1-list--inverted li > .sd-1-0-1-list--icon__icon:first-of-type,
1037
+ .sd-1-0-1-prose--inverted > :is(ol, ul) li > sd-icon:first-of-type,
1038
+ .sd-1-0-1-prose--inverted > :is(ol, ul) li > .sd-1-0-1-list--icon__icon:first-of-type {
1039
1039
 
1040
1040
  color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */;
1041
1041
  }
1042
1042
 
1043
1043
  /**
1044
1044
  * A paragraph is used to display blocks of text. It uses the base font size and can contain bold and/or link styles.
1045
- * @name sd-1-0-0-paragraph
1045
+ * @name sd-1-0-1-paragraph
1046
1046
  * @status stable
1047
1047
  * @since 1.7
1048
- * @variant { sm } sd-1-0-0-paragraph--size-... The paragraph's font size.
1049
- * @boolean sd-1-0-0-paragraph--inverted Inverts the paragraph text.
1048
+ * @variant { sm } sd-1-0-1-paragraph--size-... The paragraph's font size.
1049
+ * @boolean sd-1-0-1-paragraph--inverted Inverts the paragraph text.
1050
1050
  */
1051
1051
 
1052
- .sd-1-0-0-paragraph,
1053
- .sd-1-0-0-prose p {
1052
+ .sd-1-0-1-paragraph,
1053
+ .sd-1-0-1-prose p {
1054
1054
  font-size: var(--sd-font-size-base, 1rem) /* 16px */;
1055
1055
  font-weight: 400;
1056
1056
  line-height: var(--sd-line-height-normal, 150%) /* Used for body copy and smaller titles */;
@@ -1058,7 +1058,7 @@ Used for inverted pressed interaction text link */;
1058
1058
  color: rgb(var(--sd-color-black, 24 24 24) / var(--tw-text-opacity, 1)) /* Default text color */;
1059
1059
  }
1060
1060
 
1061
- .sd-1-0-0-paragraph--size-sm, .sd-1-0-0-prose p--size-sm {
1061
+ .sd-1-0-1-paragraph--size-sm, .sd-1-0-1-prose p--size-sm {
1062
1062
  font-size: var(--sd-font-size-sm, 0.875rem) /* 14px */;
1063
1063
  font-weight: 400;
1064
1064
  line-height: var(--sd-line-height-normal, 150%) /* Used for body copy and smaller titles */;
@@ -1066,35 +1066,35 @@ Used for inverted pressed interaction text link */;
1066
1066
  color: rgb(var(--sd-color-black, 24 24 24) / var(--tw-text-opacity, 1)) /* Default text color */;
1067
1067
  }
1068
1068
 
1069
- .sd-1-0-0-paragraph--inverted,
1070
- .sd-1-0-0-prose--inverted p {
1069
+ .sd-1-0-1-paragraph--inverted,
1070
+ .sd-1-0-1-prose--inverted p {
1071
1071
 
1072
1072
  color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */;
1073
1073
  }
1074
1074
 
1075
1075
  /**
1076
1076
  * Generates basic styles for media elements.
1077
- * @name sd-1-0-0-media
1077
+ * @name sd-1-0-1-media
1078
1078
  * @status stable
1079
1079
  * @since 2.5.0
1080
- * @boolean sd-1-0-0-media--inverted Inverts the figcaption text.
1080
+ * @boolean sd-1-0-1-media--inverted Inverts the figcaption text.
1081
1081
  */
1082
1082
 
1083
- .sd-1-0-0-prose figure,
1084
- figure.sd-1-0-0-media {
1083
+ .sd-1-0-1-prose figure,
1084
+ figure.sd-1-0-1-media {
1085
1085
  margin: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
1086
1086
  }
1087
1087
 
1088
- .sd-1-0-0-prose figure figcaption, figure.sd-1-0-0-media figcaption {
1088
+ .sd-1-0-1-prose figure figcaption, figure.sd-1-0-1-media figcaption {
1089
1089
 
1090
1090
  color: rgb(var(--sd-color-neutral-700, 104 104 104) / var(--tw-text-opacity, 1)) /* Additional text color */;
1091
1091
  }
1092
1092
 
1093
- .sd-1-0-0-prose figure figcaption:last-child, figure.sd-1-0-0-media figcaption:last-child {
1093
+ .sd-1-0-1-prose figure figcaption:last-child, figure.sd-1-0-1-media figcaption:last-child {
1094
1094
  margin-top: var(--sd-spacing-3, 0.75rem) /* 12px */;
1095
1095
  }
1096
1096
 
1097
- .sd-1-0-0-prose--inverted figure figcaption, figure.sd-1-0-0-media--inverted figcaption {
1097
+ .sd-1-0-1-prose--inverted figure figcaption, figure.sd-1-0-1-media--inverted figcaption {
1098
1098
 
1099
1099
  color: rgb(var(--sd-color-primary-400, 153 171 208) / var(--tw-text-opacity, 1)) /* Additional text inverted color
1100
1100
  Used for inverted pressed interaction text link */;
@@ -1102,18 +1102,18 @@ Used for inverted pressed interaction text link */;
1102
1102
 
1103
1103
  /**
1104
1104
  * A table cell is a single cell inside a table, used to display discrete data elements.
1105
- * @name sd-1-0-0-table-cell
1105
+ * @name sd-1-0-1-table-cell
1106
1106
  * @status stable
1107
1107
  * @since 1.13
1108
- * @boolean sd-1-0-0-table-cell--divider Displays a divider to the right.
1109
- * @variant { white | primary-100 | neutral-100 } sd-1-0-0-table-cell--bg-... Applies the selected background-color to the table cell. If not selected, a transparent background-color is used per default.
1110
- * @boolean sd-1-0-0-table-cell--shadow-active Displays the table shadow.
1111
- * @variant { top | left | right | bottom } sd-1-0-0-table-cell--shadow-... Applies the selected shadow to the table cell.
1108
+ * @boolean sd-1-0-1-table-cell--divider Displays a divider to the right.
1109
+ * @variant { white | primary-100 | neutral-100 } sd-1-0-1-table-cell--bg-... Applies the selected background-color to the table cell. If not selected, a transparent background-color is used per default.
1110
+ * @boolean sd-1-0-1-table-cell--shadow-active Displays the table shadow.
1111
+ * @variant { top | left | right | bottom } sd-1-0-1-table-cell--shadow-... Applies the selected shadow to the table cell.
1112
1112
  */
1113
1113
 
1114
- .sd-1-0-0-prose td,
1115
- .sd-1-0-0-prose th,
1116
- .sd-1-0-0-table-cell {
1114
+ .sd-1-0-1-prose td,
1115
+ .sd-1-0-1-prose th,
1116
+ .sd-1-0-1-table-cell {
1117
1117
  border-top-width: 1px;
1118
1118
  border-bottom-width: 1px;
1119
1119
  border-left-width: 0px;
@@ -1130,11 +1130,11 @@ Used for divider, teaser, container, ... */;
1130
1130
  color: rgb(var(--sd-color-black, 24 24 24) / var(--tw-text-opacity, 1)) /* Default text color */;
1131
1131
  }
1132
1132
 
1133
- .sd-1-0-0-table-cell--divider {
1133
+ .sd-1-0-1-table-cell--divider {
1134
1134
  border-right-width: 1px;
1135
1135
  }
1136
1136
 
1137
- .sd-1-0-0-table-cell--shadow-top:after, .sd-1-0-0-table-cell--shadow-bottom:after, .sd-1-0-0-table-cell--shadow-left:after, .sd-1-0-0-table-cell--shadow-right:after {
1137
+ .sd-1-0-1-table-cell--shadow-top:after, .sd-1-0-1-table-cell--shadow-bottom:after, .sd-1-0-1-table-cell--shadow-left:after, .sd-1-0-1-table-cell--shadow-right:after {
1138
1138
  pointer-events: none;
1139
1139
  position: absolute;
1140
1140
  --tw-gradient-from: rgb(0 0 0 / var(--sd-opacity-10, 0.1)) var(--tw-gradient-from-position);
@@ -1149,7 +1149,7 @@ Used for divider, teaser, container, ... */;
1149
1149
  content: var(--tw-content);
1150
1150
  }
1151
1151
 
1152
- .sd-1-0-0-table-cell--shadow-top:after, .sd-1-0-0-table-cell--shadow-bottom:after {
1152
+ .sd-1-0-1-table-cell--shadow-top:after, .sd-1-0-1-table-cell--shadow-bottom:after {
1153
1153
  left: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
1154
1154
  right: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
1155
1155
  height: var(--sd-spacing-2-5, 0.625rem) /* 10px */;
@@ -1157,7 +1157,7 @@ Used for divider, teaser, container, ... */;
1157
1157
 
1158
1158
  /* fix that shows line on top of table-cell */
1159
1159
 
1160
- .sd-1-0-0-table-cell--shadow-top:before, .sd-1-0-0-table-cell--shadow-bottom:before {
1160
+ .sd-1-0-1-table-cell--shadow-top:before, .sd-1-0-1-table-cell--shadow-bottom:before {
1161
1161
  position: absolute;
1162
1162
  left: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
1163
1163
  display: block;
@@ -1171,66 +1171,66 @@ Used for divider, teaser, container, ... */;
1171
1171
  content: var(--tw-content);
1172
1172
  }
1173
1173
 
1174
- .sd-1-0-0-table-cell--shadow-left:after, .sd-1-0-0-table-cell--shadow-right:after {
1174
+ .sd-1-0-1-table-cell--shadow-left:after, .sd-1-0-1-table-cell--shadow-right:after {
1175
1175
  top: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
1176
1176
  bottom: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
1177
1177
  width: var(--sd-spacing-2-5, 0.625rem) /* 10px */;
1178
1178
  }
1179
1179
 
1180
- .sd-1-0-0-table-cell.sd-1-0-0-table-cell--shadow-active:after {
1180
+ .sd-1-0-1-table-cell.sd-1-0-1-table-cell--shadow-active:after {
1181
1181
  opacity: 100%;
1182
1182
  }
1183
1183
 
1184
- .sd-1-0-0-table-cell--shadow-top:after {
1184
+ .sd-1-0-1-table-cell--shadow-top:after {
1185
1185
  top: -10px;
1186
1186
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
1187
1187
  }
1188
1188
 
1189
1189
  /* fix that shows line on top of table-cell */
1190
1190
 
1191
- .sd-1-0-0-table-cell--shadow-top:before {
1191
+ .sd-1-0-1-table-cell--shadow-top:before {
1192
1192
  bottom: -1px;
1193
1193
  }
1194
1194
 
1195
- .sd-1-0-0-table-cell--shadow-bottom:after {
1195
+ .sd-1-0-1-table-cell--shadow-bottom:after {
1196
1196
  bottom: -10px;
1197
1197
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
1198
1198
  }
1199
1199
 
1200
1200
  /* fix that shows line on top of table-cell */
1201
1201
 
1202
- .sd-1-0-0-table-cell--shadow-bottom:before {
1202
+ .sd-1-0-1-table-cell--shadow-bottom:before {
1203
1203
  top: -1px;
1204
1204
  }
1205
1205
 
1206
- .sd-1-0-0-table-cell--shadow-left:after {
1206
+ .sd-1-0-1-table-cell--shadow-left:after {
1207
1207
  left: -10px;
1208
1208
  background-image: linear-gradient(to left, var(--tw-gradient-stops));
1209
1209
  }
1210
1210
 
1211
- .sd-1-0-0-table-cell--shadow-right:after {
1211
+ .sd-1-0-1-table-cell--shadow-right:after {
1212
1212
  right: -10px;
1213
1213
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
1214
1214
  }
1215
1215
 
1216
- .sd-1-0-0-table-cell--bg-white {
1216
+ .sd-1-0-1-table-cell--bg-white {
1217
1217
 
1218
1218
  background-color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-bg-opacity, 1)) /* Default background color (light mode) 
Used for inverted button */;
1219
1219
  }
1220
1220
 
1221
- .sd-1-0-0-table-cell--bg-primary-100 {
1221
+ .sd-1-0-1-table-cell--bg-primary-100 {
1222
1222
 
1223
1223
  background-color: rgb(var(--sd-color-primary-100, 236 240 249) / var(--tw-bg-opacity, 1)) /* Additional background color (light mode) */;
1224
1224
  }
1225
1225
 
1226
- .sd-1-0-0-table-cell--bg-neutral-100 {
1226
+ .sd-1-0-1-table-cell--bg-neutral-100 {
1227
1227
 
1228
1228
  background-color: rgb(var(--sd-color-neutral-100, 246 246 246) / var(--tw-bg-opacity, 1)) /* Additional background color (light mode) */;
1229
1229
  }
1230
1230
 
1231
1231
  /**
1232
1232
  * A table is organized structured content, used for scanning, comparing, and analyzing the data.
1233
- * @name sd-1-0-0-table
1233
+ * @name sd-1-0-1-table
1234
1234
  * @status stable
1235
1235
  * @since 1.13
1236
1236
  */
@@ -1239,8 +1239,8 @@ Used for divider, teaser, container, ... */;
1239
1239
  * Remove inherited styles from table before applying our styles.
1240
1240
  */
1241
1241
 
1242
- .sd-1-0-0-table,
1243
- .sd-1-0-0-prose table {
1242
+ .sd-1-0-1-table,
1243
+ .sd-1-0-1-prose table {
1244
1244
  all: unset;
1245
1245
  display: table;
1246
1246
  border-collapse: collapse;
@@ -1249,13 +1249,13 @@ Used for divider, teaser, container, ... */;
1249
1249
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
1250
1250
  }
1251
1251
 
1252
- .sd-1-0-0-table thead tr:first-of-type, .sd-1-0-0-table tfoot tr:first-of-type, .sd-1-0-0-prose table thead tr:first-of-type, .sd-1-0-0-prose table tfoot tr:first-of-type {
1252
+ .sd-1-0-1-table thead tr:first-of-type, .sd-1-0-1-table tfoot tr:first-of-type, .sd-1-0-1-prose table thead tr:first-of-type, .sd-1-0-1-prose table tfoot tr:first-of-type {
1253
1253
  position: relative;
1254
1254
  }
1255
1255
 
1256
1256
  /* plop:style */
1257
1257
 
1258
- .sd-1-0-0-prose {
1258
+ .sd-1-0-1-prose {
1259
1259
  /* Optimize for reading. */
1260
1260
  max-width: 80ch;
1261
1261
  text-align: left;
@@ -1263,67 +1263,67 @@ Used for divider, teaser, container, ... */;
1263
1263
 
1264
1264
  /* Add default spacings */
1265
1265
 
1266
- .sd-1-0-0-prose > *:not(:first-child) {
1266
+ .sd-1-0-1-prose > *:not(:first-child) {
1267
1267
  margin-top: var(--sd-spacing-4, 1rem) /* 16px */;
1268
1268
  }
1269
1269
 
1270
1270
  /* First element has no margin-top */
1271
1271
 
1272
- .sd-1-0-0-prose > *:first-child {
1272
+ .sd-1-0-1-prose > *:first-child {
1273
1273
  margin-top: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
1274
1274
  }
1275
1275
 
1276
1276
  /* headings after a heading have a smaller margin-top */
1277
1277
 
1278
- .sd-1-0-0-prose > :is(h1, h2, h3, h4, h5):not(#_) + :is(h1, h2, h3, h4, h5) {
1278
+ .sd-1-0-1-prose > :is(h1, h2, h3, h4, h5):not(#_) + :is(h1, h2, h3, h4, h5) {
1279
1279
  /* :not(#_) is a hack to raise specifity, see https://stackoverflow.com/a/61781795 */
1280
1280
  margin-top: var(--sd-spacing-2, 0.5rem) /* 8px */;
1281
1281
  }
1282
1282
 
1283
1283
  /* Headlines after other non-headlines have a larger margin-top */
1284
1284
 
1285
- .sd-1-0-0-prose > *:not(:is(h1, h2, h3, h4, h5)) + :is(h1, h2, h3, h4, h5):not(#_) {
1285
+ .sd-1-0-1-prose > *:not(:is(h1, h2, h3, h4, h5)) + :is(h1, h2, h3, h4, h5):not(#_) {
1286
1286
  margin-top: var(--sd-spacing-8, 2rem) /* 32px */;
1287
1287
  }
1288
1288
 
1289
1289
  /* Images and figures lead to a bigger margin-top for the next element */
1290
1290
 
1291
- .sd-1-0-0-prose > figure + *:not(#_),
1292
- .sd-1-0-0-prose > img + *:not(#_) {
1291
+ .sd-1-0-1-prose > figure + *:not(#_),
1292
+ .sd-1-0-1-prose > img + *:not(#_) {
1293
1293
  margin-top: var(--sd-spacing-6, 1.5rem) /* 24px */;
1294
1294
  }
1295
1295
 
1296
1296
  /* Add styles for elements that are not based on existing CSS styles */
1297
1297
 
1298
- .sd-1-0-0-prose hr {
1298
+ .sd-1-0-1-prose hr {
1299
1299
  height: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
1300
1300
  border-top-width: 1px;
1301
1301
  --tw-border-opacity: 1;
1302
1302
  border-color: rgb(var(--sd-color-neutral-500, 174 174 174) / var(--tw-border-opacity, 1)) /* Used for disabled state */;
1303
1303
  }
1304
1304
 
1305
- .sd-1-0-0-prose pre {
1305
+ .sd-1-0-1-prose pre {
1306
1306
  overflow: auto;
1307
1307
  }
1308
1308
 
1309
- .sd-1-0-0-prose blockquote,
1310
- .sd-1-0-0-prose blockquote > * {
1309
+ .sd-1-0-1-prose blockquote,
1310
+ .sd-1-0-1-prose blockquote > * {
1311
1311
  font-size: var(--sd-font-size-xl, 1.5rem) /* 24px */;
1312
1312
  }
1313
1313
 
1314
- .sd-1-0-0-prose blockquote:has(*) *:first-child::before, .sd-1-0-0-prose blockquote:not(:has(*))::before {
1314
+ .sd-1-0-1-prose blockquote:has(*) *:first-child::before, .sd-1-0-1-prose blockquote:not(:has(*))::before {
1315
1315
  content: open-quote;
1316
1316
  display: inline;
1317
1317
  }
1318
1318
 
1319
- .sd-1-0-0-prose blockquote:has(*) *:first-child::after, .sd-1-0-0-prose blockquote:not(:has(*))::after {
1319
+ .sd-1-0-1-prose blockquote:has(*) *:first-child::after, .sd-1-0-1-prose blockquote:not(:has(*))::after {
1320
1320
  content: close-quote;
1321
1321
  display: inline;
1322
1322
  }
1323
1323
 
1324
1324
  /* Fixes for other elements */
1325
1325
 
1326
- .sd-1-0-0-prose > :is(ul, ol):not(#_) {
1326
+ .sd-1-0-1-prose > :is(ul, ol):not(#_) {
1327
1327
  /* ul and ol have padding that has to be reset */
1328
1328
  padding-top: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
1329
1329
  padding-bottom: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
@@ -1331,18 +1331,18 @@ Used for divider, teaser, container, ... */;
1331
1331
 
1332
1332
  /* Inverted styles */
1333
1333
 
1334
- .sd-1-0-0-prose--inverted hr {
1334
+ .sd-1-0-1-prose--inverted hr {
1335
1335
  --tw-border-opacity: 1;
1336
1336
  border-color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-border-opacity, 1)) /* Used for buttons, inverted focus state */;
1337
1337
  }
1338
1338
 
1339
- .sd-1-0-0-prose--inverted pre {
1339
+ .sd-1-0-1-prose--inverted pre {
1340
1340
 
1341
1341
  color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */;
1342
1342
  }
1343
1343
 
1344
1344
  /* Full width styles */
1345
1345
 
1346
- .sd-1-0-0-prose--full-width {
1346
+ .sd-1-0-1-prose--full-width {
1347
1347
  max-width: unset;
1348
1348
  }