@solid-design-system/styles 1.0.0 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (46) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/cdn/modules/status-badge.css +1 -0
  3. package/cdn/solid-styles.css +1 -1
  4. package/cdn-versioned/modules/chip.css +1 -1
  5. package/cdn-versioned/modules/container.css +1 -1
  6. package/cdn-versioned/modules/copyright.css +1 -1
  7. package/cdn-versioned/modules/display.css +1 -1
  8. package/cdn-versioned/modules/flag.css +1 -1
  9. package/cdn-versioned/modules/footnotes.css +1 -1
  10. package/cdn-versioned/modules/headline.css +1 -1
  11. package/cdn-versioned/modules/hidden-links.css +1 -1
  12. package/cdn-versioned/modules/interactive.css +1 -1
  13. package/cdn-versioned/modules/leadtext.css +1 -1
  14. package/cdn-versioned/modules/list.css +1 -1
  15. package/cdn-versioned/modules/mark.css +1 -1
  16. package/cdn-versioned/modules/media.css +1 -1
  17. package/cdn-versioned/modules/meta.css +1 -1
  18. package/cdn-versioned/modules/paragraph.css +1 -1
  19. package/cdn-versioned/modules/prose.css +1 -1
  20. package/cdn-versioned/modules/status-badge.css +1 -0
  21. package/cdn-versioned/modules/table-cell.css +1 -1
  22. package/cdn-versioned/modules/table.css +1 -1
  23. package/cdn-versioned/solid-styles.css +1 -1
  24. package/dist/modules/status-badge.css +61 -0
  25. package/dist/solid-styles.css +44 -0
  26. package/dist-versioned/modules/chip.css +6 -6
  27. package/dist-versioned/modules/container.css +45 -45
  28. package/dist-versioned/modules/copyright.css +11 -11
  29. package/dist-versioned/modules/display.css +9 -9
  30. package/dist-versioned/modules/flag.css +6 -6
  31. package/dist-versioned/modules/footnotes.css +7 -7
  32. package/dist-versioned/modules/headline.css +67 -67
  33. package/dist-versioned/modules/hidden-links.css +7 -7
  34. package/dist-versioned/modules/interactive.css +38 -38
  35. package/dist-versioned/modules/leadtext.css +8 -8
  36. package/dist-versioned/modules/list.css +47 -47
  37. package/dist-versioned/modules/mark.css +2 -2
  38. package/dist-versioned/modules/media.css +7 -7
  39. package/dist-versioned/modules/meta.css +12 -12
  40. package/dist-versioned/modules/paragraph.css +8 -8
  41. package/dist-versioned/modules/prose.css +231 -231
  42. package/dist-versioned/modules/status-badge.css +61 -0
  43. package/dist-versioned/modules/table-cell.css +23 -23
  44. package/dist-versioned/modules/table.css +4 -4
  45. package/dist-versioned/solid-styles.css +371 -327
  46. 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-1-0-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-1-0-chip--...
7
7
  */
8
8
 
9
- .sd-1-0-0-chip {
9
+ .sd-1-1-0-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-1-0-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-1-0-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-1-0-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-1-0-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-1-0-container--variant-... Defines the background color and border of sd-1-1-0-container.
48
+ * @variant { sm } sd-1-1-0-container--padding-... Defines the padding of sd-1-1-0-container. This makes it adaptable to both small and large screens.
49
+ * @variant { top | right | bottom | left } sd-1-1-0-container--triangle-... Defines an optional triangle cut-out for sd-1-1-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.
50
50
  */
51
51
 
52
- .sd-1-0-0-container {
52
+ .sd-1-1-0-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-1-0-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-1-0-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-1-0-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-1-0-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-1-0-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-1-0-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-1-0-container--triangle-top::before,
101
+ .sd-1-1-0-container--triangle-right::before,
102
+ .sd-1-1-0-container--triangle-bottom::before,
103
+ .sd-1-1-0-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-1-0-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-1-0-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-1-0-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-1-0-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-1-0-container--triangle-top-border::after,
137
+ .sd-1-1-0-container--triangle-top-border::before,
138
+ .sd-1-1-0-container--triangle-right-border::after,
139
+ .sd-1-1-0-container--triangle-right-border::before,
140
+ .sd-1-1-0-container--triangle-bottom-border::after,
141
+ .sd-1-1-0-container--triangle-bottom-border::before,
142
+ .sd-1-1-0-container--triangle-left-border::after,
143
+ .sd-1-1-0-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-1-0-container--triangle-top-border::after, .sd-1-1-0-container--triangle-right-border::after, .sd-1-1-0-container--triangle-bottom-border::after, .sd-1-1-0-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-1-0-container--triangle-top-border::before, .sd-1-1-0-container--triangle-right-border::before, .sd-1-1-0-container--triangle-bottom-border::before, .sd-1-1-0-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-1-0-container--triangle-top-border::after,
160
+ .sd-1-1-0-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-1-0-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-1-0-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-1-0-container--triangle-right-border::after,
177
+ .sd-1-1-0-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-1-0-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-1-0-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-1-0-container--triangle-bottom-border::after,
194
+ .sd-1-1-0-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-1-0-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-1-0-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-1-0-container--triangle-left-border::after,
211
+ .sd-1-1-0-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-1-0-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-1-0-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-1-0-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-1-0-copyright--orientation-... The copyright's orientation.
233
+ * @variant { black } sd-1-1-0-copyright--color-... The copyright's text color.
234
+ * @boolean sd-1-1-0-copyright--... Removes the shadow.
235
+ * @variant { top } sd-1-1-0-copyright--placement-... The copyright's placement.
236
236
  */
237
237
 
238
- .sd-1-0-0-copyright {
238
+ .sd-1-1-0-copyright {
239
239
  position: relative;
240
240
  }
241
241
 
242
- .sd-1-0-0-copyright::after {
242
+ .sd-1-1-0-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-1-0-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-1-0-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-1-0-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-1-0-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-1-0-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-1-0-flag--...
297
297
  */
298
298
 
299
- .sd-1-0-0-flag {
299
+ .sd-1-1-0-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-1-0-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-1-0-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-1-0-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-1-0-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-1-0-footnotes--inverted Inverts the footnote text.
337
337
  */
338
338
 
339
- .sd-1-0-0-footnotes {
339
+ .sd-1-1-0-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-1-0-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-1-0-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-1-0-footnotes:is(ul) {
365
365
  list-style: '';
366
366
  }
367
367
 
368
- .sd-1-0-0-footnotes--inverted {
368
+ .sd-1-1-0-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-1-0-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-1-0-hidden-links--multiple Adapts styling for multiple skip links.
380
+ * @boolean sd-1-1-0-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-1-0-hidden-links:not(:focus-within):not(.sd-1-1-0-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-1-0-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-1-0-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-1-0-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-1-0-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-1-0-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-1-0-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-1-0-meta--size-... The size. Small can be used as an alternative in tight spaces.
451
+ * @boolean sd-1-1-0-meta--inverted Inverts the meta element.
452
+ * @boolean sd-1-1-0-meta--pipe Adds a pipe right from the meta element.
453
+ * @boolean sd-1-1-0-meta--light Makes sd-1-1-0-meta light.
454
454
  */
455
455
 
456
- .sd-1-0-0-meta {
456
+ .sd-1-1-0-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,58 +461,102 @@ 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-1-0-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-1-0-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-1-0-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-1-0-meta--inverted.sd-1-1-0-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-1-0-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-1-0-meta--pipe.sd-1-1-0-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
  }
494
494
 
495
+ /**
496
+ * Description of the style.
497
+ * @name sd-1-1-0-status-badge
498
+ * @status stable
499
+ * @since 1.0
500
+ * @variant { sucess | warning | error | info } sd-1-1-0-status-badge--...
501
+ */
502
+
503
+ .sd-1-1-0-status-badge {
504
+ display: inline-flex;
505
+ align-items: center;
506
+ }
507
+
508
+ .sd-1-1-0-status-badge sd-icon {
509
+ margin-right: var(--sd-spacing-2, 0.5rem) /* 8px */;
510
+ display: flex;
511
+ height: var(--sd-spacing-3, 0.75rem) /* 12px */;
512
+ width: var(--sd-spacing-3, 0.75rem) /* 12px */;
513
+ border-radius: var(--sd-border-radius-full, 9999px) /* Radius for pill shape buttons */;
514
+ padding: var(--sd-spacing-1, 0.25rem) /* 4px */;
515
+ --tw-text-opacity: 1 !important;
516
+ color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */ !important;
517
+ }
518
+
519
+ .sd-1-1-0-status-badge--success sd-icon {
520
+
521
+ background-color: rgb(var(--sd-color-success, 37 136 14) / var(--tw-bg-opacity, 1)) /* Used for success messages */;
522
+ }
523
+
524
+ .sd-1-1-0-status-badge--warning sd-icon {
525
+
526
+ background-color: rgb(var(--sd-color-warning, 187 141 32) / var(--tw-bg-opacity, 1)) /* Used for notifications */;
527
+ }
528
+
529
+ .sd-1-1-0-status-badge--error sd-icon {
530
+
531
+ background-color: rgb(var(--sd-color-error, 204 25 55) / var(--tw-bg-opacity, 1)) /* Used for notification, status-badge */;
532
+ }
533
+
534
+ .sd-1-1-0-status-badge--info sd-icon {
535
+
536
+ background-color: rgb(var(--sd-color-info, 21 130 213) / var(--tw-bg-opacity, 1)) /* Used for notification, status-badge */;
537
+ }
538
+
495
539
  /* plop:style */
496
540
 
497
541
  /**
498
542
  * Prose
499
- * @name sd-1-0-0-prose
543
+ * @name sd-1-1-0-prose
500
544
  * @status stable
501
545
  * @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.
546
+ * @boolean sd-1-1-0-prose--inverted Inverts the content, but not tables.
547
+ * @boolean sd-1-1-0-prose--full-width Overrides the 80ch max-width and makes the prose full width.
504
548
  */
505
549
 
506
550
  /**
507
551
  * 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
552
+ * @name sd-1-1-0-display
509
553
  * @status stable
510
554
  * @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.
555
+ * @variant { xl | 3xl } sd-1-1-0-display--size-... The display's size.
556
+ * @boolean sd-1-1-0-display--inverted Inverts the display text.
513
557
  */
514
558
 
515
- .sd-1-0-0-display {
559
+ .sd-1-1-0-display {
516
560
  font-size: var(--sd-font-size-3xl, 2rem) /* 32px */;
517
561
  font-weight: 400;
518
562
  line-height: var(--sd-line-height-tight, 120%) /* Used for display and large titles */;
@@ -522,12 +566,12 @@ Used for inverted pressed interaction text link */;
522
566
 
523
567
  @media (min-width: 1024px) {
524
568
 
525
- .sd-1-0-0-display {
569
+ .sd-1-1-0-display {
526
570
  font-size: var(--sd-font-size-4xl, 2.5rem) /* 40px */;
527
571
  }
528
572
  }
529
573
 
530
- .sd-1-0-0-display--size-xl {
574
+ .sd-1-1-0-display--size-xl {
531
575
  font-size: var(--sd-font-size-xl, 1.5rem) /* 24px */;
532
576
  font-weight: 400;
533
577
  line-height: var(--sd-line-height-tight, 120%) /* Used for display and large titles */;
@@ -535,7 +579,7 @@ Used for inverted pressed interaction text link */;
535
579
  color: rgb(var(--sd-color-black, 24 24 24) / var(--tw-text-opacity, 1)) /* Default text color */;
536
580
  }
537
581
 
538
- .sd-1-0-0-display--size-3xl {
582
+ .sd-1-1-0-display--size-3xl {
539
583
  font-size: var(--sd-font-size-2xl, 1.75rem) /* 28px */;
540
584
  font-weight: 400;
541
585
  line-height: var(--sd-line-height-tight, 120%) /* Used for display and large titles */;
@@ -545,35 +589,35 @@ Used for inverted pressed interaction text link */;
545
589
 
546
590
  @media (min-width: 1024px) {
547
591
 
548
- .sd-1-0-0-display--size-3xl {
592
+ .sd-1-1-0-display--size-3xl {
549
593
  font-size: var(--sd-font-size-3xl, 2rem) /* 32px */;
550
594
  }
551
595
  }
552
596
 
553
- .sd-1-0-0-display--inverted {
597
+ .sd-1-1-0-display--inverted {
554
598
 
555
599
  color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */;
556
600
  }
557
601
 
558
602
  /**
559
603
  * 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
604
+ * @name sd-1-1-0-headline
561
605
  * @status stable
562
606
  * @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>
607
+ * @variant { 3xl | xl | lg | base } sd-1-1-0-headline--size-... The headline's size.
608
+ * @boolean sd-1-1-0-headline--inverted Inverts the headline text.
609
+ * @boolean sd-1-1-0-headline--inline Sets inline behavior. Used exclusively when an sd-icon or other component is present. See usage <a href="#inline">here.</a>
566
610
  */
567
611
 
568
- .sd-1-0-0-headline,
569
- .sd-1-0-0-prose :is(h1, h2, h3, h4, h5) {
612
+ .sd-1-1-0-headline,
613
+ .sd-1-1-0-prose :is(h1, h2, h3, h4, h5) {
570
614
  display: flex;
571
615
  font-weight: 700;
572
616
 
573
617
  color: rgb(var(--sd-color-primary, 0 53 142) / var(--tw-text-opacity, 1)) /* Primary brand color for text */;
574
618
  }
575
619
 
576
- .sd-1-0-0-headline sd-icon, .sd-1-0-0-prose :is(h1, h2, h3, h4, h5) sd-icon {
620
+ .sd-1-1-0-headline sd-icon, .sd-1-1-0-prose :is(h1, h2, h3, h4, h5) sd-icon {
577
621
  flex-shrink: 0;
578
622
  font-size: 3rem;
579
623
 
@@ -582,15 +626,15 @@ Used for inverted pressed interaction text link */;
582
626
 
583
627
  @media (min-width: 640px) {
584
628
 
585
- .sd-1-0-0-headline sd-icon, .sd-1-0-0-prose :is(h1, h2, h3, h4, h5) sd-icon {
629
+ .sd-1-1-0-headline sd-icon, .sd-1-1-0-prose :is(h1, h2, h3, h4, h5) sd-icon {
586
630
  margin-top: var(--sd-spacing-2, 0.5rem) /* 8px */;
587
631
  }
588
632
  }
589
633
 
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) {
634
+ .sd-1-1-0-headline.sd-1-1-0-headline,
635
+ .sd-1-1-0-headline:is(h1):not(.sd-1-1-0-headline),
636
+ .sd-1-1-0-prose :is(h1, h2, h3, h4, h5).sd-1-1-0-headline,
637
+ .sd-1-1-0-prose :is(h1, h2, h3, h4, h5):is(h1):not(.sd-1-1-0-headline) {
594
638
  gap: var(--sd-spacing-4, 1rem) /* 16px */;
595
639
  font-size: var(--sd-font-size-3xl, 2rem) /* 32px */;
596
640
  line-height: var(--sd-line-height-tight, 120%) /* Used for display and large titles */;
@@ -598,29 +642,29 @@ Used for inverted pressed interaction text link */;
598
642
 
599
643
  @media (min-width: 640px) {
600
644
 
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) {
645
+ .sd-1-1-0-headline.sd-1-1-0-headline,
646
+ .sd-1-1-0-headline:is(h1):not(.sd-1-1-0-headline),
647
+ .sd-1-1-0-prose :is(h1, h2, h3, h4, h5).sd-1-1-0-headline,
648
+ .sd-1-1-0-prose :is(h1, h2, h3, h4, h5):is(h1):not(.sd-1-1-0-headline) {
605
649
  font-size: var(--sd-font-size-4xl, 2.5rem) /* 40px */;
606
650
  }
607
651
  }
608
652
 
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 {
653
+ .sd-1-1-0-headline.sd-1-1-0-headline sd-icon, .sd-1-1-0-headline:is(h1):not(.sd-1-1-0-headline) sd-icon, .sd-1-1-0-prose :is(h1, h2, h3, h4, h5).sd-1-1-0-headline sd-icon, .sd-1-1-0-prose :is(h1, h2, h3, h4, h5):is(h1):not(.sd-1-1-0-headline) sd-icon {
610
654
  margin-top: calc(var(--sd-spacing-1, 0.25rem) /* 4px */ * -1);
611
655
  }
612
656
 
613
657
  @media (min-width: 640px) {
614
658
 
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 {
659
+ .sd-1-1-0-headline.sd-1-1-0-headline sd-icon, .sd-1-1-0-headline:is(h1):not(.sd-1-1-0-headline) sd-icon, .sd-1-1-0-prose :is(h1, h2, h3, h4, h5).sd-1-1-0-headline sd-icon, .sd-1-1-0-prose :is(h1, h2, h3, h4, h5):is(h1):not(.sd-1-1-0-headline) sd-icon {
616
660
  margin-top: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
617
661
  }
618
662
  }
619
663
 
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) {
664
+ .sd-1-1-0-headline.sd-1-1-0-headline--size-3xl,
665
+ .sd-1-1-0-headline:is(h2):not(.sd-1-1-0-headline),
666
+ .sd-1-1-0-prose :is(h1, h2, h3, h4, h5).sd-1-1-0-headline--size-3xl,
667
+ .sd-1-1-0-prose :is(h1, h2, h3, h4, h5):is(h2):not(.sd-1-1-0-headline) {
624
668
  gap: var(--sd-spacing-4, 1rem) /* 16px */;
625
669
  font-size: var(--sd-font-size-2xl, 1.75rem) /* 28px */;
626
670
  line-height: var(--sd-line-height-tight, 120%) /* Used for display and large titles */;
@@ -628,144 +672,144 @@ Used for inverted pressed interaction text link */;
628
672
 
629
673
  @media (min-width: 640px) {
630
674
 
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) {
675
+ .sd-1-1-0-headline.sd-1-1-0-headline--size-3xl,
676
+ .sd-1-1-0-headline:is(h2):not(.sd-1-1-0-headline),
677
+ .sd-1-1-0-prose :is(h1, h2, h3, h4, h5).sd-1-1-0-headline--size-3xl,
678
+ .sd-1-1-0-prose :is(h1, h2, h3, h4, h5):is(h2):not(.sd-1-1-0-headline) {
635
679
  font-size: var(--sd-font-size-3xl, 2rem) /* 32px */;
636
680
  }
637
681
  }
638
682
 
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 {
683
+ .sd-1-1-0-headline.sd-1-1-0-headline--size-3xl sd-icon, .sd-1-1-0-headline:is(h2):not(.sd-1-1-0-headline) sd-icon, .sd-1-1-0-prose :is(h1, h2, h3, h4, h5).sd-1-1-0-headline--size-3xl sd-icon, .sd-1-1-0-prose :is(h1, h2, h3, h4, h5):is(h2):not(.sd-1-1-0-headline) sd-icon {
640
684
  margin-top: calc(var(--sd-spacing-1, 0.25rem) /* 4px */ * -1);
641
685
  }
642
686
 
643
687
  @media (min-width: 640px) {
644
688
 
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 {
689
+ .sd-1-1-0-headline.sd-1-1-0-headline--size-3xl sd-icon, .sd-1-1-0-headline:is(h2):not(.sd-1-1-0-headline) sd-icon, .sd-1-1-0-prose :is(h1, h2, h3, h4, h5).sd-1-1-0-headline--size-3xl sd-icon, .sd-1-1-0-prose :is(h1, h2, h3, h4, h5):is(h2):not(.sd-1-1-0-headline) sd-icon {
646
690
  margin-top: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
647
691
  }
648
692
  }
649
693
 
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) {
694
+ .sd-1-1-0-headline.sd-1-1-0-headline--size-xl,
695
+ .sd-1-1-0-headline.sd-1-1-0-headline--size-lg,
696
+ .sd-1-1-0-headline.sd-1-1-0-headline--size-base,
697
+ .sd-1-1-0-headline:is(h3, h4, h5):not(.sd-1-1-0-headline),
698
+ .sd-1-1-0-prose :is(h1, h2, h3, h4, h5).sd-1-1-0-headline--size-xl,
699
+ .sd-1-1-0-prose :is(h1, h2, h3, h4, h5).sd-1-1-0-headline--size-lg,
700
+ .sd-1-1-0-prose :is(h1, h2, h3, h4, h5).sd-1-1-0-headline--size-base,
701
+ .sd-1-1-0-prose :is(h1, h2, h3, h4, h5):is(h3, h4, h5):not(.sd-1-1-0-headline) {
658
702
  gap: var(--sd-spacing-2, 0.5rem) /* 8px */;
659
703
 
660
704
  color: rgb(var(--sd-color-black, 24 24 24) / var(--tw-text-opacity, 1)) /* Default text color */;
661
705
  }
662
706
 
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 {
707
+ .sd-1-1-0-headline.sd-1-1-0-headline--size-xl sd-icon, .sd-1-1-0-headline.sd-1-1-0-headline--size-lg sd-icon, .sd-1-1-0-headline.sd-1-1-0-headline--size-base sd-icon, .sd-1-1-0-headline:is(h3, h4, h5):not(.sd-1-1-0-headline) sd-icon, .sd-1-1-0-prose :is(h1, h2, h3, h4, h5).sd-1-1-0-headline--size-xl sd-icon, .sd-1-1-0-prose :is(h1, h2, h3, h4, h5).sd-1-1-0-headline--size-lg sd-icon, .sd-1-1-0-prose :is(h1, h2, h3, h4, h5).sd-1-1-0-headline--size-base sd-icon, .sd-1-1-0-prose :is(h1, h2, h3, h4, h5):is(h3, h4, h5):not(.sd-1-1-0-headline) sd-icon {
664
708
  font-size: 2rem;
665
709
  }
666
710
 
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) {
711
+ .sd-1-1-0-headline.sd-1-1-0-headline--size-xl,
712
+ .sd-1-1-0-headline:is(h3):not(.sd-1-1-0-headline),
713
+ .sd-1-1-0-prose :is(h1, h2, h3, h4, h5).sd-1-1-0-headline--size-xl,
714
+ .sd-1-1-0-prose :is(h1, h2, h3, h4, h5):is(h3):not(.sd-1-1-0-headline) {
671
715
  font-size: var(--sd-font-size-xl, 1.5rem) /* 24px */;
672
716
  }
673
717
 
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 {
718
+ .sd-1-1-0-headline.sd-1-1-0-headline--size-xl sd-icon, .sd-1-1-0-headline:is(h3):not(.sd-1-1-0-headline) sd-icon, .sd-1-1-0-prose :is(h1, h2, h3, h4, h5).sd-1-1-0-headline--size-xl sd-icon, .sd-1-1-0-prose :is(h1, h2, h3, h4, h5):is(h3):not(.sd-1-1-0-headline) sd-icon {
675
719
  margin-top: var(--sd-spacing-0-5, 0.125rem) /* 2px */;
676
720
  }
677
721
 
678
722
  @media (min-width: 640px) {
679
723
 
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 {
724
+ .sd-1-1-0-headline.sd-1-1-0-headline--size-xl sd-icon, .sd-1-1-0-headline:is(h3):not(.sd-1-1-0-headline) sd-icon, .sd-1-1-0-prose :is(h1, h2, h3, h4, h5).sd-1-1-0-headline--size-xl sd-icon, .sd-1-1-0-prose :is(h1, h2, h3, h4, h5):is(h3):not(.sd-1-1-0-headline) sd-icon {
681
725
  margin-top: var(--sd-spacing-0-5, 0.125rem) /* 2px */;
682
726
  }
683
727
  }
684
728
 
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) {
729
+ .sd-1-1-0-headline.sd-1-1-0-headline--size-lg,
730
+ .sd-1-1-0-headline.sd-1-1-0-headline--size-base,
731
+ .sd-1-1-0-headline:is(h4, h5):not(.sd-1-1-0-headline),
732
+ .sd-1-1-0-prose :is(h1, h2, h3, h4, h5).sd-1-1-0-headline--size-lg,
733
+ .sd-1-1-0-prose :is(h1, h2, h3, h4, h5).sd-1-1-0-headline--size-base,
734
+ .sd-1-1-0-prose :is(h1, h2, h3, h4, h5):is(h4, h5):not(.sd-1-1-0-headline) {
691
735
  line-height: var(--sd-line-height-normal, 150%) /* Used for body copy and smaller titles */;
692
736
  }
693
737
 
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) {
738
+ .sd-1-1-0-headline.sd-1-1-0-headline--size-lg,
739
+ .sd-1-1-0-headline:is(h4),
740
+ .sd-1-1-0-prose :is(h1, h2, h3, h4, h5).sd-1-1-0-headline--size-lg,
741
+ .sd-1-1-0-prose :is(h1, h2, h3, h4, h5):is(h4) {
698
742
  font-size: var(--sd-font-size-lg, 1.25rem) /* 20px */;
699
743
  }
700
744
 
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 {
745
+ .sd-1-1-0-headline.sd-1-1-0-headline--size-lg sd-icon, .sd-1-1-0-headline:is(h4) sd-icon, .sd-1-1-0-prose :is(h1, h2, h3, h4, h5).sd-1-1-0-headline--size-lg sd-icon, .sd-1-1-0-prose :is(h1, h2, h3, h4, h5):is(h4) sd-icon {
702
746
  margin-top: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
703
747
  }
704
748
 
705
749
  @media (min-width: 640px) {
706
750
 
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 {
751
+ .sd-1-1-0-headline.sd-1-1-0-headline--size-lg sd-icon, .sd-1-1-0-headline:is(h4) sd-icon, .sd-1-1-0-prose :is(h1, h2, h3, h4, h5).sd-1-1-0-headline--size-lg sd-icon, .sd-1-1-0-prose :is(h1, h2, h3, h4, h5):is(h4) sd-icon {
708
752
  margin-top: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
709
753
  }
710
754
  }
711
755
 
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) {
756
+ .sd-1-1-0-headline.sd-1-1-0-headline--size-base,
757
+ .sd-1-1-0-headline:is(h5):not(.sd-1-1-0-headline),
758
+ .sd-1-1-0-prose :is(h1, h2, h3, h4, h5).sd-1-1-0-headline--size-base,
759
+ .sd-1-1-0-prose :is(h1, h2, h3, h4, h5):is(h5):not(.sd-1-1-0-headline) {
716
760
  font-size: var(--sd-font-size-base, 1rem) /* 16px */;
717
761
  }
718
762
 
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 {
763
+ .sd-1-1-0-headline.sd-1-1-0-headline--size-base sd-icon, .sd-1-1-0-headline:is(h5):not(.sd-1-1-0-headline) sd-icon, .sd-1-1-0-prose :is(h1, h2, h3, h4, h5).sd-1-1-0-headline--size-base sd-icon, .sd-1-1-0-prose :is(h1, h2, h3, h4, h5):is(h5):not(.sd-1-1-0-headline) sd-icon {
720
764
  margin-top: calc(var(--sd-spacing-1, 0.25rem) /* 4px */ * -1);
721
765
  }
722
766
 
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 {
767
+ .sd-1-1-0-headline.sd-1-1-0-headline--size-base mark, .sd-1-1-0-headline:is(h5):not(.sd-1-1-0-headline) mark, .sd-1-1-0-prose :is(h1, h2, h3, h4, h5).sd-1-1-0-headline--size-base mark, .sd-1-1-0-prose :is(h1, h2, h3, h4, h5):is(h5):not(.sd-1-1-0-headline) mark {
724
768
  color: inherit;
725
769
  }
726
770
 
727
- .sd-1-0-0-headline--inline {
771
+ .sd-1-1-0-headline--inline {
728
772
  display: inline-block;
729
773
  }
730
774
 
731
- .sd-1-0-0-headline--inline sd-icon {
775
+ .sd-1-1-0-headline--inline sd-icon {
732
776
  margin-right: var(--sd-spacing-2, 0.5rem) /* 8px */;
733
777
  margin-top: calc(var(--sd-spacing-1, 0.25rem) /* 4px */ * -1);
734
778
  vertical-align: middle;
735
779
  }
736
780
 
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 {
781
+ .sd-1-1-0-headline--inline:is(.sd-1-1-0-headline--size-xl, .sd-1-1-0-headline--size-lg, .sd-1-1-0-headline--size-base) sd-icon {
738
782
  margin-right: var(--sd-spacing-0-5, 0.125rem) /* 2px */;
739
783
  }
740
784
 
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(#_) {
785
+ .sd-1-1-0-headline--inverted:not(#_),
786
+ .sd-1-1-0-prose--inverted :is(h1, h2, h3, h4, h5):not(.sd-1-1-0-headline):not(#_) {
743
787
 
744
788
  color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */;
745
789
  }
746
790
 
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 {
791
+ .sd-1-1-0-headline--inverted:not(#_) sd-icon, .sd-1-1-0-prose--inverted :is(h1, h2, h3, h4, h5):not(.sd-1-1-0-headline):not(#_) sd-icon {
748
792
 
749
793
  color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */;
750
794
  }
751
795
 
752
796
  /**
753
797
  * Generates basic styles for interactive elements.
754
- * @name sd-1-0-0-interactive
798
+ * @name sd-1-1-0-interactive
755
799
  * @status stable
756
800
  * @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.
801
+ * @boolean sd-1-1-0-interactive--disabled Makes an element look disabled.
802
+ * @boolean sd-1-1-0-interactive--inverted Inverts the colors of an element.
803
+ * @boolean sd-1-1-0-interactive--reset Resets the default browser styles of e.g., a button.
760
804
  */
761
805
 
762
- .sd-1-0-0-prose a--reset, .sd-1-0-0-interactive--reset {
806
+ .sd-1-1-0-prose a--reset, .sd-1-1-0-interactive--reset {
763
807
  all: unset;
764
808
  outline: revert;
765
809
  }
766
810
 
767
- .sd-1-0-0-prose a,
768
- .sd-1-0-0-interactive {
811
+ .sd-1-1-0-prose a,
812
+ .sd-1-1-0-interactive {
769
813
  cursor: pointer;
770
814
 
771
815
  color: rgb(var(--sd-color-primary, 0 53 142) / var(--tw-text-opacity, 1)) /* Primary brand color for text */;
@@ -775,80 +819,80 @@ Used for inverted pressed interaction text link */;
775
819
  transition-duration: 150ms;
776
820
  }
777
821
 
778
- .sd-1-0-0-prose a:hover:not([disabled]),
779
- .sd-1-0-0-interactive:hover:not([disabled]) {
822
+ .sd-1-1-0-prose a:hover:not([disabled]),
823
+ .sd-1-1-0-interactive:hover:not([disabled]) {
780
824
 
781
825
  color: rgb(var(--sd-color-primary-500, 70 109 175) / var(--tw-text-opacity, 1)) /* Used for hover interaction */;
782
826
  }
783
827
 
784
- .sd-1-0-0-prose a:active:not([disabled]),
785
- .sd-1-0-0-interactive:active:not([disabled]) {
828
+ .sd-1-1-0-prose a:active:not([disabled]),
829
+ .sd-1-1-0-interactive:active:not([disabled]) {
786
830
 
787
831
  color: rgb(var(--sd-color-primary-800, 5 21 48) / var(--tw-text-opacity, 1)) /* Used for pressed interaction */;
788
832
  }
789
833
 
790
- .sd-1-0-0-prose a:is(.sd-1-0-0-interactive), .sd-1-0-0-interactive:is(.sd-1-0-0-interactive) {
834
+ .sd-1-1-0-prose a:is(.sd-1-1-0-interactive), .sd-1-1-0-interactive:is(.sd-1-1-0-interactive) {
791
835
  text-decoration-line: none;
792
836
  }
793
837
 
794
- .sd-1-0-0-prose a:focus-visible, .sd-1-0-0-interactive:focus-visible {
838
+ .sd-1-1-0-prose a:focus-visible, .sd-1-1-0-interactive:focus-visible {
795
839
  outline-style: solid;
796
840
  outline-width: 2px;
797
841
  outline-offset: 2px;
798
842
  outline-color: rgb(var(--sd-color-primary, 0 53 142) / 1) /* Used for buttons, select field, focus state */;
799
843
  }
800
844
 
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=''] {
845
+ .sd-1-1-0-prose a--disabled,
846
+ .sd-1-1-0-prose a[disabled],
847
+ .sd-1-1-0-prose a[href=''],
848
+ .sd-1-1-0-interactive--disabled,
849
+ .sd-1-1-0-interactive[disabled],
850
+ .sd-1-1-0-interactive[href=''] {
807
851
  cursor: not-allowed;
808
852
 
809
853
  color: rgb(var(--sd-color-neutral-600, 136 136 136) / var(--tw-text-opacity, 1)) /* Used for inverted disabled state */;
810
854
  }
811
855
 
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]) {
856
+ .sd-1-1-0-prose a--disabled:hover:not([disabled]),
857
+ .sd-1-1-0-prose a[disabled]:hover:not([disabled]),
858
+ .sd-1-1-0-prose a[href='']:hover:not([disabled]),
859
+ .sd-1-1-0-interactive--disabled:hover:not([disabled]),
860
+ .sd-1-1-0-interactive[disabled]:hover:not([disabled]),
861
+ .sd-1-1-0-interactive[href='']:hover:not([disabled]) {
818
862
 
819
863
  color: rgb(var(--sd-color-neutral-600, 136 136 136) / var(--tw-text-opacity, 1)) /* Used for inverted disabled state */;
820
864
  }
821
865
 
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]) {
866
+ .sd-1-1-0-prose a--disabled:active:not([disabled]),
867
+ .sd-1-1-0-prose a[disabled]:active:not([disabled]),
868
+ .sd-1-1-0-prose a[href='']:active:not([disabled]),
869
+ .sd-1-1-0-interactive--disabled:active:not([disabled]),
870
+ .sd-1-1-0-interactive[disabled]:active:not([disabled]),
871
+ .sd-1-1-0-interactive[href='']:active:not([disabled]) {
828
872
 
829
873
  color: rgb(var(--sd-color-neutral-600, 136 136 136) / var(--tw-text-opacity, 1)) /* Used for inverted disabled state */;
830
874
  }
831
875
 
832
- .sd-1-0-0-prose--inverted a,
833
- .sd-1-0-0-interactive--inverted {
876
+ .sd-1-1-0-prose--inverted a,
877
+ .sd-1-1-0-interactive--inverted {
834
878
 
835
879
  color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */;
836
880
  }
837
881
 
838
- .sd-1-0-0-prose--inverted a:hover:not([disabled]),
839
- .sd-1-0-0-interactive--inverted:hover:not([disabled]) {
882
+ .sd-1-1-0-prose--inverted a:hover:not([disabled]),
883
+ .sd-1-1-0-interactive--inverted:hover:not([disabled]) {
840
884
 
841
885
  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
886
  }
843
887
 
844
- .sd-1-0-0-prose--inverted a:active:not([disabled]),
845
- .sd-1-0-0-interactive--inverted:active:not([disabled]) {
888
+ .sd-1-1-0-prose--inverted a:active:not([disabled]),
889
+ .sd-1-1-0-interactive--inverted:active:not([disabled]) {
846
890
 
847
891
  color: rgb(var(--sd-color-primary-400, 153 171 208) / var(--tw-text-opacity, 1)) /* Additional text inverted color
848
892
  Used for inverted pressed interaction text link */;
849
893
  }
850
894
 
851
- .sd-1-0-0-prose--inverted a:focus-visible, .sd-1-0-0-interactive--inverted:focus-visible {
895
+ .sd-1-1-0-prose--inverted a:focus-visible, .sd-1-1-0-interactive--inverted:focus-visible {
852
896
  outline-style: solid;
853
897
  outline-width: 2px;
854
898
  outline-offset: 2px;
@@ -857,15 +901,15 @@ Used for inverted pressed interaction text link */;
857
901
 
858
902
  /**
859
903
  * Leadtext is used for text that should be highlighted and a focal point of the page.
860
- * @name sd-1-0-0-leadtext
904
+ * @name sd-1-1-0-leadtext
861
905
  * @status stable
862
906
  * @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.
907
+ * @variant { lg } sd-1-1-0-leadtext--size-... The leadtext's size.
908
+ * @boolean sd-1-1-0-leadtext--inverted Inverts the leadtext text.
865
909
  */
866
910
 
867
- .sd-1-0-0-prose > .sd-1-0-0-leadtext,
868
- .sd-1-0-0-leadtext {
911
+ .sd-1-1-0-prose > .sd-1-1-0-leadtext,
912
+ .sd-1-1-0-leadtext {
869
913
  font-size: var(--sd-font-size-xl, 1.5rem) /* 24px */;
870
914
  font-weight: 400;
871
915
  line-height: var(--sd-line-height-normal, 150%) /* Used for body copy and smaller titles */;
@@ -873,7 +917,7 @@ Used for inverted pressed interaction text link */;
873
917
  color: rgb(var(--sd-color-black, 24 24 24) / var(--tw-text-opacity, 1)) /* Default text color */;
874
918
  }
875
919
 
876
- .sd-1-0-0-prose > .sd-1-0-0-leadtext--size-lg, .sd-1-0-0-leadtext--size-lg {
920
+ .sd-1-1-0-prose > .sd-1-1-0-leadtext--size-lg, .sd-1-1-0-leadtext--size-lg {
877
921
  font-size: var(--sd-font-size-lg, 1.25rem) /* 20px */;
878
922
  font-weight: 400;
879
923
  line-height: var(--sd-line-height-normal, 150%) /* Used for body copy and smaller titles */;
@@ -881,111 +925,111 @@ Used for inverted pressed interaction text link */;
881
925
  color: rgb(var(--sd-color-black, 24 24 24) / var(--tw-text-opacity, 1)) /* Default text color */;
882
926
  }
883
927
 
884
- .sd-1-0-0-prose--inverted > .sd-1-0-0-leadtext,
885
- .sd-1-0-0-leadtext--inverted {
928
+ .sd-1-1-0-prose--inverted > .sd-1-1-0-leadtext,
929
+ .sd-1-1-0-leadtext--inverted {
886
930
 
887
931
  color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */;
888
932
  }
889
933
 
890
934
  /**
891
935
  * Generates basic styles for list elements.
892
- * @name sd-1-0-0-list
936
+ * @name sd-1-1-0-list
893
937
  * @status stable
894
938
  * @since 1.39.0
895
- * @boolean sd-1-0-0-list--inverted Inverts the list text.
939
+ * @boolean sd-1-1-0-list--inverted Inverts the list text.
896
940
  */
897
941
 
898
- .sd-1-0-0-list:not(.sd-1-0-0-list--icon),
899
- .sd-1-0-0-prose > :is(ol, ul) {
942
+ .sd-1-1-0-list:not(.sd-1-1-0-list--icon),
943
+ .sd-1-1-0-prose > :is(ol, ul) {
900
944
  padding-top: var(--sd-spacing-4, 1rem) /* 16px */;
901
945
  padding-bottom: var(--sd-spacing-4, 1rem) /* 16px */;
902
946
  text-align: left;
903
947
  }
904
948
 
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) {
949
+ .sd-1-1-0-list:not(.sd-1-1-0-list--icon) li:not(:first-child), .sd-1-1-0-prose > :is(ol, ul) li:not(:first-child) {
906
950
  margin-top: var(--sd-spacing-3, 0.75rem) /* 12px */;
907
951
  }
908
952
 
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 {
953
+ .sd-1-1-0-list:not(.sd-1-1-0-list--icon) ol,
954
+ .sd-1-1-0-list:not(.sd-1-1-0-list--icon) ul,
955
+ .sd-1-1-0-prose > :is(ol, ul) ol,
956
+ .sd-1-1-0-prose > :is(ol, ul) ul {
913
957
  padding-top: var(--sd-spacing-3, 0.75rem) /* 12px */;
914
958
  }
915
959
 
916
960
  /* Counter handling for ordered lists. */
917
961
 
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 {
962
+ .sd-1-1-0-list:not(.sd-1-1-0-list--icon):is(ol) > li, .sd-1-1-0-list:not(.sd-1-1-0-list--icon) ol > li, .sd-1-1-0-prose > :is(ol, ul):is(ol) > li, .sd-1-1-0-prose > :is(ol, ul) ol > li {
919
963
  counter-increment: item;
920
964
  }
921
965
 
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 {
966
+ .sd-1-1-0-list:not(.sd-1-1-0-list--icon):is(ol) > li:before, .sd-1-1-0-list:not(.sd-1-1-0-list--icon) ol > li:before, .sd-1-1-0-prose > :is(ol, ul):is(ol) > li:before, .sd-1-1-0-prose > :is(ol, ul) ol > li:before {
923
967
  content: counters(item, '.') '. ';
924
968
  }
925
969
 
926
970
  /* Add second level */
927
971
 
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 {
972
+ .sd-1-1-0-list:not(.sd-1-1-0-list--icon):is(ol),
973
+ .sd-1-1-0-list:not(.sd-1-1-0-list--icon):is(ol) > li > ol,
974
+ .sd-1-1-0-list:not(.sd-1-1-0-list--icon) ol > li > ol,
975
+ .sd-1-1-0-prose > :is(ol, ul):is(ol),
976
+ .sd-1-1-0-prose > :is(ol, ul):is(ol) > li > ol,
977
+ .sd-1-1-0-prose > :is(ol, ul) ol > li > ol {
934
978
  counter-reset: item;
935
979
  }
936
980
 
937
981
  /* Ordered lists inside unordered lists. */
938
982
 
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 {
983
+ .sd-1-1-0-list:not(.sd-1-1-0-list--icon):is(ul) > li > ol,
984
+ .sd-1-1-0-list:not(.sd-1-1-0-list--icon) ul > li > ol,
985
+ .sd-1-1-0-prose > :is(ol, ul):is(ul) > li > ol,
986
+ .sd-1-1-0-prose > :is(ol, ul) ul > li > ol {
943
987
  counter-set: item 0;
944
988
  }
945
989
 
946
990
  /* Styling */
947
991
 
948
- .sd-1-0-0-list:not(.sd-1-0-0-list--icon) li, .sd-1-0-0-prose > :is(ol, ul) li {
992
+ .sd-1-1-0-list:not(.sd-1-1-0-list--icon) li, .sd-1-1-0-prose > :is(ol, ul) li {
949
993
  display: table;
950
994
  }
951
995
 
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 {
996
+ .sd-1-1-0-list:not(.sd-1-1-0-list--icon) li:before, .sd-1-1-0-prose > :is(ol, ul) li:before {
953
997
  display: table-cell;
954
998
  padding-right: var(--sd-spacing-2, 0.5rem) /* 8px */;
955
999
  }
956
1000
 
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 {
1001
+ .sd-1-1-0-list:not(.sd-1-1-0-list--icon):is(ul),
1002
+ .sd-1-1-0-list:not(.sd-1-1-0-list--icon) ul,
1003
+ .sd-1-1-0-prose > :is(ol, ul):is(ul),
1004
+ .sd-1-1-0-prose > :is(ol, ul) ul {
961
1005
  list-style-type: '';
962
1006
  }
963
1007
 
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 {
1008
+ .sd-1-1-0-list:not(.sd-1-1-0-list--icon):is(ul):not(.sd-1-1-0-list--icon) > li:before, .sd-1-1-0-list:not(.sd-1-1-0-list--icon) ul > li:before, .sd-1-1-0-prose > :is(ol, ul):is(ul):not(.sd-1-1-0-list--icon) > li:before, .sd-1-1-0-prose > :is(ol, ul) ul > li:before {
965
1009
  content: '\2022';
966
1010
  }
967
1011
 
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 {
1012
+ .sd-1-1-0-list:not(.sd-1-1-0-list--icon):is(ul):not(.sd-1-1-0-list--icon) > li > ul > li:before, .sd-1-1-0-list:not(.sd-1-1-0-list--icon) ul > li > ul > li:before, .sd-1-1-0-prose > :is(ol, ul):is(ul):not(.sd-1-1-0-list--icon) > li > ul > li:before, .sd-1-1-0-prose > :is(ol, ul) ul > li > ul > li:before {
969
1013
  content: '\002B1D';
970
1014
  }
971
1015
 
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 {
1016
+ .sd-1-1-0-list:not(.sd-1-1-0-list--icon):is(ul):not(.sd-1-1-0-list--icon) > li > ul > li > ul > li:before, .sd-1-1-0-list:not(.sd-1-1-0-list--icon) ul > li > ul > li > ul > li:before, .sd-1-1-0-prose > :is(ol, ul):is(ul):not(.sd-1-1-0-list--icon) > li > ul > li > ul > li:before, .sd-1-1-0-prose > :is(ol, ul) ul > li > ul > li > ul > li:before {
973
1017
  content: '\2010';
974
1018
  }
975
1019
 
976
- .sd-1-0-0-list--icon {
1020
+ .sd-1-1-0-list--icon {
977
1021
  padding-top: var(--sd-spacing-4, 1rem) /* 16px */;
978
1022
  padding-bottom: var(--sd-spacing-4, 1rem) /* 16px */;
979
1023
  text-align: left;
980
1024
  }
981
1025
 
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 {
1026
+ .sd-1-1-0-list--icon li sd-icon:first-of-type,
1027
+ .sd-1-1-0-list--icon li .sd-1-1-0-list--icon__icon:first-of-type {
984
1028
 
985
1029
  color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */;
986
1030
  }
987
1031
 
988
- .sd-1-0-0-list--icon {
1032
+ .sd-1-1-0-list--icon {
989
1033
  list-style-type: '';
990
1034
  }
991
1035
 
@@ -993,19 +1037,19 @@ Used for inverted pressed interaction text link */;
993
1037
  styles without affecting semantics is to set list-style-type to an empty string.
994
1038
  https://www.matuzo.at/blog/2023/removing-list-styles-without-affecting-semantics */
995
1039
 
996
- .sd-1-0-0-list--icon > li:first-of-type {
1040
+ .sd-1-1-0-list--icon > li:first-of-type {
997
1041
  padding-top: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
998
1042
  }
999
1043
 
1000
- .sd-1-0-0-list--icon li {
1044
+ .sd-1-1-0-list--icon li {
1001
1045
  position: relative;
1002
1046
  padding-top: var(--sd-spacing-3, 0.75rem) /* 12px */;
1003
1047
  padding-left: var(--sd-spacing-10, 2.5rem) /* 40px */;
1004
1048
  line-height: 32px;
1005
1049
  }
1006
1050
 
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 {
1051
+ .sd-1-1-0-list--icon li > sd-icon:first-of-type,
1052
+ .sd-1-1-0-list--icon li > .sd-1-1-0-list--icon__icon:first-of-type {
1009
1053
  position: absolute;
1010
1054
  left: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
1011
1055
  font-size: var(--sd-font-size-3xl, 2rem) /* 32px */;
@@ -1013,44 +1057,44 @@ Used for inverted pressed interaction text link */;
1013
1057
  color: rgb(var(--sd-color-primary, 0 53 142) / var(--tw-text-opacity, 1)) /* Primary brand color for text */;
1014
1058
  }
1015
1059
 
1016
- .sd-1-0-0-list--icon.sd-1-0-0-list--horizontal {
1060
+ .sd-1-1-0-list--icon.sd-1-1-0-list--horizontal {
1017
1061
  display: flex;
1018
1062
  }
1019
1063
 
1020
- .sd-1-0-0-list--icon.sd-1-0-0-list--horizontal li {
1064
+ .sd-1-1-0-list--icon.sd-1-1-0-list--horizontal li {
1021
1065
  display: flex;
1022
1066
  padding-top: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
1023
1067
  }
1024
1068
 
1025
- .sd-1-0-0-list--icon.sd-1-0-0-list--horizontal li:not(:last-child) {
1069
+ .sd-1-1-0-list--icon.sd-1-1-0-list--horizontal li:not(:last-child) {
1026
1070
  margin-right: var(--sd-spacing-8, 2rem) /* 32px */;
1027
1071
  }
1028
1072
 
1029
- .sd-1-0-0-list--inverted,
1030
- .sd-1-0-0-prose--inverted > :is(ol, ul) {
1073
+ .sd-1-1-0-list--inverted,
1074
+ .sd-1-1-0-prose--inverted > :is(ol, ul) {
1031
1075
 
1032
1076
  color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */;
1033
1077
  }
1034
1078
 
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 {
1079
+ .sd-1-1-0-list--inverted li > sd-icon:first-of-type,
1080
+ .sd-1-1-0-list--inverted li > .sd-1-1-0-list--icon__icon:first-of-type,
1081
+ .sd-1-1-0-prose--inverted > :is(ol, ul) li > sd-icon:first-of-type,
1082
+ .sd-1-1-0-prose--inverted > :is(ol, ul) li > .sd-1-1-0-list--icon__icon:first-of-type {
1039
1083
 
1040
1084
  color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */;
1041
1085
  }
1042
1086
 
1043
1087
  /**
1044
1088
  * 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
1089
+ * @name sd-1-1-0-paragraph
1046
1090
  * @status stable
1047
1091
  * @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.
1092
+ * @variant { sm } sd-1-1-0-paragraph--size-... The paragraph's font size.
1093
+ * @boolean sd-1-1-0-paragraph--inverted Inverts the paragraph text.
1050
1094
  */
1051
1095
 
1052
- .sd-1-0-0-paragraph,
1053
- .sd-1-0-0-prose p {
1096
+ .sd-1-1-0-paragraph,
1097
+ .sd-1-1-0-prose p {
1054
1098
  font-size: var(--sd-font-size-base, 1rem) /* 16px */;
1055
1099
  font-weight: 400;
1056
1100
  line-height: var(--sd-line-height-normal, 150%) /* Used for body copy and smaller titles */;
@@ -1058,7 +1102,7 @@ Used for inverted pressed interaction text link */;
1058
1102
  color: rgb(var(--sd-color-black, 24 24 24) / var(--tw-text-opacity, 1)) /* Default text color */;
1059
1103
  }
1060
1104
 
1061
- .sd-1-0-0-paragraph--size-sm, .sd-1-0-0-prose p--size-sm {
1105
+ .sd-1-1-0-paragraph--size-sm, .sd-1-1-0-prose p--size-sm {
1062
1106
  font-size: var(--sd-font-size-sm, 0.875rem) /* 14px */;
1063
1107
  font-weight: 400;
1064
1108
  line-height: var(--sd-line-height-normal, 150%) /* Used for body copy and smaller titles */;
@@ -1066,35 +1110,35 @@ Used for inverted pressed interaction text link */;
1066
1110
  color: rgb(var(--sd-color-black, 24 24 24) / var(--tw-text-opacity, 1)) /* Default text color */;
1067
1111
  }
1068
1112
 
1069
- .sd-1-0-0-paragraph--inverted,
1070
- .sd-1-0-0-prose--inverted p {
1113
+ .sd-1-1-0-paragraph--inverted,
1114
+ .sd-1-1-0-prose--inverted p {
1071
1115
 
1072
1116
  color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */;
1073
1117
  }
1074
1118
 
1075
1119
  /**
1076
1120
  * Generates basic styles for media elements.
1077
- * @name sd-1-0-0-media
1121
+ * @name sd-1-1-0-media
1078
1122
  * @status stable
1079
1123
  * @since 2.5.0
1080
- * @boolean sd-1-0-0-media--inverted Inverts the figcaption text.
1124
+ * @boolean sd-1-1-0-media--inverted Inverts the figcaption text.
1081
1125
  */
1082
1126
 
1083
- .sd-1-0-0-prose figure,
1084
- figure.sd-1-0-0-media {
1127
+ .sd-1-1-0-prose figure,
1128
+ figure.sd-1-1-0-media {
1085
1129
  margin: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
1086
1130
  }
1087
1131
 
1088
- .sd-1-0-0-prose figure figcaption, figure.sd-1-0-0-media figcaption {
1132
+ .sd-1-1-0-prose figure figcaption, figure.sd-1-1-0-media figcaption {
1089
1133
 
1090
1134
  color: rgb(var(--sd-color-neutral-700, 104 104 104) / var(--tw-text-opacity, 1)) /* Additional text color */;
1091
1135
  }
1092
1136
 
1093
- .sd-1-0-0-prose figure figcaption:last-child, figure.sd-1-0-0-media figcaption:last-child {
1137
+ .sd-1-1-0-prose figure figcaption:last-child, figure.sd-1-1-0-media figcaption:last-child {
1094
1138
  margin-top: var(--sd-spacing-3, 0.75rem) /* 12px */;
1095
1139
  }
1096
1140
 
1097
- .sd-1-0-0-prose--inverted figure figcaption, figure.sd-1-0-0-media--inverted figcaption {
1141
+ .sd-1-1-0-prose--inverted figure figcaption, figure.sd-1-1-0-media--inverted figcaption {
1098
1142
 
1099
1143
  color: rgb(var(--sd-color-primary-400, 153 171 208) / var(--tw-text-opacity, 1)) /* Additional text inverted color
1100
1144
  Used for inverted pressed interaction text link */;
@@ -1102,18 +1146,18 @@ Used for inverted pressed interaction text link */;
1102
1146
 
1103
1147
  /**
1104
1148
  * A table cell is a single cell inside a table, used to display discrete data elements.
1105
- * @name sd-1-0-0-table-cell
1149
+ * @name sd-1-1-0-table-cell
1106
1150
  * @status stable
1107
1151
  * @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.
1152
+ * @boolean sd-1-1-0-table-cell--divider Displays a divider to the right.
1153
+ * @variant { white | primary-100 | neutral-100 } sd-1-1-0-table-cell--bg-... Applies the selected background-color to the table cell. If not selected, a transparent background-color is used per default.
1154
+ * @boolean sd-1-1-0-table-cell--shadow-active Displays the table shadow.
1155
+ * @variant { top | left | right | bottom } sd-1-1-0-table-cell--shadow-... Applies the selected shadow to the table cell.
1112
1156
  */
1113
1157
 
1114
- .sd-1-0-0-prose td,
1115
- .sd-1-0-0-prose th,
1116
- .sd-1-0-0-table-cell {
1158
+ .sd-1-1-0-prose td,
1159
+ .sd-1-1-0-prose th,
1160
+ .sd-1-1-0-table-cell {
1117
1161
  border-top-width: 1px;
1118
1162
  border-bottom-width: 1px;
1119
1163
  border-left-width: 0px;
@@ -1130,11 +1174,11 @@ Used for divider, teaser, container, ... */;
1130
1174
  color: rgb(var(--sd-color-black, 24 24 24) / var(--tw-text-opacity, 1)) /* Default text color */;
1131
1175
  }
1132
1176
 
1133
- .sd-1-0-0-table-cell--divider {
1177
+ .sd-1-1-0-table-cell--divider {
1134
1178
  border-right-width: 1px;
1135
1179
  }
1136
1180
 
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 {
1181
+ .sd-1-1-0-table-cell--shadow-top:after, .sd-1-1-0-table-cell--shadow-bottom:after, .sd-1-1-0-table-cell--shadow-left:after, .sd-1-1-0-table-cell--shadow-right:after {
1138
1182
  pointer-events: none;
1139
1183
  position: absolute;
1140
1184
  --tw-gradient-from: rgb(0 0 0 / var(--sd-opacity-10, 0.1)) var(--tw-gradient-from-position);
@@ -1149,7 +1193,7 @@ Used for divider, teaser, container, ... */;
1149
1193
  content: var(--tw-content);
1150
1194
  }
1151
1195
 
1152
- .sd-1-0-0-table-cell--shadow-top:after, .sd-1-0-0-table-cell--shadow-bottom:after {
1196
+ .sd-1-1-0-table-cell--shadow-top:after, .sd-1-1-0-table-cell--shadow-bottom:after {
1153
1197
  left: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
1154
1198
  right: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
1155
1199
  height: var(--sd-spacing-2-5, 0.625rem) /* 10px */;
@@ -1157,7 +1201,7 @@ Used for divider, teaser, container, ... */;
1157
1201
 
1158
1202
  /* fix that shows line on top of table-cell */
1159
1203
 
1160
- .sd-1-0-0-table-cell--shadow-top:before, .sd-1-0-0-table-cell--shadow-bottom:before {
1204
+ .sd-1-1-0-table-cell--shadow-top:before, .sd-1-1-0-table-cell--shadow-bottom:before {
1161
1205
  position: absolute;
1162
1206
  left: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
1163
1207
  display: block;
@@ -1171,66 +1215,66 @@ Used for divider, teaser, container, ... */;
1171
1215
  content: var(--tw-content);
1172
1216
  }
1173
1217
 
1174
- .sd-1-0-0-table-cell--shadow-left:after, .sd-1-0-0-table-cell--shadow-right:after {
1218
+ .sd-1-1-0-table-cell--shadow-left:after, .sd-1-1-0-table-cell--shadow-right:after {
1175
1219
  top: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
1176
1220
  bottom: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
1177
1221
  width: var(--sd-spacing-2-5, 0.625rem) /* 10px */;
1178
1222
  }
1179
1223
 
1180
- .sd-1-0-0-table-cell.sd-1-0-0-table-cell--shadow-active:after {
1224
+ .sd-1-1-0-table-cell.sd-1-1-0-table-cell--shadow-active:after {
1181
1225
  opacity: 100%;
1182
1226
  }
1183
1227
 
1184
- .sd-1-0-0-table-cell--shadow-top:after {
1228
+ .sd-1-1-0-table-cell--shadow-top:after {
1185
1229
  top: -10px;
1186
1230
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
1187
1231
  }
1188
1232
 
1189
1233
  /* fix that shows line on top of table-cell */
1190
1234
 
1191
- .sd-1-0-0-table-cell--shadow-top:before {
1235
+ .sd-1-1-0-table-cell--shadow-top:before {
1192
1236
  bottom: -1px;
1193
1237
  }
1194
1238
 
1195
- .sd-1-0-0-table-cell--shadow-bottom:after {
1239
+ .sd-1-1-0-table-cell--shadow-bottom:after {
1196
1240
  bottom: -10px;
1197
1241
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
1198
1242
  }
1199
1243
 
1200
1244
  /* fix that shows line on top of table-cell */
1201
1245
 
1202
- .sd-1-0-0-table-cell--shadow-bottom:before {
1246
+ .sd-1-1-0-table-cell--shadow-bottom:before {
1203
1247
  top: -1px;
1204
1248
  }
1205
1249
 
1206
- .sd-1-0-0-table-cell--shadow-left:after {
1250
+ .sd-1-1-0-table-cell--shadow-left:after {
1207
1251
  left: -10px;
1208
1252
  background-image: linear-gradient(to left, var(--tw-gradient-stops));
1209
1253
  }
1210
1254
 
1211
- .sd-1-0-0-table-cell--shadow-right:after {
1255
+ .sd-1-1-0-table-cell--shadow-right:after {
1212
1256
  right: -10px;
1213
1257
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
1214
1258
  }
1215
1259
 
1216
- .sd-1-0-0-table-cell--bg-white {
1260
+ .sd-1-1-0-table-cell--bg-white {
1217
1261
 
1218
1262
  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
1263
  }
1220
1264
 
1221
- .sd-1-0-0-table-cell--bg-primary-100 {
1265
+ .sd-1-1-0-table-cell--bg-primary-100 {
1222
1266
 
1223
1267
  background-color: rgb(var(--sd-color-primary-100, 236 240 249) / var(--tw-bg-opacity, 1)) /* Additional background color (light mode) */;
1224
1268
  }
1225
1269
 
1226
- .sd-1-0-0-table-cell--bg-neutral-100 {
1270
+ .sd-1-1-0-table-cell--bg-neutral-100 {
1227
1271
 
1228
1272
  background-color: rgb(var(--sd-color-neutral-100, 246 246 246) / var(--tw-bg-opacity, 1)) /* Additional background color (light mode) */;
1229
1273
  }
1230
1274
 
1231
1275
  /**
1232
1276
  * A table is organized structured content, used for scanning, comparing, and analyzing the data.
1233
- * @name sd-1-0-0-table
1277
+ * @name sd-1-1-0-table
1234
1278
  * @status stable
1235
1279
  * @since 1.13
1236
1280
  */
@@ -1239,8 +1283,8 @@ Used for divider, teaser, container, ... */;
1239
1283
  * Remove inherited styles from table before applying our styles.
1240
1284
  */
1241
1285
 
1242
- .sd-1-0-0-table,
1243
- .sd-1-0-0-prose table {
1286
+ .sd-1-1-0-table,
1287
+ .sd-1-1-0-prose table {
1244
1288
  all: unset;
1245
1289
  display: table;
1246
1290
  border-collapse: collapse;
@@ -1249,13 +1293,13 @@ Used for divider, teaser, container, ... */;
1249
1293
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
1250
1294
  }
1251
1295
 
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 {
1296
+ .sd-1-1-0-table thead tr:first-of-type, .sd-1-1-0-table tfoot tr:first-of-type, .sd-1-1-0-prose table thead tr:first-of-type, .sd-1-1-0-prose table tfoot tr:first-of-type {
1253
1297
  position: relative;
1254
1298
  }
1255
1299
 
1256
1300
  /* plop:style */
1257
1301
 
1258
- .sd-1-0-0-prose {
1302
+ .sd-1-1-0-prose {
1259
1303
  /* Optimize for reading. */
1260
1304
  max-width: 80ch;
1261
1305
  text-align: left;
@@ -1263,67 +1307,67 @@ Used for divider, teaser, container, ... */;
1263
1307
 
1264
1308
  /* Add default spacings */
1265
1309
 
1266
- .sd-1-0-0-prose > *:not(:first-child) {
1310
+ .sd-1-1-0-prose > *:not(:first-child) {
1267
1311
  margin-top: var(--sd-spacing-4, 1rem) /* 16px */;
1268
1312
  }
1269
1313
 
1270
1314
  /* First element has no margin-top */
1271
1315
 
1272
- .sd-1-0-0-prose > *:first-child {
1316
+ .sd-1-1-0-prose > *:first-child {
1273
1317
  margin-top: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
1274
1318
  }
1275
1319
 
1276
1320
  /* headings after a heading have a smaller margin-top */
1277
1321
 
1278
- .sd-1-0-0-prose > :is(h1, h2, h3, h4, h5):not(#_) + :is(h1, h2, h3, h4, h5) {
1322
+ .sd-1-1-0-prose > :is(h1, h2, h3, h4, h5):not(#_) + :is(h1, h2, h3, h4, h5) {
1279
1323
  /* :not(#_) is a hack to raise specifity, see https://stackoverflow.com/a/61781795 */
1280
1324
  margin-top: var(--sd-spacing-2, 0.5rem) /* 8px */;
1281
1325
  }
1282
1326
 
1283
1327
  /* Headlines after other non-headlines have a larger margin-top */
1284
1328
 
1285
- .sd-1-0-0-prose > *:not(:is(h1, h2, h3, h4, h5)) + :is(h1, h2, h3, h4, h5):not(#_) {
1329
+ .sd-1-1-0-prose > *:not(:is(h1, h2, h3, h4, h5)) + :is(h1, h2, h3, h4, h5):not(#_) {
1286
1330
  margin-top: var(--sd-spacing-8, 2rem) /* 32px */;
1287
1331
  }
1288
1332
 
1289
1333
  /* Images and figures lead to a bigger margin-top for the next element */
1290
1334
 
1291
- .sd-1-0-0-prose > figure + *:not(#_),
1292
- .sd-1-0-0-prose > img + *:not(#_) {
1335
+ .sd-1-1-0-prose > figure + *:not(#_),
1336
+ .sd-1-1-0-prose > img + *:not(#_) {
1293
1337
  margin-top: var(--sd-spacing-6, 1.5rem) /* 24px */;
1294
1338
  }
1295
1339
 
1296
1340
  /* Add styles for elements that are not based on existing CSS styles */
1297
1341
 
1298
- .sd-1-0-0-prose hr {
1342
+ .sd-1-1-0-prose hr {
1299
1343
  height: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
1300
1344
  border-top-width: 1px;
1301
1345
  --tw-border-opacity: 1;
1302
1346
  border-color: rgb(var(--sd-color-neutral-500, 174 174 174) / var(--tw-border-opacity, 1)) /* Used for disabled state */;
1303
1347
  }
1304
1348
 
1305
- .sd-1-0-0-prose pre {
1349
+ .sd-1-1-0-prose pre {
1306
1350
  overflow: auto;
1307
1351
  }
1308
1352
 
1309
- .sd-1-0-0-prose blockquote,
1310
- .sd-1-0-0-prose blockquote > * {
1353
+ .sd-1-1-0-prose blockquote,
1354
+ .sd-1-1-0-prose blockquote > * {
1311
1355
  font-size: var(--sd-font-size-xl, 1.5rem) /* 24px */;
1312
1356
  }
1313
1357
 
1314
- .sd-1-0-0-prose blockquote:has(*) *:first-child::before, .sd-1-0-0-prose blockquote:not(:has(*))::before {
1358
+ .sd-1-1-0-prose blockquote:has(*) *:first-child::before, .sd-1-1-0-prose blockquote:not(:has(*))::before {
1315
1359
  content: open-quote;
1316
1360
  display: inline;
1317
1361
  }
1318
1362
 
1319
- .sd-1-0-0-prose blockquote:has(*) *:first-child::after, .sd-1-0-0-prose blockquote:not(:has(*))::after {
1363
+ .sd-1-1-0-prose blockquote:has(*) *:first-child::after, .sd-1-1-0-prose blockquote:not(:has(*))::after {
1320
1364
  content: close-quote;
1321
1365
  display: inline;
1322
1366
  }
1323
1367
 
1324
1368
  /* Fixes for other elements */
1325
1369
 
1326
- .sd-1-0-0-prose > :is(ul, ol):not(#_) {
1370
+ .sd-1-1-0-prose > :is(ul, ol):not(#_) {
1327
1371
  /* ul and ol have padding that has to be reset */
1328
1372
  padding-top: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
1329
1373
  padding-bottom: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
@@ -1331,18 +1375,18 @@ Used for divider, teaser, container, ... */;
1331
1375
 
1332
1376
  /* Inverted styles */
1333
1377
 
1334
- .sd-1-0-0-prose--inverted hr {
1378
+ .sd-1-1-0-prose--inverted hr {
1335
1379
  --tw-border-opacity: 1;
1336
1380
  border-color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-border-opacity, 1)) /* Used for buttons, inverted focus state */;
1337
1381
  }
1338
1382
 
1339
- .sd-1-0-0-prose--inverted pre {
1383
+ .sd-1-1-0-prose--inverted pre {
1340
1384
 
1341
1385
  color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */;
1342
1386
  }
1343
1387
 
1344
1388
  /* Full width styles */
1345
1389
 
1346
- .sd-1-0-0-prose--full-width {
1390
+ .sd-1-1-0-prose--full-width {
1347
1391
  max-width: unset;
1348
1392
  }