@solid-design-system/styles 1.4.1 → 1.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -2
- package/cdn/modules/pagination.css +1 -1
- package/cdn/solid-styles.css +1 -1
- package/cdn-versioned/modules/chip.css +1 -1
- package/cdn-versioned/modules/container.css +1 -1
- package/cdn-versioned/modules/copyright.css +1 -1
- package/cdn-versioned/modules/display.css +1 -1
- package/cdn-versioned/modules/flag.css +1 -1
- package/cdn-versioned/modules/footnotes.css +1 -1
- package/cdn-versioned/modules/headline.css +1 -1
- package/cdn-versioned/modules/hidden-links.css +1 -1
- package/cdn-versioned/modules/interactive.css +1 -1
- package/cdn-versioned/modules/leadtext.css +1 -1
- package/cdn-versioned/modules/list.css +1 -1
- package/cdn-versioned/modules/mark.css +1 -1
- package/cdn-versioned/modules/media.css +1 -1
- package/cdn-versioned/modules/meta.css +1 -1
- package/cdn-versioned/modules/pagination.css +1 -1
- package/cdn-versioned/modules/paragraph.css +1 -1
- package/cdn-versioned/modules/prose.css +1 -1
- package/cdn-versioned/modules/status-badge.css +1 -1
- package/cdn-versioned/modules/table-cell.css +1 -1
- package/cdn-versioned/modules/table.css +1 -1
- package/cdn-versioned/solid-styles.css +1 -1
- package/dist/modules/pagination.css +259 -303
- package/dist/solid-styles.css +129 -45
- package/dist-versioned/modules/chip.css +6 -6
- package/dist-versioned/modules/container.css +45 -45
- package/dist-versioned/modules/copyright.css +11 -11
- package/dist-versioned/modules/display.css +9 -9
- package/dist-versioned/modules/flag.css +6 -6
- package/dist-versioned/modules/footnotes.css +26 -26
- package/dist-versioned/modules/headline.css +67 -67
- package/dist-versioned/modules/hidden-links.css +7 -7
- package/dist-versioned/modules/interactive.css +38 -38
- package/dist-versioned/modules/leadtext.css +8 -8
- package/dist-versioned/modules/list.css +47 -47
- package/dist-versioned/modules/mark.css +2 -2
- package/dist-versioned/modules/media.css +7 -7
- package/dist-versioned/modules/meta.css +12 -12
- package/dist-versioned/modules/pagination.css +291 -335
- package/dist-versioned/modules/paragraph.css +8 -8
- package/dist-versioned/modules/prose.css +231 -231
- package/dist-versioned/modules/status-badge.css +8 -8
- package/dist-versioned/modules/table-cell.css +23 -23
- package/dist-versioned/modules/table.css +4 -4
- package/dist-versioned/solid-styles.css +510 -426
- package/package.json +2 -2
@@ -1,12 +1,12 @@
|
|
1
1
|
/**
|
2
2
|
* Generates basic styles for chip elements.
|
3
|
-
* @name sd-1-
|
3
|
+
* @name sd-1-5-1-chip
|
4
4
|
* @status stable
|
5
5
|
* @since 1.30.0
|
6
|
-
* @variant { primary-300 | primary-500 | white } sd-1-
|
6
|
+
* @variant { primary-300 | primary-500 | white } sd-1-5-1-chip--...
|
7
7
|
*/
|
8
8
|
|
9
|
-
.sd-1-
|
9
|
+
.sd-1-5-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-
|
25
|
+
.sd-1-5-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-
|
32
|
+
.sd-1-5-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-
|
37
|
+
.sd-1-5-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-
|
44
|
+
* @name sd-1-5-1-container
|
45
45
|
* @status stable
|
46
46
|
* @since 1.30.0
|
47
|
-
* @variant { primary-100 | primary | border-neutral-400 | white } sd-1-
|
48
|
-
* @variant { sm } sd-1-
|
49
|
-
* @variant { top | right | bottom | left } sd-1-
|
47
|
+
* @variant { primary-100 | primary | border-neutral-400 | white } sd-1-5-1-container--variant-... Defines the background color and border of sd-1-5-1-container.
|
48
|
+
* @variant { sm } sd-1-5-1-container--padding-... Defines the padding of sd-1-5-1-container. This makes it adaptable to both small and large screens.
|
49
|
+
* @variant { top | right | bottom | left } sd-1-5-1-container--triangle-... Defines an optional triangle cut-out for sd-1-5-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-
|
52
|
+
.sd-1-5-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-
|
62
|
+
.sd-1-5-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-
|
67
|
+
.sd-1-5-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-
|
73
|
+
.sd-1-5-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-
|
83
|
+
.sd-1-5-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-
|
88
|
+
.sd-1-5-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-
|
95
|
+
.sd-1-5-1-container {
|
96
96
|
|
97
97
|
--triangle-background: white;
|
98
98
|
}
|
99
99
|
|
100
|
-
.sd-1-
|
101
|
-
.sd-1-
|
102
|
-
.sd-1-
|
103
|
-
.sd-1-
|
100
|
+
.sd-1-5-1-container--triangle-top::before,
|
101
|
+
.sd-1-5-1-container--triangle-right::before,
|
102
|
+
.sd-1-5-1-container--triangle-bottom::before,
|
103
|
+
.sd-1-5-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-
|
112
|
+
.sd-1-5-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-
|
118
|
+
.sd-1-5-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-
|
124
|
+
.sd-1-5-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-
|
130
|
+
.sd-1-5-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-
|
137
|
-
.sd-1-
|
138
|
-
.sd-1-
|
139
|
-
.sd-1-
|
140
|
-
.sd-1-
|
141
|
-
.sd-1-
|
142
|
-
.sd-1-
|
143
|
-
.sd-1-
|
136
|
+
.sd-1-5-1-container--triangle-top-border::after,
|
137
|
+
.sd-1-5-1-container--triangle-top-border::before,
|
138
|
+
.sd-1-5-1-container--triangle-right-border::after,
|
139
|
+
.sd-1-5-1-container--triangle-right-border::before,
|
140
|
+
.sd-1-5-1-container--triangle-bottom-border::after,
|
141
|
+
.sd-1-5-1-container--triangle-bottom-border::before,
|
142
|
+
.sd-1-5-1-container--triangle-left-border::after,
|
143
|
+
.sd-1-5-1-container--triangle-left-border::before {
|
144
144
|
position: absolute;
|
145
145
|
display: block;
|
146
146
|
border-style: solid;
|
@@ -148,94 +148,94 @@ Used for divider, teaser, container, ... */;
|
|
148
148
|
content: '';
|
149
149
|
}
|
150
150
|
|
151
|
-
.sd-1-
|
151
|
+
.sd-1-5-1-container--triangle-top-border::after, .sd-1-5-1-container--triangle-right-border::after, .sd-1-5-1-container--triangle-bottom-border::after, .sd-1-5-1-container--triangle-left-border::after {
|
152
152
|
border-width: 14px;
|
153
153
|
}
|
154
154
|
|
155
|
-
.sd-1-
|
155
|
+
.sd-1-5-1-container--triangle-top-border::before, .sd-1-5-1-container--triangle-right-border::before, .sd-1-5-1-container--triangle-bottom-border::before, .sd-1-5-1-container--triangle-left-border::before {
|
156
156
|
border-width: 15px;
|
157
157
|
}
|
158
158
|
|
159
|
-
.sd-1-
|
160
|
-
.sd-1-
|
159
|
+
.sd-1-5-1-container--triangle-top-border::after,
|
160
|
+
.sd-1-5-1-container--triangle-top-border::before {
|
161
161
|
top: -1px;
|
162
162
|
}
|
163
163
|
|
164
|
-
.sd-1-
|
164
|
+
.sd-1-5-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-
|
171
|
+
.sd-1-5-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-
|
177
|
-
.sd-1-
|
176
|
+
.sd-1-5-1-container--triangle-right-border::after,
|
177
|
+
.sd-1-5-1-container--triangle-right-border::before {
|
178
178
|
right: -1px;
|
179
179
|
}
|
180
180
|
|
181
|
-
.sd-1-
|
181
|
+
.sd-1-5-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-
|
188
|
+
.sd-1-5-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-
|
194
|
-
.sd-1-
|
193
|
+
.sd-1-5-1-container--triangle-bottom-border::after,
|
194
|
+
.sd-1-5-1-container--triangle-bottom-border::before {
|
195
195
|
bottom: -1px;
|
196
196
|
}
|
197
197
|
|
198
|
-
.sd-1-
|
198
|
+
.sd-1-5-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-
|
205
|
+
.sd-1-5-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-
|
211
|
-
.sd-1-
|
210
|
+
.sd-1-5-1-container--triangle-left-border::after,
|
211
|
+
.sd-1-5-1-container--triangle-left-border::before {
|
212
212
|
left: -1px;
|
213
213
|
}
|
214
214
|
|
215
|
-
.sd-1-
|
215
|
+
.sd-1-5-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-
|
222
|
+
.sd-1-5-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-
|
229
|
+
* @name sd-1-5-1-copyright
|
230
230
|
* @status stable
|
231
231
|
* @since 2.5.0
|
232
|
-
* @variant { vertical } sd-1-
|
233
|
-
* @variant { black } sd-1-
|
234
|
-
* @boolean sd-1-
|
235
|
-
* @variant { top } sd-1-
|
232
|
+
* @variant { vertical } sd-1-5-1-copyright--orientation-... The copyright's orientation.
|
233
|
+
* @variant { black } sd-1-5-1-copyright--color-... The copyright's text color.
|
234
|
+
* @boolean sd-1-5-1-copyright--... Removes the shadow.
|
235
|
+
* @variant { top } sd-1-5-1-copyright--placement-... The copyright's placement.
|
236
236
|
*/
|
237
237
|
|
238
|
-
.sd-1-
|
238
|
+
.sd-1-5-1-copyright {
|
239
239
|
position: relative;
|
240
240
|
/* Bug fix for drop-shadow-sm */
|
241
241
|
--tw-blur: ;
|
@@ -248,7 +248,7 @@ Used for divider, teaser, container, ... */;
|
|
248
248
|
--tw-sepia: ;
|
249
249
|
}
|
250
250
|
|
251
|
-
.sd-1-
|
251
|
+
.sd-1-5-1-copyright::after {
|
252
252
|
position: absolute;
|
253
253
|
bottom: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
|
254
254
|
left: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
|
@@ -264,7 +264,7 @@ Used for divider, teaser, container, ... */;
|
|
264
264
|
content: var(--copyright);
|
265
265
|
}
|
266
266
|
|
267
|
-
.sd-1-
|
267
|
+
.sd-1-5-1-copyright--orientation-vertical::after {
|
268
268
|
width: -moz-max-content;
|
269
269
|
width: max-content;
|
270
270
|
padding-top: var(--sd-spacing-2, 0.5rem) /* 8px */;
|
@@ -276,17 +276,17 @@ Used for divider, teaser, container, ... */;
|
|
276
276
|
transform: rotate(180deg);
|
277
277
|
}
|
278
278
|
|
279
|
-
.sd-1-
|
279
|
+
.sd-1-5-1-copyright--color-black::after {
|
280
280
|
|
281
281
|
color: rgb(var(--sd-color-black, 24 24 24) / var(--tw-text-opacity, 1)) /* Default text color */;
|
282
282
|
filter: drop-shadow(0 0 transparent);
|
283
283
|
}
|
284
284
|
|
285
|
-
.sd-1-
|
285
|
+
.sd-1-5-1-copyright--no-shadow::after {
|
286
286
|
filter: drop-shadow(0 0 transparent);
|
287
287
|
}
|
288
288
|
|
289
|
-
.sd-1-
|
289
|
+
.sd-1-5-1-copyright--placement-top::after {
|
290
290
|
position: absolute;
|
291
291
|
top: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
|
292
292
|
right: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
|
@@ -299,13 +299,13 @@ Used for divider, teaser, container, ... */;
|
|
299
299
|
|
300
300
|
/**
|
301
301
|
* Generates basic styles for flag elements.
|
302
|
-
* @name sd-1-
|
302
|
+
* @name sd-1-5-1-flag
|
303
303
|
* @status stable
|
304
304
|
* @since 1.34.0
|
305
|
-
* @variant { neutral-300 | neutral-500 | white } sd-1-
|
305
|
+
* @variant { neutral-300 | neutral-500 | white } sd-1-5-1-flag--...
|
306
306
|
*/
|
307
307
|
|
308
|
-
.sd-1-
|
308
|
+
.sd-1-5-1-flag {
|
309
309
|
display: inline-flex;
|
310
310
|
height: var(--sd-spacing-8, 2rem) /* 32px */;
|
311
311
|
align-items: center;
|
@@ -320,32 +320,32 @@ Used for divider, teaser, container, ... */;
|
|
320
320
|
color: rgb(var(--sd-color-black, 24 24 24) / var(--tw-text-opacity, 1)) /* Default text color */;
|
321
321
|
}
|
322
322
|
|
323
|
-
.sd-1-
|
323
|
+
.sd-1-5-1-flag--neutral-500 {
|
324
324
|
|
325
325
|
background-color: rgb(var(--sd-color-neutral-500, 174 174 174) / var(--tw-bg-opacity, 1)) /* Used for disabled state */;
|
326
326
|
|
327
327
|
color: rgb(var(--sd-color-black, 24 24 24) / var(--tw-text-opacity, 1)) /* Default text color */;
|
328
328
|
}
|
329
329
|
|
330
|
-
.sd-1-
|
330
|
+
.sd-1-5-1-flag--neutral-300 {
|
331
331
|
|
332
332
|
background-color: rgb(var(--sd-color-neutral-300, 218 218 218) / var(--tw-bg-opacity, 1)) /* Used for flag */;
|
333
333
|
}
|
334
334
|
|
335
|
-
.sd-1-
|
335
|
+
.sd-1-5-1-flag--white {
|
336
336
|
|
337
337
|
background-color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-bg-opacity, 1)) /* Default background color (light mode)
Used for inverted button */;
|
338
338
|
}
|
339
339
|
|
340
340
|
/**
|
341
341
|
* 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.
|
342
|
-
* @name sd-1-
|
342
|
+
* @name sd-1-5-1-footnotes
|
343
343
|
* @status stable
|
344
344
|
* @since 3.0.0
|
345
|
-
* @boolean sd-1-
|
345
|
+
* @boolean sd-1-5-1-footnotes--inverted Inverts the footnote text.
|
346
346
|
*/
|
347
347
|
|
348
|
-
.sd-1-
|
348
|
+
.sd-1-5-1-footnotes {
|
349
349
|
margin-top: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
|
350
350
|
margin-bottom: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
|
351
351
|
padding: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
|
@@ -355,22 +355,22 @@ Used for divider, teaser, container, ... */;
|
|
355
355
|
color: rgb(var(--sd-color-neutral-700, 104 104 104) / var(--tw-text-opacity, 1)) /* Additional text color */;
|
356
356
|
}
|
357
357
|
|
358
|
-
.sd-1-
|
358
|
+
.sd-1-5-1-footnotes :target {
|
359
359
|
|
360
360
|
background-color: rgb(var(--sd-color-neutral-200, 233 233 233) / var(--tw-bg-opacity, 1)) /* Used for hover interaction */;
|
361
361
|
}
|
362
362
|
|
363
|
-
.sd-1-
|
363
|
+
.sd-1-5-1-footnotes:is(ol) {
|
364
364
|
padding-inline-start: var(--sd-spacing-8, 2rem) /* 32px */;
|
365
365
|
}
|
366
366
|
|
367
|
-
.sd-1-
|
367
|
+
.sd-1-5-1-footnotes:is(ol) li {
|
368
368
|
counter-increment: list-item;
|
369
369
|
position: relative;
|
370
370
|
list-style-type: none;
|
371
371
|
}
|
372
372
|
|
373
|
-
.sd-1-
|
373
|
+
.sd-1-5-1-footnotes:is(ol) li .sd-1-5-1-footnotes--marker::before, .sd-1-5-1-footnotes:is(ol) li:has(.sd-1-5-1-footnotes--marker:nth-of-type(2))::before, .sd-1-5-1-footnotes:is(ol) li:not(:has(.sd-1-5-1-footnotes--marker))::before {
|
374
374
|
position: absolute;
|
375
375
|
left: calc(var(--sd-spacing-8, 2rem) /* 32px */ * -1);
|
376
376
|
flex-shrink: 0;
|
@@ -381,16 +381,16 @@ Used for divider, teaser, container, ... */;
|
|
381
381
|
font-size: 10px;
|
382
382
|
}
|
383
383
|
|
384
|
-
.sd-1-
|
384
|
+
.sd-1-5-1-footnotes:is(ol) li .sd-1-5-1-footnotes--marker::after, .sd-1-5-1-footnotes:is(ol) li:has(.sd-1-5-1-footnotes--marker:nth-of-type(2))::after, .sd-1-5-1-footnotes:is(ol) li:not(:has(.sd-1-5-1-footnotes--marker))::after {
|
385
385
|
content: none;
|
386
386
|
}
|
387
387
|
|
388
|
-
.sd-1-
|
388
|
+
.sd-1-5-1-footnotes:is(ol) li .sd-1-5-1-footnotes--marker .sd-1-5-1-footnotes--marker, .sd-1-5-1-footnotes:is(ol) li:has(.sd-1-5-1-footnotes--marker:nth-of-type(2)) .sd-1-5-1-footnotes--marker, .sd-1-5-1-footnotes:is(ol) li:not(:has(.sd-1-5-1-footnotes--marker)) .sd-1-5-1-footnotes--marker {
|
389
389
|
display: inline-block;
|
390
390
|
counter-increment: footnotes-multiple;
|
391
391
|
}
|
392
392
|
|
393
|
-
.sd-1-
|
393
|
+
.sd-1-5-1-footnotes:is(ol) li .sd-1-5-1-footnotes--marker .sd-1-5-1-footnotes--marker::before, .sd-1-5-1-footnotes:is(ol) li:has(.sd-1-5-1-footnotes--marker:nth-of-type(2)) .sd-1-5-1-footnotes--marker::before, .sd-1-5-1-footnotes:is(ol) li:not(:has(.sd-1-5-1-footnotes--marker)) .sd-1-5-1-footnotes--marker::before {
|
394
394
|
position: relative;
|
395
395
|
left: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
|
396
396
|
vertical-align: super;
|
@@ -399,16 +399,16 @@ Used for divider, teaser, container, ... */;
|
|
399
399
|
content: counter(footnotes-multiple, lower-alpha);
|
400
400
|
}
|
401
401
|
|
402
|
-
.sd-1-
|
402
|
+
.sd-1-5-1-footnotes:is(ol) li .sd-1-5-1-footnotes--marker {
|
403
403
|
bottom: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
|
404
404
|
display: block;
|
405
405
|
}
|
406
406
|
|
407
|
-
.sd-1-
|
407
|
+
.sd-1-5-1-footnotes:is(ol) li .sd-1-5-1-footnotes--marker:focus-visible {
|
408
408
|
outline-width: 0px;
|
409
409
|
}
|
410
410
|
|
411
|
-
.sd-1-
|
411
|
+
.sd-1-5-1-footnotes:is(ol) li .sd-1-5-1-footnotes--marker:focus-visible::before {
|
412
412
|
border-radius: var(--sd-border-radius-default, 0.25rem) /* 4px Default radius for buttons */;
|
413
413
|
outline-style: solid;
|
414
414
|
outline-width: 2px;
|
@@ -416,39 +416,39 @@ Used for divider, teaser, container, ... */;
|
|
416
416
|
outline-color: rgb(var(--sd-color-primary, 0 53 142) / 1) /* Used for buttons, select field, focus state */;
|
417
417
|
}
|
418
418
|
|
419
|
-
.sd-1-
|
419
|
+
.sd-1-5-1-footnotes:is(ul) {
|
420
420
|
list-style: '';
|
421
421
|
}
|
422
422
|
|
423
|
-
.sd-1-
|
423
|
+
.sd-1-5-1-footnotes--inverted {
|
424
424
|
|
425
425
|
color: rgb(var(--sd-color-primary-400, 153 171 208) / var(--tw-text-opacity, 1)) /* Additional text inverted color
|
426
426
|
Used for inverted pressed interaction text link */;
|
427
427
|
}
|
428
428
|
|
429
|
-
.sd-1-
|
429
|
+
.sd-1-5-1-footnotes--inverted :target {
|
430
430
|
|
431
431
|
background-color: rgb(var(--sd-color-primary-800, 5 21 48) / var(--tw-bg-opacity, 1)) /* Used for pressed interaction */;
|
432
432
|
}
|
433
433
|
|
434
|
-
.sd-1-
|
434
|
+
.sd-1-5-1-footnotes--inverted .sd-1-5-1-footnotes--marker::before {
|
435
435
|
|
436
436
|
color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */;
|
437
437
|
outline-color: rgb(var(--sd-color-white, 255 255 255) / 1) /* Used for buttons, inverted focus state */ !important;
|
438
438
|
}
|
439
439
|
|
440
|
-
.sd-1-
|
440
|
+
.sd-1-5-1-footnotes--inverted:is(.sd-1-5-1-footnotes--marker) {
|
441
441
|
--tw-text-opacity: 1 !important;
|
442
442
|
color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */ !important;
|
443
443
|
outline-color: rgb(var(--sd-color-white, 255 255 255) / 1) /* Used for buttons, inverted focus state */ !important;
|
444
444
|
}
|
445
445
|
|
446
|
-
.sd-1-
|
446
|
+
.sd-1-5-1-footnotes--inverted:is(.sd-1-5-1-footnotes--marker):target {
|
447
447
|
|
448
448
|
background-color: rgb(var(--sd-color-primary-800, 5 21 48) / var(--tw-bg-opacity, 1)) /* Used for pressed interaction */;
|
449
449
|
}
|
450
450
|
|
451
|
-
.sd-1-
|
451
|
+
.sd-1-5-1-footnotes--marker {
|
452
452
|
position: relative;
|
453
453
|
bottom: var(--sd-spacing-2, 0.5rem) /* 8px */;
|
454
454
|
display: inline-block;
|
@@ -458,28 +458,28 @@ Used for inverted pressed interaction text link */;
|
|
458
458
|
font-size: x-small;
|
459
459
|
}
|
460
460
|
|
461
|
-
.sd-1-
|
461
|
+
.sd-1-5-1-footnotes--marker:target {
|
462
462
|
|
463
463
|
background-color: rgb(var(--sd-color-neutral-200, 233 233 233) / var(--tw-bg-opacity, 1)) /* Used for hover interaction */;
|
464
464
|
}
|
465
465
|
|
466
|
-
.sd-1-
|
466
|
+
.sd-1-5-1-footnotes--marker::before {
|
467
467
|
content: '[ ';
|
468
468
|
display: inline-block;
|
469
469
|
}
|
470
470
|
|
471
|
-
.sd-1-
|
471
|
+
.sd-1-5-1-footnotes--marker::after {
|
472
472
|
content: ' ]';
|
473
473
|
display: inline-block;
|
474
474
|
}
|
475
475
|
|
476
|
-
.sd-1-
|
477
|
-
.sd-1-
|
476
|
+
.sd-1-5-1-footnotes--marker:link,
|
477
|
+
.sd-1-5-1-footnotes--marker:visited {
|
478
478
|
|
479
479
|
color: rgb(var(--sd-color-primary, 0 53 142) / var(--tw-text-opacity, 1)) /* Primary brand color for text */;
|
480
480
|
}
|
481
481
|
|
482
|
-
.sd-1-
|
482
|
+
.sd-1-5-1-footnotes--marker:focus-visible {
|
483
483
|
border-radius: var(--sd-border-radius-default, 0.25rem) /* 4px Default radius for buttons */;
|
484
484
|
outline-style: solid;
|
485
485
|
outline-width: 2px;
|
@@ -489,11 +489,11 @@ Used for inverted pressed interaction text link */;
|
|
489
489
|
|
490
490
|
/**
|
491
491
|
* Hidden links can be used to show links only for keyboard users.
|
492
|
-
* @name sd-1-
|
492
|
+
* @name sd-1-5-1-hidden-links
|
493
493
|
* @status stable
|
494
494
|
* @since 3.15.0
|
495
|
-
* @boolean sd-1-
|
496
|
-
* @boolean sd-1-
|
495
|
+
* @boolean sd-1-5-1-hidden-links--multiple Adapts styling for multiple skip links.
|
496
|
+
* @boolean sd-1-5-1-hidden-links--debug Always show the links for debugging purposes.
|
497
497
|
*/
|
498
498
|
|
499
499
|
:lang(en) {
|
@@ -504,7 +504,7 @@ Used for inverted pressed interaction text link */;
|
|
504
504
|
--sd-hidden-links-title: 'Springe zu';
|
505
505
|
}
|
506
506
|
|
507
|
-
.sd-1-
|
507
|
+
.sd-1-5-1-hidden-links:not(:focus-within):not(.sd-1-5-1-hidden-links--debug) {
|
508
508
|
position: absolute;
|
509
509
|
width: 1px;
|
510
510
|
height: 1px;
|
@@ -516,13 +516,13 @@ Used for inverted pressed interaction text link */;
|
|
516
516
|
border-width: 0;
|
517
517
|
}
|
518
518
|
|
519
|
-
.sd-1-
|
519
|
+
.sd-1-5-1-hidden-links {
|
520
520
|
position: absolute;
|
521
521
|
top: var(--sd-spacing-6, 1.5rem) /* 24px */;
|
522
522
|
left: var(--sd-spacing-6, 1.5rem) /* 24px */;
|
523
523
|
}
|
524
524
|
|
525
|
-
.sd-1-
|
525
|
+
.sd-1-5-1-hidden-links--multiple {
|
526
526
|
display: flex;
|
527
527
|
flex-direction: column;
|
528
528
|
|
@@ -536,7 +536,7 @@ Used for inverted pressed interaction text link */;
|
|
536
536
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
537
537
|
}
|
538
538
|
|
539
|
-
.sd-1-
|
539
|
+
.sd-1-5-1-hidden-links--multiple:before {
|
540
540
|
padding-left: var(--sd-spacing-4, 1rem) /* 16px */;
|
541
541
|
padding-right: var(--sd-spacing-4, 1rem) /* 16px */;
|
542
542
|
padding-top: var(--sd-spacing-2, 0.5rem) /* 8px */;
|
@@ -547,12 +547,12 @@ Used for inverted pressed interaction text link */;
|
|
547
547
|
|
548
548
|
/**
|
549
549
|
* The green accent color can be used to highlight parts of the text.
|
550
|
-
* @name sd-1-
|
550
|
+
* @name sd-1-5-1-mark
|
551
551
|
* @status stable
|
552
552
|
* @since 1.7
|
553
553
|
*/
|
554
554
|
|
555
|
-
mark.sd-1-
|
555
|
+
mark.sd-1-5-1-mark {
|
556
556
|
background-color: transparent;
|
557
557
|
|
558
558
|
color: rgb(var(--sd-color-accent, 45 157 0) / var(--tw-text-opacity, 1)) /* Used for inverted hover interaction button label */;
|
@@ -560,16 +560,16 @@ mark.sd-1-4-1-mark {
|
|
560
560
|
|
561
561
|
/**
|
562
562
|
* Meta information like file size, date, or whatever is needed.
|
563
|
-
* @name sd-1-
|
563
|
+
* @name sd-1-5-1-meta
|
564
564
|
* @status stable
|
565
565
|
* @since 1.7
|
566
|
-
* @variant { sm } sd-1-
|
567
|
-
* @boolean sd-1-
|
568
|
-
* @boolean sd-1-
|
569
|
-
* @boolean sd-1-
|
566
|
+
* @variant { sm } sd-1-5-1-meta--size-... The size. Small can be used as an alternative in tight spaces.
|
567
|
+
* @boolean sd-1-5-1-meta--inverted Inverts the meta element.
|
568
|
+
* @boolean sd-1-5-1-meta--pipe Adds a pipe right from the meta element.
|
569
|
+
* @boolean sd-1-5-1-meta--light Makes sd-1-5-1-meta light.
|
570
570
|
*/
|
571
571
|
|
572
|
-
.sd-1-
|
572
|
+
.sd-1-5-1-meta {
|
573
573
|
font-size: var(--sd-font-size-base, 1rem) /* 16px */;
|
574
574
|
font-weight: 400;
|
575
575
|
line-height: var(--sd-line-height-none, 100%) /* Used for buttons, input fields etc. */;
|
@@ -577,60 +577,72 @@ mark.sd-1-4-1-mark {
|
|
577
577
|
color: rgb(var(--sd-color-black, 24 24 24) / var(--tw-text-opacity, 1)) /* Default text color */;
|
578
578
|
}
|
579
579
|
|
580
|
-
.sd-1-
|
580
|
+
.sd-1-5-1-meta--size-sm {
|
581
581
|
font-size: var(--sd-font-size-sm, 0.875rem) /* 14px */;
|
582
582
|
}
|
583
583
|
|
584
|
-
.sd-1-
|
584
|
+
.sd-1-5-1-meta--light {
|
585
585
|
|
586
586
|
color: rgb(var(--sd-color-neutral-700, 104 104 104) / var(--tw-text-opacity, 1)) /* Additional text color */;
|
587
587
|
}
|
588
588
|
|
589
|
-
.sd-1-
|
589
|
+
.sd-1-5-1-meta--inverted {
|
590
590
|
|
591
591
|
color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */;
|
592
592
|
}
|
593
593
|
|
594
|
-
.sd-1-
|
594
|
+
.sd-1-5-1-meta--inverted.sd-1-5-1-meta--light {
|
595
595
|
|
596
596
|
color: rgb(var(--sd-color-primary-400, 153 171 208) / var(--tw-text-opacity, 1)) /* Additional text inverted color
|
597
597
|
Used for inverted pressed interaction text link */;
|
598
598
|
}
|
599
599
|
|
600
|
-
.sd-1-
|
600
|
+
.sd-1-5-1-meta--pipe::after {
|
601
601
|
content: '|';
|
602
602
|
margin-left: var(--sd-spacing-1, 0.25rem) /* 4px */;
|
603
603
|
margin-right: var(--sd-spacing-1, 0.25rem) /* 4px */;
|
604
604
|
}
|
605
605
|
|
606
|
-
.sd-1-
|
606
|
+
.sd-1-5-1-meta--pipe.sd-1-5-1-meta--size-sm::after {
|
607
607
|
margin-left: var(--sd-spacing-0-5, 0.125rem) /* 2px */;
|
608
608
|
margin-right: var(--sd-spacing-0-5, 0.125rem) /* 2px */;
|
609
609
|
}
|
610
610
|
|
611
611
|
/**
|
612
612
|
* Used to split large content into several pages, allowing users to navigate between them instead of displaying all information on a single page.
|
613
|
-
* @name sd-1-
|
613
|
+
* @name sd-1-5-1-pagination
|
614
614
|
* @status stable
|
615
615
|
* @since 1.3
|
616
|
-
* @variant { simple } sd-1-
|
617
|
-
* @boolean sd-1-
|
616
|
+
* @variant { simple } sd-1-5-1-pagination--... The pagination format.
|
617
|
+
* @boolean sd-1-5-1-pagination--inverted Inverts the pagination style.
|
618
618
|
*/
|
619
619
|
|
620
|
-
.sd-1-
|
620
|
+
.sd-1-5-1-pagination > :not(ul) {
|
621
621
|
position: absolute;
|
622
622
|
height: var(--sd-spacing-0-25, 1px) /* 1px */;
|
623
623
|
width: var(--sd-spacing-0-25, 1px) /* 1px */;
|
624
624
|
overflow: hidden;
|
625
625
|
}
|
626
626
|
|
627
|
-
.sd-1-
|
627
|
+
.sd-1-5-1-pagination ul {
|
628
628
|
display: flex;
|
629
629
|
align-items: center;
|
630
630
|
gap: var(--sd-spacing-2, 0.5rem) /* 8px */;
|
631
631
|
}
|
632
632
|
|
633
|
-
.sd-1-
|
633
|
+
.sd-1-5-1-pagination ul li button {
|
634
|
+
all: unset;
|
635
|
+
border-width: 2px;
|
636
|
+
border-style: solid;
|
637
|
+
border-color: transparent;
|
638
|
+
}
|
639
|
+
|
640
|
+
.sd-1-5-1-pagination ul li button:hover:not([disabled]) {
|
641
|
+
cursor: pointer;
|
642
|
+
}
|
643
|
+
|
644
|
+
.sd-1-5-1-pagination ul li a,
|
645
|
+
.sd-1-5-1-pagination ul li button {
|
634
646
|
display: flex;
|
635
647
|
align-items: center;
|
636
648
|
justify-content: center;
|
@@ -642,17 +654,19 @@ Used for inverted pressed interaction text link */;
|
|
642
654
|
transition-duration: 150ms;
|
643
655
|
}
|
644
656
|
|
645
|
-
.sd-1-
|
657
|
+
.sd-1-5-1-pagination ul li a:hover:not([disabled]),
|
658
|
+
.sd-1-5-1-pagination ul li button:hover:not([disabled]) {
|
646
659
|
|
647
660
|
color: rgb(var(--sd-color-primary-500, 70 109 175) / var(--tw-text-opacity, 1)) /* Used for hover interaction */;
|
648
661
|
}
|
649
662
|
|
650
|
-
.sd-1-
|
663
|
+
.sd-1-5-1-pagination ul li a:active:not([disabled]),
|
664
|
+
.sd-1-5-1-pagination ul li button:active:not([disabled]) {
|
651
665
|
|
652
666
|
color: rgb(var(--sd-color-primary-800, 5 21 48) / var(--tw-text-opacity, 1)) /* Used for pressed interaction */;
|
653
667
|
}
|
654
668
|
|
655
|
-
.sd-1-
|
669
|
+
.sd-1-5-1-pagination ul li a:focus-visible, .sd-1-5-1-pagination ul li button:focus-visible {
|
656
670
|
outline-style: solid;
|
657
671
|
outline-width: 2px;
|
658
672
|
outline-offset: 2px;
|
@@ -661,21 +675,24 @@ Used for inverted pressed interaction text link */;
|
|
661
675
|
|
662
676
|
/* Previous and Next */
|
663
677
|
|
664
|
-
.sd-1-
|
665
|
-
.sd-1-
|
678
|
+
.sd-1-5-1-pagination ul li:first-child,
|
679
|
+
.sd-1-5-1-pagination ul li:last-child {
|
666
680
|
height: var(--sd-spacing-12, 3rem) /* 48px */;
|
667
681
|
width: var(--sd-spacing-12, 3rem) /* 48px */;
|
668
682
|
font-size: var(--sd-font-size-xl, 1.5rem) /* 24px */;
|
669
683
|
}
|
670
684
|
|
671
|
-
.sd-1-
|
685
|
+
.sd-1-5-1-pagination ul li:first-child a,
|
686
|
+
.sd-1-5-1-pagination ul li:first-child button,
|
687
|
+
.sd-1-5-1-pagination ul li:last-child a,
|
688
|
+
.sd-1-5-1-pagination ul li:last-child button {
|
672
689
|
height: 100%;
|
673
690
|
width: 100%;
|
674
691
|
}
|
675
692
|
|
676
693
|
/* Numbers */
|
677
694
|
|
678
|
-
.sd-1-
|
695
|
+
.sd-1-5-1-pagination ul li {
|
679
696
|
display: flex;
|
680
697
|
height: var(--sd-spacing-8, 2rem) /* 32px */;
|
681
698
|
width: var(--sd-spacing-8, 2rem) /* 32px */;
|
@@ -684,40 +701,47 @@ Used for inverted pressed interaction text link */;
|
|
684
701
|
text-align: center;
|
685
702
|
}
|
686
703
|
|
687
|
-
.sd-1-
|
704
|
+
.sd-1-5-1-pagination ul li:not(:first-child):not(:last-child) a,
|
705
|
+
.sd-1-5-1-pagination ul li:not(:first-child):not(:last-child) button {
|
688
706
|
height: 100%;
|
689
707
|
width: 100%;
|
690
708
|
border-bottom-width: 2px;
|
691
709
|
border-bottom-color: transparent;
|
692
710
|
}
|
693
711
|
|
694
|
-
.sd-1-
|
712
|
+
.sd-1-5-1-pagination ul li:not(:first-child):not(:last-child) a[aria-current], .sd-1-5-1-pagination ul li:not(:first-child):not(:last-child) button[aria-current] {
|
695
713
|
--tw-border-opacity: 1;
|
696
714
|
border-bottom-color: rgb(var(--sd-color-accent, 45 157 0) / var(--tw-border-opacity, 1)) /* Used to highlight active/selected elements
|
697
715
|
*/;
|
698
716
|
}
|
699
717
|
|
700
|
-
.sd-1-
|
718
|
+
.sd-1-5-1-pagination ul li a[aria-current],
|
719
|
+
.sd-1-5-1-pagination ul li button[aria-current] {
|
701
720
|
|
702
721
|
color: rgb(var(--sd-color-black, 24 24 24) / var(--tw-text-opacity, 1)) /* Default text color */;
|
703
722
|
}
|
704
723
|
|
705
|
-
.sd-1-
|
724
|
+
.sd-1-5-1-pagination ul li a[aria-current]:hover:not([disabled]),
|
725
|
+
.sd-1-5-1-pagination ul li button[aria-current]:hover:not([disabled]) {
|
706
726
|
|
707
727
|
color: rgb(var(--sd-color-black, 24 24 24) / var(--tw-text-opacity, 1)) /* Default text color */;
|
708
728
|
}
|
709
729
|
|
710
730
|
/* Previous and next arrow when it has no href */
|
711
731
|
|
712
|
-
.sd-1-
|
713
|
-
.sd-1-
|
732
|
+
.sd-1-5-1-pagination ul li:first-child:has(a:not([href])) a,
|
733
|
+
.sd-1-5-1-pagination ul li:last-child:has(a:not([href])) a,
|
734
|
+
.sd-1-5-1-pagination ul li:first-child:has(button[disabled]) button,
|
735
|
+
.sd-1-5-1-pagination ul li:last-child:has(button[disabled]) button {
|
714
736
|
cursor: not-allowed;
|
715
737
|
|
716
738
|
color: rgb(var(--sd-color-neutral-500, 174 174 174) / var(--tw-text-opacity, 1)) /* Used for disabled state */;
|
717
739
|
}
|
718
740
|
|
719
|
-
.sd-1-
|
720
|
-
.sd-1-
|
741
|
+
.sd-1-5-1-pagination ul li:first-child:has(a:not([href])) a:hover:not([disabled]),
|
742
|
+
.sd-1-5-1-pagination ul li:last-child:has(a:not([href])) a:hover:not([disabled]),
|
743
|
+
.sd-1-5-1-pagination ul li:first-child:has(button[disabled]) button:hover:not([disabled]),
|
744
|
+
.sd-1-5-1-pagination ul li:last-child:has(button[disabled]) button:hover:not([disabled]) {
|
721
745
|
|
722
746
|
color: rgb(var(--sd-color-neutral-500, 174 174 174) / var(--tw-text-opacity, 1)) /* Used for disabled state */;
|
723
747
|
}
|
@@ -726,46 +750,68 @@ Used for inverted pressed interaction text link */;
|
|
726
750
|
|
727
751
|
/* Number which is not current */
|
728
752
|
|
729
|
-
.sd-1-
|
753
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):not(:has(a[aria-current], button[aria-current])) {
|
730
754
|
pointer-events: none;
|
731
755
|
position: absolute;
|
732
756
|
}
|
733
757
|
|
734
|
-
.sd-1-
|
758
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):not(:has(a[aria-current], button[aria-current])) a,
|
759
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):not(:has(a[aria-current], button[aria-current])) button {
|
735
760
|
display: none;
|
736
761
|
}
|
737
762
|
|
738
763
|
/* Apply ellipsis to (n + 2 && n - 1) */
|
739
764
|
|
740
|
-
.sd-1-
|
741
|
-
.sd-1-4-1-pagination:not(.sd-1-4-1-pagination--simple) ul li:not(:first-child):not(:last-child):has(a[aria-current]) + li + li:not(:last-child) {
|
765
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):has(+ li + li a[aria-current], + li + li button[aria-current]), .sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):has(a[aria-current], button[aria-current]) + li + li:not(:last-child) {
|
742
766
|
pointer-events: auto !important;
|
743
767
|
position: relative !important;
|
744
768
|
}
|
745
769
|
|
746
|
-
.sd-1-
|
747
|
-
.sd-1-4-1-pagination:not(.sd-1-4-1-pagination--simple) ul li:not(:first-child):not(:last-child):has(a[aria-current]) + li + li:not(:last-child)::after {
|
770
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):has(+ li + li a[aria-current], + li + li button[aria-current])::after, .sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):has(a[aria-current], button[aria-current]) + li + li:not(:last-child)::after {
|
748
771
|
--tw-content: '...';
|
749
772
|
content: var(--tw-content);
|
750
773
|
}
|
751
774
|
|
752
|
-
.sd-1-
|
753
|
-
.sd-1-
|
754
|
-
.sd-1-
|
755
|
-
|
775
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):nth-child(2),
|
776
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):nth-last-child(2),
|
777
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):has(
|
778
|
+
+ li a[aria-current],
|
779
|
+
+ li button[aria-current]),
|
780
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):has(
|
781
|
+
a[aria-current],
|
782
|
+
button[aria-current]) + li {
|
756
783
|
pointer-events: auto !important;
|
757
784
|
position: relative !important;
|
758
785
|
}
|
759
786
|
|
760
|
-
.sd-1-
|
761
|
-
.sd-1-
|
762
|
-
.sd-1-
|
763
|
-
|
787
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):nth-child(2)::after,
|
788
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):nth-last-child(2)::after,
|
789
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):has(
|
790
|
+
+ li a[aria-current],
|
791
|
+
+ li button[aria-current])::after,
|
792
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):has(
|
793
|
+
a[aria-current],
|
794
|
+
button[aria-current]) + li::after {
|
764
795
|
content: var(--tw-content) !important;
|
765
796
|
display: none !important;
|
766
797
|
}
|
767
798
|
|
768
|
-
.sd-1-
|
799
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):nth-child(2) a,
|
800
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):nth-child(2) button,
|
801
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):nth-last-child(2) a,
|
802
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):nth-last-child(2) button,
|
803
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):has(
|
804
|
+
+ li a[aria-current],
|
805
|
+
+ li button[aria-current]) a,
|
806
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):has(
|
807
|
+
+ li a[aria-current],
|
808
|
+
+ li button[aria-current]) button,
|
809
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):has(
|
810
|
+
a[aria-current],
|
811
|
+
button[aria-current]) + li a,
|
812
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):has(
|
813
|
+
a[aria-current],
|
814
|
+
button[aria-current]) + li button {
|
769
815
|
display: flex !important;
|
770
816
|
}
|
771
817
|
|
@@ -773,109 +819,132 @@ Used for inverted pressed interaction text link */;
|
|
773
819
|
|
774
820
|
/* Show until the 5th page (forward) */
|
775
821
|
|
776
|
-
.sd-1-
|
822
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):nth-child(-n + 6):has(a[aria-current], button[aria-current]) ~ :nth-child(-n + 6) {
|
777
823
|
pointer-events: auto;
|
778
824
|
position: relative;
|
779
825
|
}
|
780
826
|
|
781
|
-
.sd-1-
|
827
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):nth-child(-n + 6):has(a[aria-current], button[aria-current]) ~ :nth-child(-n + 6)::after {
|
782
828
|
content: var(--tw-content);
|
783
829
|
display: none;
|
784
830
|
}
|
785
831
|
|
786
|
-
.sd-1-
|
832
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):nth-child(-n + 6):has(a[aria-current], button[aria-current]) ~ :nth-child(-n + 6) a,
|
833
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):nth-child(-n + 6):has(a[aria-current], button[aria-current]) ~ :nth-child(-n + 6) button {
|
787
834
|
display: flex;
|
788
835
|
}
|
789
836
|
|
790
837
|
/* Show ellipsis on the 6th */
|
791
838
|
|
792
|
-
.sd-1-
|
839
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):nth-child(-n + 6):has(a[aria-current], button[aria-current]) ~ :nth-child(6):not(:last-child) + li {
|
793
840
|
pointer-events: none;
|
794
841
|
position: relative;
|
795
842
|
}
|
796
843
|
|
797
|
-
.sd-1-
|
844
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):nth-child(-n + 6):has(a[aria-current], button[aria-current]) ~ :nth-child(6):not(:last-child) + li::after {
|
798
845
|
--tw-content: '...';
|
799
846
|
content: var(--tw-content);
|
800
847
|
}
|
801
848
|
|
802
849
|
/* When one of the first 4 pages is selected, show until the 5th page (backward) */
|
803
850
|
|
804
|
-
.sd-1-
|
851
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):nth-child(-n + 6):has(~ :nth-child(-n + 5) a[aria-current], ~ :nth-child(-n + 5) button[aria-current]) {
|
805
852
|
pointer-events: auto;
|
806
853
|
position: relative;
|
807
854
|
}
|
808
855
|
|
809
|
-
.sd-1-
|
856
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):nth-child(-n + 6):has(~ :nth-child(-n + 5) a[aria-current], ~ :nth-child(-n + 5) button[aria-current])::after {
|
810
857
|
content: var(--tw-content);
|
811
858
|
display: none;
|
812
859
|
}
|
813
860
|
|
814
|
-
.sd-1-
|
861
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):nth-child(-n + 6):has(~ :nth-child(-n + 5) a[aria-current], ~ :nth-child(-n + 5) button[aria-current]) a,
|
862
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):nth-child(-n + 6):has(~ :nth-child(-n + 5) a[aria-current], ~ :nth-child(-n + 5) button[aria-current]) button {
|
815
863
|
display: flex;
|
816
864
|
}
|
817
865
|
|
818
866
|
/* When one of the last 4 pages is selected, show the last 4 pages (forward) */
|
819
867
|
|
820
|
-
.sd-1-
|
868
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):nth-last-child(-n + 5):has(a[aria-current], button[aria-current]) ~ :nth-last-child(-n + 5):not(:first-child):not(:last-child) {
|
821
869
|
pointer-events: auto;
|
822
870
|
position: relative;
|
823
871
|
}
|
824
872
|
|
825
|
-
.sd-1-
|
873
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):nth-last-child(-n + 5):has(a[aria-current], button[aria-current]) ~ :nth-last-child(-n + 5):not(:first-child):not(:last-child)::after {
|
826
874
|
content: var(--tw-content);
|
827
875
|
display: none;
|
828
876
|
}
|
829
877
|
|
830
|
-
.sd-1-
|
878
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):nth-last-child(-n + 5):has(a[aria-current], button[aria-current]) ~ :nth-last-child(-n + 5):not(:first-child):not(:last-child) a,
|
879
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):nth-last-child(-n + 5):has(a[aria-current], button[aria-current]) ~ :nth-last-child(-n + 5):not(:first-child):not(:last-child) button {
|
831
880
|
display: flex;
|
832
881
|
}
|
833
882
|
|
834
883
|
/* When one of the last 4 pages is selected, show the last 4 pages (backward) */
|
835
884
|
|
836
|
-
.sd-1-
|
885
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):nth-last-child(-n + 6):has(
|
886
|
+
~ :nth-last-child(-n + 5) a[aria-current],
|
887
|
+
~ :nth-last-child(-n + 5) button[aria-current]
|
888
|
+
) {
|
837
889
|
pointer-events: auto;
|
838
890
|
position: relative;
|
839
891
|
}
|
840
892
|
|
841
|
-
.sd-1-
|
893
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):nth-last-child(-n + 6):has(
|
894
|
+
~ :nth-last-child(-n + 5) a[aria-current],
|
895
|
+
~ :nth-last-child(-n + 5) button[aria-current]
|
896
|
+
)::after {
|
842
897
|
content: var(--tw-content);
|
843
898
|
display: none;
|
844
899
|
}
|
845
900
|
|
846
|
-
.sd-1-
|
901
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):nth-last-child(-n + 6):has(
|
902
|
+
~ :nth-last-child(-n + 5) a[aria-current],
|
903
|
+
~ :nth-last-child(-n + 5) button[aria-current]
|
904
|
+
) a,
|
905
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):nth-last-child(-n + 6):has(
|
906
|
+
~ :nth-last-child(-n + 5) a[aria-current],
|
907
|
+
~ :nth-last-child(-n + 5) button[aria-current]
|
908
|
+
) button {
|
847
909
|
display: flex;
|
848
910
|
}
|
849
911
|
|
850
912
|
/* Show ellipsis on the 6th to last */
|
851
913
|
|
852
|
-
.sd-1-
|
914
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):nth-last-child(7):has(
|
915
|
+
~ :nth-last-child(-n + 5) a[aria-current],
|
916
|
+
~ :nth-last-child(-n + 5) button[aria-current]
|
917
|
+
) {
|
853
918
|
pointer-events: none;
|
854
919
|
position: relative;
|
855
920
|
}
|
856
921
|
|
857
|
-
.sd-1-
|
922
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul li:not(:first-child):not(:last-child):nth-last-child(7):has(
|
923
|
+
~ :nth-last-child(-n + 5) a[aria-current],
|
924
|
+
~ :nth-last-child(-n + 5) button[aria-current]
|
925
|
+
)::after {
|
858
926
|
--tw-content: '...';
|
859
927
|
content: var(--tw-content);
|
860
928
|
}
|
861
929
|
|
862
930
|
/* When it only has 5 numbers + 2 prev & next buttons */
|
863
931
|
|
864
|
-
.sd-1-
|
932
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul:has(> li:last-child:nth-child(-n + 9)) li {
|
865
933
|
pointer-events: auto;
|
866
934
|
position: relative;
|
867
935
|
}
|
868
936
|
|
869
|
-
.sd-1-
|
937
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul:has(> li:last-child:nth-child(-n + 9)) li::after {
|
870
938
|
content: var(--tw-content);
|
871
939
|
display: none;
|
872
940
|
}
|
873
941
|
|
874
|
-
.sd-1-
|
942
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul:has(> li:last-child:nth-child(-n + 9)) li a,
|
943
|
+
.sd-1-5-1-pagination:not(.sd-1-5-1-pagination--simple) ul:has(> li:last-child:nth-child(-n + 9)) li button {
|
875
944
|
display: flex;
|
876
945
|
}
|
877
946
|
|
878
|
-
.sd-1-
|
947
|
+
.sd-1-5-1-pagination--simple ul li:nth-child(2) {
|
879
948
|
position: relative;
|
880
949
|
margin-inline-end: var(--sd-spacing-5, 1.25rem) /* 20px */;
|
881
950
|
width: var(--sd-spacing-8, 2rem) /* 32px */;
|
@@ -885,7 +954,7 @@ Used for inverted pressed interaction text link */;
|
|
885
954
|
*/;
|
886
955
|
}
|
887
956
|
|
888
|
-
.sd-1-
|
957
|
+
.sd-1-5-1-pagination--simple ul li:nth-child(2)::after {
|
889
958
|
position: absolute;
|
890
959
|
right: -18px;
|
891
960
|
--tw-scale-y: 1.5;
|
@@ -894,58 +963,73 @@ Used for inverted pressed interaction text link */;
|
|
894
963
|
content: var(--tw-content);
|
895
964
|
}
|
896
965
|
|
897
|
-
.sd-1-
|
966
|
+
.sd-1-5-1-pagination--simple ul li:nth-child(2) {
|
967
|
+
|
968
|
+
border-bottom-style: solid;
|
969
|
+
}
|
970
|
+
|
971
|
+
.sd-1-5-1-pagination--simple ul li:nth-last-child(2) {
|
898
972
|
border-bottom-width: 2px;
|
899
973
|
border-bottom-color: transparent;
|
900
974
|
}
|
901
975
|
|
902
|
-
.sd-1-
|
976
|
+
.sd-1-5-1-pagination--inverted ul li::after {
|
903
977
|
content: var(--tw-content);
|
904
978
|
|
905
979
|
color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */;
|
906
980
|
}
|
907
981
|
|
908
|
-
.sd-1-
|
909
|
-
.sd-1-
|
982
|
+
.sd-1-5-1-pagination--inverted ul li:first-child:has(a:not([href])) a,
|
983
|
+
.sd-1-5-1-pagination--inverted ul li:last-child:has(a:not([href])) a,
|
984
|
+
.sd-1-5-1-pagination--inverted ul li:first-child:has(button[disabled]) button,
|
985
|
+
.sd-1-5-1-pagination--inverted ul li:last-child:has(button[disabled]) button {
|
910
986
|
|
911
987
|
color: rgb(var(--sd-color-neutral-600, 136 136 136) / var(--tw-text-opacity, 1)) /* Used for inverted disabled state */;
|
912
988
|
}
|
913
989
|
|
914
|
-
.sd-1-
|
915
|
-
.sd-1-
|
990
|
+
.sd-1-5-1-pagination--inverted ul li:first-child:has(a:not([href])) a:hover:not([disabled]),
|
991
|
+
.sd-1-5-1-pagination--inverted ul li:last-child:has(a:not([href])) a:hover:not([disabled]),
|
992
|
+
.sd-1-5-1-pagination--inverted ul li:first-child:has(button[disabled]) button:hover:not([disabled]),
|
993
|
+
.sd-1-5-1-pagination--inverted ul li:last-child:has(button[disabled]) button:hover:not([disabled]) {
|
916
994
|
|
917
995
|
color: rgb(var(--sd-color-neutral-600, 136 136 136) / var(--tw-text-opacity, 1)) /* Used for inverted disabled state */;
|
918
996
|
}
|
919
997
|
|
920
|
-
.sd-1-
|
921
|
-
.sd-1-
|
998
|
+
.sd-1-5-1-pagination--inverted ul li a,
|
999
|
+
.sd-1-5-1-pagination--inverted ul li a[aria-current],
|
1000
|
+
.sd-1-5-1-pagination--inverted ul li button,
|
1001
|
+
.sd-1-5-1-pagination--inverted ul li button[aria-current] {
|
922
1002
|
|
923
1003
|
color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */;
|
924
1004
|
}
|
925
1005
|
|
926
|
-
.sd-1-
|
927
|
-
.sd-1-
|
1006
|
+
.sd-1-5-1-pagination--inverted ul li a:hover:not([disabled]),
|
1007
|
+
.sd-1-5-1-pagination--inverted ul li a[aria-current]:hover:not([disabled]),
|
1008
|
+
.sd-1-5-1-pagination--inverted ul li button:hover:not([disabled]),
|
1009
|
+
.sd-1-5-1-pagination--inverted ul li button[aria-current]:hover:not([disabled]) {
|
928
1010
|
|
929
1011
|
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 */;
|
930
1012
|
}
|
931
1013
|
|
932
|
-
.sd-1-
|
933
|
-
.sd-1-
|
1014
|
+
.sd-1-5-1-pagination--inverted ul li a:active:not([disabled]),
|
1015
|
+
.sd-1-5-1-pagination--inverted ul li a[aria-current]:active:not([disabled]),
|
1016
|
+
.sd-1-5-1-pagination--inverted ul li button:active:not([disabled]),
|
1017
|
+
.sd-1-5-1-pagination--inverted ul li button[aria-current]:active:not([disabled]) {
|
934
1018
|
|
935
1019
|
color: rgb(var(--sd-color-primary-400, 153 171 208) / var(--tw-text-opacity, 1)) /* Additional text inverted color
|
936
1020
|
Used for inverted pressed interaction text link */;
|
937
1021
|
}
|
938
1022
|
|
939
|
-
.sd-1-
|
1023
|
+
.sd-1-5-1-pagination--inverted ul li a:focus-visible, .sd-1-5-1-pagination--inverted ul li a[aria-current]:focus-visible, .sd-1-5-1-pagination--inverted ul li button:focus-visible, .sd-1-5-1-pagination--inverted ul li button[aria-current]:focus-visible {
|
940
1024
|
outline-color: rgb(var(--sd-color-white, 255 255 255) / 1) /* Used for buttons, inverted focus state */;
|
941
1025
|
}
|
942
1026
|
|
943
|
-
.sd-1-
|
1027
|
+
.sd-1-5-1-pagination--inverted.sd-1-5-1-pagination--simple ul li {
|
944
1028
|
|
945
1029
|
color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */;
|
946
1030
|
}
|
947
1031
|
|
948
|
-
.sd-1-
|
1032
|
+
.sd-1-5-1-pagination--inverted.sd-1-5-1-pagination--simple ul li::after {
|
949
1033
|
content: var(--tw-content);
|
950
1034
|
|
951
1035
|
color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */;
|
@@ -953,18 +1037,18 @@ Used for inverted pressed interaction text link */;
|
|
953
1037
|
|
954
1038
|
/**
|
955
1039
|
* Description of the style.
|
956
|
-
* @name sd-1-
|
1040
|
+
* @name sd-1-5-1-status-badge
|
957
1041
|
* @status stable
|
958
1042
|
* @since 1.0
|
959
|
-
* @variant { sucess | warning | error | info } sd-1-
|
1043
|
+
* @variant { sucess | warning | error | info } sd-1-5-1-status-badge--...
|
960
1044
|
*/
|
961
1045
|
|
962
|
-
.sd-1-
|
1046
|
+
.sd-1-5-1-status-badge {
|
963
1047
|
display: inline-flex;
|
964
1048
|
align-items: center;
|
965
1049
|
}
|
966
1050
|
|
967
|
-
.sd-1-
|
1051
|
+
.sd-1-5-1-status-badge sd-icon {
|
968
1052
|
margin-right: var(--sd-spacing-2, 0.5rem) /* 8px */;
|
969
1053
|
display: flex;
|
970
1054
|
height: var(--sd-spacing-3, 0.75rem) /* 12px */;
|
@@ -975,22 +1059,22 @@ Used for inverted pressed interaction text link */;
|
|
975
1059
|
color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */ !important;
|
976
1060
|
}
|
977
1061
|
|
978
|
-
.sd-1-
|
1062
|
+
.sd-1-5-1-status-badge--success sd-icon {
|
979
1063
|
|
980
1064
|
background-color: rgb(var(--sd-color-success, 37 136 14) / var(--tw-bg-opacity, 1)) /* Used for success messages */;
|
981
1065
|
}
|
982
1066
|
|
983
|
-
.sd-1-
|
1067
|
+
.sd-1-5-1-status-badge--warning sd-icon {
|
984
1068
|
|
985
1069
|
background-color: rgb(var(--sd-color-warning, 187 141 32) / var(--tw-bg-opacity, 1)) /* Used for notifications */;
|
986
1070
|
}
|
987
1071
|
|
988
|
-
.sd-1-
|
1072
|
+
.sd-1-5-1-status-badge--error sd-icon {
|
989
1073
|
|
990
1074
|
background-color: rgb(var(--sd-color-error, 204 25 55) / var(--tw-bg-opacity, 1)) /* Used for notification, status-badge */;
|
991
1075
|
}
|
992
1076
|
|
993
|
-
.sd-1-
|
1077
|
+
.sd-1-5-1-status-badge--info sd-icon {
|
994
1078
|
|
995
1079
|
background-color: rgb(var(--sd-color-info, 21 130 213) / var(--tw-bg-opacity, 1)) /* Used for notification, status-badge */;
|
996
1080
|
}
|
@@ -999,23 +1083,23 @@ Used for inverted pressed interaction text link */;
|
|
999
1083
|
|
1000
1084
|
/**
|
1001
1085
|
* Prose
|
1002
|
-
* @name sd-1-
|
1086
|
+
* @name sd-1-5-1-prose
|
1003
1087
|
* @status stable
|
1004
1088
|
* @since 3.6.0
|
1005
|
-
* @boolean sd-1-
|
1006
|
-
* @boolean sd-1-
|
1089
|
+
* @boolean sd-1-5-1-prose--inverted Inverts the content, but not tables.
|
1090
|
+
* @boolean sd-1-5-1-prose--full-width Overrides the 80ch max-width and makes the prose full width.
|
1007
1091
|
*/
|
1008
1092
|
|
1009
1093
|
/**
|
1010
1094
|
* 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.
|
1011
|
-
* @name sd-1-
|
1095
|
+
* @name sd-1-5-1-display
|
1012
1096
|
* @status stable
|
1013
1097
|
* @since 1.7
|
1014
|
-
* @variant { xl | 3xl } sd-1-
|
1015
|
-
* @boolean sd-1-
|
1098
|
+
* @variant { xl | 3xl } sd-1-5-1-display--size-... The display's size.
|
1099
|
+
* @boolean sd-1-5-1-display--inverted Inverts the display text.
|
1016
1100
|
*/
|
1017
1101
|
|
1018
|
-
.sd-1-
|
1102
|
+
.sd-1-5-1-display {
|
1019
1103
|
font-size: var(--sd-font-size-3xl, 2rem) /* 32px */;
|
1020
1104
|
font-weight: 400;
|
1021
1105
|
line-height: var(--sd-line-height-tight, 120%) /* Used for display and large titles */;
|
@@ -1025,12 +1109,12 @@ Used for inverted pressed interaction text link */;
|
|
1025
1109
|
|
1026
1110
|
@media (min-width: 1024px) {
|
1027
1111
|
|
1028
|
-
.sd-1-
|
1112
|
+
.sd-1-5-1-display {
|
1029
1113
|
font-size: var(--sd-font-size-4xl, 2.5rem) /* 40px */;
|
1030
1114
|
}
|
1031
1115
|
}
|
1032
1116
|
|
1033
|
-
.sd-1-
|
1117
|
+
.sd-1-5-1-display--size-xl {
|
1034
1118
|
font-size: var(--sd-font-size-xl, 1.5rem) /* 24px */;
|
1035
1119
|
font-weight: 400;
|
1036
1120
|
line-height: var(--sd-line-height-tight, 120%) /* Used for display and large titles */;
|
@@ -1038,7 +1122,7 @@ Used for inverted pressed interaction text link */;
|
|
1038
1122
|
color: rgb(var(--sd-color-black, 24 24 24) / var(--tw-text-opacity, 1)) /* Default text color */;
|
1039
1123
|
}
|
1040
1124
|
|
1041
|
-
.sd-1-
|
1125
|
+
.sd-1-5-1-display--size-3xl {
|
1042
1126
|
font-size: var(--sd-font-size-2xl, 1.75rem) /* 28px */;
|
1043
1127
|
font-weight: 400;
|
1044
1128
|
line-height: var(--sd-line-height-tight, 120%) /* Used for display and large titles */;
|
@@ -1048,35 +1132,35 @@ Used for inverted pressed interaction text link */;
|
|
1048
1132
|
|
1049
1133
|
@media (min-width: 1024px) {
|
1050
1134
|
|
1051
|
-
.sd-1-
|
1135
|
+
.sd-1-5-1-display--size-3xl {
|
1052
1136
|
font-size: var(--sd-font-size-3xl, 2rem) /* 32px */;
|
1053
1137
|
}
|
1054
1138
|
}
|
1055
1139
|
|
1056
|
-
.sd-1-
|
1140
|
+
.sd-1-5-1-display--inverted {
|
1057
1141
|
|
1058
1142
|
color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */;
|
1059
1143
|
}
|
1060
1144
|
|
1061
1145
|
/**
|
1062
1146
|
* 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.
|
1063
|
-
* @name sd-1-
|
1147
|
+
* @name sd-1-5-1-headline
|
1064
1148
|
* @status stable
|
1065
1149
|
* @since 1.16
|
1066
|
-
* @variant { 3xl | xl | lg | base } sd-1-
|
1067
|
-
* @boolean sd-1-
|
1068
|
-
* @boolean sd-1-
|
1150
|
+
* @variant { 3xl | xl | lg | base } sd-1-5-1-headline--size-... The headline's size.
|
1151
|
+
* @boolean sd-1-5-1-headline--inverted Inverts the headline text.
|
1152
|
+
* @boolean sd-1-5-1-headline--inline Sets inline behavior. Used exclusively when an sd-icon or other component is present. See usage <a href="#inline">here.</a>
|
1069
1153
|
*/
|
1070
1154
|
|
1071
|
-
.sd-1-
|
1072
|
-
.sd-1-
|
1155
|
+
.sd-1-5-1-headline,
|
1156
|
+
.sd-1-5-1-prose :is(h1, h2, h3, h4, h5) {
|
1073
1157
|
display: flex;
|
1074
1158
|
font-weight: 700;
|
1075
1159
|
|
1076
1160
|
color: rgb(var(--sd-color-primary, 0 53 142) / var(--tw-text-opacity, 1)) /* Primary brand color for text */;
|
1077
1161
|
}
|
1078
1162
|
|
1079
|
-
.sd-1-
|
1163
|
+
.sd-1-5-1-headline sd-icon, .sd-1-5-1-prose :is(h1, h2, h3, h4, h5) sd-icon {
|
1080
1164
|
flex-shrink: 0;
|
1081
1165
|
font-size: 3rem;
|
1082
1166
|
|
@@ -1085,15 +1169,15 @@ Used for inverted pressed interaction text link */;
|
|
1085
1169
|
|
1086
1170
|
@media (min-width: 640px) {
|
1087
1171
|
|
1088
|
-
.sd-1-
|
1172
|
+
.sd-1-5-1-headline sd-icon, .sd-1-5-1-prose :is(h1, h2, h3, h4, h5) sd-icon {
|
1089
1173
|
margin-top: var(--sd-spacing-2, 0.5rem) /* 8px */;
|
1090
1174
|
}
|
1091
1175
|
}
|
1092
1176
|
|
1093
|
-
.sd-1-
|
1094
|
-
.sd-1-
|
1095
|
-
.sd-1-
|
1096
|
-
.sd-1-
|
1177
|
+
.sd-1-5-1-headline.sd-1-5-1-headline,
|
1178
|
+
.sd-1-5-1-headline:is(h1):not(.sd-1-5-1-headline),
|
1179
|
+
.sd-1-5-1-prose :is(h1, h2, h3, h4, h5).sd-1-5-1-headline,
|
1180
|
+
.sd-1-5-1-prose :is(h1, h2, h3, h4, h5):is(h1):not(.sd-1-5-1-headline) {
|
1097
1181
|
gap: var(--sd-spacing-4, 1rem) /* 16px */;
|
1098
1182
|
font-size: var(--sd-font-size-3xl, 2rem) /* 32px */;
|
1099
1183
|
line-height: var(--sd-line-height-tight, 120%) /* Used for display and large titles */;
|
@@ -1101,29 +1185,29 @@ Used for inverted pressed interaction text link */;
|
|
1101
1185
|
|
1102
1186
|
@media (min-width: 640px) {
|
1103
1187
|
|
1104
|
-
.sd-1-
|
1105
|
-
.sd-1-
|
1106
|
-
.sd-1-
|
1107
|
-
.sd-1-
|
1188
|
+
.sd-1-5-1-headline.sd-1-5-1-headline,
|
1189
|
+
.sd-1-5-1-headline:is(h1):not(.sd-1-5-1-headline),
|
1190
|
+
.sd-1-5-1-prose :is(h1, h2, h3, h4, h5).sd-1-5-1-headline,
|
1191
|
+
.sd-1-5-1-prose :is(h1, h2, h3, h4, h5):is(h1):not(.sd-1-5-1-headline) {
|
1108
1192
|
font-size: var(--sd-font-size-4xl, 2.5rem) /* 40px */;
|
1109
1193
|
}
|
1110
1194
|
}
|
1111
1195
|
|
1112
|
-
.sd-1-
|
1196
|
+
.sd-1-5-1-headline.sd-1-5-1-headline sd-icon, .sd-1-5-1-headline:is(h1):not(.sd-1-5-1-headline) sd-icon, .sd-1-5-1-prose :is(h1, h2, h3, h4, h5).sd-1-5-1-headline sd-icon, .sd-1-5-1-prose :is(h1, h2, h3, h4, h5):is(h1):not(.sd-1-5-1-headline) sd-icon {
|
1113
1197
|
margin-top: calc(var(--sd-spacing-1, 0.25rem) /* 4px */ * -1);
|
1114
1198
|
}
|
1115
1199
|
|
1116
1200
|
@media (min-width: 640px) {
|
1117
1201
|
|
1118
|
-
.sd-1-
|
1202
|
+
.sd-1-5-1-headline.sd-1-5-1-headline sd-icon, .sd-1-5-1-headline:is(h1):not(.sd-1-5-1-headline) sd-icon, .sd-1-5-1-prose :is(h1, h2, h3, h4, h5).sd-1-5-1-headline sd-icon, .sd-1-5-1-prose :is(h1, h2, h3, h4, h5):is(h1):not(.sd-1-5-1-headline) sd-icon {
|
1119
1203
|
margin-top: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
|
1120
1204
|
}
|
1121
1205
|
}
|
1122
1206
|
|
1123
|
-
.sd-1-
|
1124
|
-
.sd-1-
|
1125
|
-
.sd-1-
|
1126
|
-
.sd-1-
|
1207
|
+
.sd-1-5-1-headline.sd-1-5-1-headline--size-3xl,
|
1208
|
+
.sd-1-5-1-headline:is(h2):not(.sd-1-5-1-headline),
|
1209
|
+
.sd-1-5-1-prose :is(h1, h2, h3, h4, h5).sd-1-5-1-headline--size-3xl,
|
1210
|
+
.sd-1-5-1-prose :is(h1, h2, h3, h4, h5):is(h2):not(.sd-1-5-1-headline) {
|
1127
1211
|
gap: var(--sd-spacing-4, 1rem) /* 16px */;
|
1128
1212
|
font-size: var(--sd-font-size-2xl, 1.75rem) /* 28px */;
|
1129
1213
|
line-height: var(--sd-line-height-tight, 120%) /* Used for display and large titles */;
|
@@ -1131,144 +1215,144 @@ Used for inverted pressed interaction text link */;
|
|
1131
1215
|
|
1132
1216
|
@media (min-width: 640px) {
|
1133
1217
|
|
1134
|
-
.sd-1-
|
1135
|
-
.sd-1-
|
1136
|
-
.sd-1-
|
1137
|
-
.sd-1-
|
1218
|
+
.sd-1-5-1-headline.sd-1-5-1-headline--size-3xl,
|
1219
|
+
.sd-1-5-1-headline:is(h2):not(.sd-1-5-1-headline),
|
1220
|
+
.sd-1-5-1-prose :is(h1, h2, h3, h4, h5).sd-1-5-1-headline--size-3xl,
|
1221
|
+
.sd-1-5-1-prose :is(h1, h2, h3, h4, h5):is(h2):not(.sd-1-5-1-headline) {
|
1138
1222
|
font-size: var(--sd-font-size-3xl, 2rem) /* 32px */;
|
1139
1223
|
}
|
1140
1224
|
}
|
1141
1225
|
|
1142
|
-
.sd-1-
|
1226
|
+
.sd-1-5-1-headline.sd-1-5-1-headline--size-3xl sd-icon, .sd-1-5-1-headline:is(h2):not(.sd-1-5-1-headline) sd-icon, .sd-1-5-1-prose :is(h1, h2, h3, h4, h5).sd-1-5-1-headline--size-3xl sd-icon, .sd-1-5-1-prose :is(h1, h2, h3, h4, h5):is(h2):not(.sd-1-5-1-headline) sd-icon {
|
1143
1227
|
margin-top: calc(var(--sd-spacing-1, 0.25rem) /* 4px */ * -1);
|
1144
1228
|
}
|
1145
1229
|
|
1146
1230
|
@media (min-width: 640px) {
|
1147
1231
|
|
1148
|
-
.sd-1-
|
1232
|
+
.sd-1-5-1-headline.sd-1-5-1-headline--size-3xl sd-icon, .sd-1-5-1-headline:is(h2):not(.sd-1-5-1-headline) sd-icon, .sd-1-5-1-prose :is(h1, h2, h3, h4, h5).sd-1-5-1-headline--size-3xl sd-icon, .sd-1-5-1-prose :is(h1, h2, h3, h4, h5):is(h2):not(.sd-1-5-1-headline) sd-icon {
|
1149
1233
|
margin-top: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
|
1150
1234
|
}
|
1151
1235
|
}
|
1152
1236
|
|
1153
|
-
.sd-1-
|
1154
|
-
.sd-1-
|
1155
|
-
.sd-1-
|
1156
|
-
.sd-1-
|
1157
|
-
.sd-1-
|
1158
|
-
.sd-1-
|
1159
|
-
.sd-1-
|
1160
|
-
.sd-1-
|
1237
|
+
.sd-1-5-1-headline.sd-1-5-1-headline--size-xl,
|
1238
|
+
.sd-1-5-1-headline.sd-1-5-1-headline--size-lg,
|
1239
|
+
.sd-1-5-1-headline.sd-1-5-1-headline--size-base,
|
1240
|
+
.sd-1-5-1-headline:is(h3, h4, h5):not(.sd-1-5-1-headline),
|
1241
|
+
.sd-1-5-1-prose :is(h1, h2, h3, h4, h5).sd-1-5-1-headline--size-xl,
|
1242
|
+
.sd-1-5-1-prose :is(h1, h2, h3, h4, h5).sd-1-5-1-headline--size-lg,
|
1243
|
+
.sd-1-5-1-prose :is(h1, h2, h3, h4, h5).sd-1-5-1-headline--size-base,
|
1244
|
+
.sd-1-5-1-prose :is(h1, h2, h3, h4, h5):is(h3, h4, h5):not(.sd-1-5-1-headline) {
|
1161
1245
|
gap: var(--sd-spacing-2, 0.5rem) /* 8px */;
|
1162
1246
|
|
1163
1247
|
color: rgb(var(--sd-color-black, 24 24 24) / var(--tw-text-opacity, 1)) /* Default text color */;
|
1164
1248
|
}
|
1165
1249
|
|
1166
|
-
.sd-1-
|
1250
|
+
.sd-1-5-1-headline.sd-1-5-1-headline--size-xl sd-icon, .sd-1-5-1-headline.sd-1-5-1-headline--size-lg sd-icon, .sd-1-5-1-headline.sd-1-5-1-headline--size-base sd-icon, .sd-1-5-1-headline:is(h3, h4, h5):not(.sd-1-5-1-headline) sd-icon, .sd-1-5-1-prose :is(h1, h2, h3, h4, h5).sd-1-5-1-headline--size-xl sd-icon, .sd-1-5-1-prose :is(h1, h2, h3, h4, h5).sd-1-5-1-headline--size-lg sd-icon, .sd-1-5-1-prose :is(h1, h2, h3, h4, h5).sd-1-5-1-headline--size-base sd-icon, .sd-1-5-1-prose :is(h1, h2, h3, h4, h5):is(h3, h4, h5):not(.sd-1-5-1-headline) sd-icon {
|
1167
1251
|
font-size: 2rem;
|
1168
1252
|
}
|
1169
1253
|
|
1170
|
-
.sd-1-
|
1171
|
-
.sd-1-
|
1172
|
-
.sd-1-
|
1173
|
-
.sd-1-
|
1254
|
+
.sd-1-5-1-headline.sd-1-5-1-headline--size-xl,
|
1255
|
+
.sd-1-5-1-headline:is(h3):not(.sd-1-5-1-headline),
|
1256
|
+
.sd-1-5-1-prose :is(h1, h2, h3, h4, h5).sd-1-5-1-headline--size-xl,
|
1257
|
+
.sd-1-5-1-prose :is(h1, h2, h3, h4, h5):is(h3):not(.sd-1-5-1-headline) {
|
1174
1258
|
font-size: var(--sd-font-size-xl, 1.5rem) /* 24px */;
|
1175
1259
|
}
|
1176
1260
|
|
1177
|
-
.sd-1-
|
1261
|
+
.sd-1-5-1-headline.sd-1-5-1-headline--size-xl sd-icon, .sd-1-5-1-headline:is(h3):not(.sd-1-5-1-headline) sd-icon, .sd-1-5-1-prose :is(h1, h2, h3, h4, h5).sd-1-5-1-headline--size-xl sd-icon, .sd-1-5-1-prose :is(h1, h2, h3, h4, h5):is(h3):not(.sd-1-5-1-headline) sd-icon {
|
1178
1262
|
margin-top: var(--sd-spacing-0-5, 0.125rem) /* 2px */;
|
1179
1263
|
}
|
1180
1264
|
|
1181
1265
|
@media (min-width: 640px) {
|
1182
1266
|
|
1183
|
-
.sd-1-
|
1267
|
+
.sd-1-5-1-headline.sd-1-5-1-headline--size-xl sd-icon, .sd-1-5-1-headline:is(h3):not(.sd-1-5-1-headline) sd-icon, .sd-1-5-1-prose :is(h1, h2, h3, h4, h5).sd-1-5-1-headline--size-xl sd-icon, .sd-1-5-1-prose :is(h1, h2, h3, h4, h5):is(h3):not(.sd-1-5-1-headline) sd-icon {
|
1184
1268
|
margin-top: var(--sd-spacing-0-5, 0.125rem) /* 2px */;
|
1185
1269
|
}
|
1186
1270
|
}
|
1187
1271
|
|
1188
|
-
.sd-1-
|
1189
|
-
.sd-1-
|
1190
|
-
.sd-1-
|
1191
|
-
.sd-1-
|
1192
|
-
.sd-1-
|
1193
|
-
.sd-1-
|
1272
|
+
.sd-1-5-1-headline.sd-1-5-1-headline--size-lg,
|
1273
|
+
.sd-1-5-1-headline.sd-1-5-1-headline--size-base,
|
1274
|
+
.sd-1-5-1-headline:is(h4, h5):not(.sd-1-5-1-headline),
|
1275
|
+
.sd-1-5-1-prose :is(h1, h2, h3, h4, h5).sd-1-5-1-headline--size-lg,
|
1276
|
+
.sd-1-5-1-prose :is(h1, h2, h3, h4, h5).sd-1-5-1-headline--size-base,
|
1277
|
+
.sd-1-5-1-prose :is(h1, h2, h3, h4, h5):is(h4, h5):not(.sd-1-5-1-headline) {
|
1194
1278
|
line-height: var(--sd-line-height-normal, 150%) /* Used for body copy and smaller titles */;
|
1195
1279
|
}
|
1196
1280
|
|
1197
|
-
.sd-1-
|
1198
|
-
.sd-1-
|
1199
|
-
.sd-1-
|
1200
|
-
.sd-1-
|
1281
|
+
.sd-1-5-1-headline.sd-1-5-1-headline--size-lg,
|
1282
|
+
.sd-1-5-1-headline:is(h4),
|
1283
|
+
.sd-1-5-1-prose :is(h1, h2, h3, h4, h5).sd-1-5-1-headline--size-lg,
|
1284
|
+
.sd-1-5-1-prose :is(h1, h2, h3, h4, h5):is(h4) {
|
1201
1285
|
font-size: var(--sd-font-size-lg, 1.25rem) /* 20px */;
|
1202
1286
|
}
|
1203
1287
|
|
1204
|
-
.sd-1-
|
1288
|
+
.sd-1-5-1-headline.sd-1-5-1-headline--size-lg sd-icon, .sd-1-5-1-headline:is(h4) sd-icon, .sd-1-5-1-prose :is(h1, h2, h3, h4, h5).sd-1-5-1-headline--size-lg sd-icon, .sd-1-5-1-prose :is(h1, h2, h3, h4, h5):is(h4) sd-icon {
|
1205
1289
|
margin-top: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
|
1206
1290
|
}
|
1207
1291
|
|
1208
1292
|
@media (min-width: 640px) {
|
1209
1293
|
|
1210
|
-
.sd-1-
|
1294
|
+
.sd-1-5-1-headline.sd-1-5-1-headline--size-lg sd-icon, .sd-1-5-1-headline:is(h4) sd-icon, .sd-1-5-1-prose :is(h1, h2, h3, h4, h5).sd-1-5-1-headline--size-lg sd-icon, .sd-1-5-1-prose :is(h1, h2, h3, h4, h5):is(h4) sd-icon {
|
1211
1295
|
margin-top: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
|
1212
1296
|
}
|
1213
1297
|
}
|
1214
1298
|
|
1215
|
-
.sd-1-
|
1216
|
-
.sd-1-
|
1217
|
-
.sd-1-
|
1218
|
-
.sd-1-
|
1299
|
+
.sd-1-5-1-headline.sd-1-5-1-headline--size-base,
|
1300
|
+
.sd-1-5-1-headline:is(h5):not(.sd-1-5-1-headline),
|
1301
|
+
.sd-1-5-1-prose :is(h1, h2, h3, h4, h5).sd-1-5-1-headline--size-base,
|
1302
|
+
.sd-1-5-1-prose :is(h1, h2, h3, h4, h5):is(h5):not(.sd-1-5-1-headline) {
|
1219
1303
|
font-size: var(--sd-font-size-base, 1rem) /* 16px */;
|
1220
1304
|
}
|
1221
1305
|
|
1222
|
-
.sd-1-
|
1306
|
+
.sd-1-5-1-headline.sd-1-5-1-headline--size-base sd-icon, .sd-1-5-1-headline:is(h5):not(.sd-1-5-1-headline) sd-icon, .sd-1-5-1-prose :is(h1, h2, h3, h4, h5).sd-1-5-1-headline--size-base sd-icon, .sd-1-5-1-prose :is(h1, h2, h3, h4, h5):is(h5):not(.sd-1-5-1-headline) sd-icon {
|
1223
1307
|
margin-top: calc(var(--sd-spacing-1, 0.25rem) /* 4px */ * -1);
|
1224
1308
|
}
|
1225
1309
|
|
1226
|
-
.sd-1-
|
1310
|
+
.sd-1-5-1-headline.sd-1-5-1-headline--size-base mark, .sd-1-5-1-headline:is(h5):not(.sd-1-5-1-headline) mark, .sd-1-5-1-prose :is(h1, h2, h3, h4, h5).sd-1-5-1-headline--size-base mark, .sd-1-5-1-prose :is(h1, h2, h3, h4, h5):is(h5):not(.sd-1-5-1-headline) mark {
|
1227
1311
|
color: inherit;
|
1228
1312
|
}
|
1229
1313
|
|
1230
|
-
.sd-1-
|
1314
|
+
.sd-1-5-1-headline--inline {
|
1231
1315
|
display: inline-block;
|
1232
1316
|
}
|
1233
1317
|
|
1234
|
-
.sd-1-
|
1318
|
+
.sd-1-5-1-headline--inline sd-icon {
|
1235
1319
|
margin-right: var(--sd-spacing-2, 0.5rem) /* 8px */;
|
1236
1320
|
margin-top: calc(var(--sd-spacing-1, 0.25rem) /* 4px */ * -1);
|
1237
1321
|
vertical-align: middle;
|
1238
1322
|
}
|
1239
1323
|
|
1240
|
-
.sd-1-
|
1324
|
+
.sd-1-5-1-headline--inline:is(.sd-1-5-1-headline--size-xl, .sd-1-5-1-headline--size-lg, .sd-1-5-1-headline--size-base) sd-icon {
|
1241
1325
|
margin-right: var(--sd-spacing-0-5, 0.125rem) /* 2px */;
|
1242
1326
|
}
|
1243
1327
|
|
1244
|
-
.sd-1-
|
1245
|
-
.sd-1-
|
1328
|
+
.sd-1-5-1-headline--inverted:not(#_),
|
1329
|
+
.sd-1-5-1-prose--inverted :is(h1, h2, h3, h4, h5):not(.sd-1-5-1-headline):not(#_) {
|
1246
1330
|
|
1247
1331
|
color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */;
|
1248
1332
|
}
|
1249
1333
|
|
1250
|
-
.sd-1-
|
1334
|
+
.sd-1-5-1-headline--inverted:not(#_) sd-icon, .sd-1-5-1-prose--inverted :is(h1, h2, h3, h4, h5):not(.sd-1-5-1-headline):not(#_) sd-icon {
|
1251
1335
|
|
1252
1336
|
color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */;
|
1253
1337
|
}
|
1254
1338
|
|
1255
1339
|
/**
|
1256
1340
|
* Generates basic styles for interactive elements.
|
1257
|
-
* @name sd-1-
|
1341
|
+
* @name sd-1-5-1-interactive
|
1258
1342
|
* @status stable
|
1259
1343
|
* @since 1.11
|
1260
|
-
* @boolean sd-1-
|
1261
|
-
* @boolean sd-1-
|
1262
|
-
* @boolean sd-1-
|
1344
|
+
* @boolean sd-1-5-1-interactive--disabled Makes an element look disabled.
|
1345
|
+
* @boolean sd-1-5-1-interactive--inverted Inverts the colors of an element.
|
1346
|
+
* @boolean sd-1-5-1-interactive--reset Resets the default browser styles of e.g., a button.
|
1263
1347
|
*/
|
1264
1348
|
|
1265
|
-
.sd-1-
|
1349
|
+
.sd-1-5-1-prose a--reset, .sd-1-5-1-interactive--reset {
|
1266
1350
|
all: unset;
|
1267
1351
|
outline: revert;
|
1268
1352
|
}
|
1269
1353
|
|
1270
|
-
.sd-1-
|
1271
|
-
.sd-1-
|
1354
|
+
.sd-1-5-1-prose a,
|
1355
|
+
.sd-1-5-1-interactive {
|
1272
1356
|
cursor: pointer;
|
1273
1357
|
|
1274
1358
|
color: rgb(var(--sd-color-primary, 0 53 142) / var(--tw-text-opacity, 1)) /* Primary brand color for text */;
|
@@ -1282,80 +1366,80 @@ Smooth transitions eg. for buttons or dropdowns */;
|
|
1282
1366
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
1283
1367
|
}
|
1284
1368
|
|
1285
|
-
.sd-1-
|
1286
|
-
.sd-1-
|
1369
|
+
.sd-1-5-1-prose a:hover:not([disabled]),
|
1370
|
+
.sd-1-5-1-interactive:hover:not([disabled]) {
|
1287
1371
|
|
1288
1372
|
color: rgb(var(--sd-color-primary-500, 70 109 175) / var(--tw-text-opacity, 1)) /* Used for hover interaction */;
|
1289
1373
|
}
|
1290
1374
|
|
1291
|
-
.sd-1-
|
1292
|
-
.sd-1-
|
1375
|
+
.sd-1-5-1-prose a:active:not([disabled]),
|
1376
|
+
.sd-1-5-1-interactive:active:not([disabled]) {
|
1293
1377
|
|
1294
1378
|
color: rgb(var(--sd-color-primary-800, 5 21 48) / var(--tw-text-opacity, 1)) /* Used for pressed interaction */;
|
1295
1379
|
}
|
1296
1380
|
|
1297
|
-
.sd-1-
|
1381
|
+
.sd-1-5-1-prose a:is(.sd-1-5-1-interactive), .sd-1-5-1-interactive:is(.sd-1-5-1-interactive) {
|
1298
1382
|
text-decoration-line: none;
|
1299
1383
|
}
|
1300
1384
|
|
1301
|
-
.sd-1-
|
1385
|
+
.sd-1-5-1-prose a:focus-visible, .sd-1-5-1-interactive:focus-visible {
|
1302
1386
|
outline-style: solid;
|
1303
1387
|
outline-width: 2px;
|
1304
1388
|
outline-offset: 2px;
|
1305
1389
|
outline-color: rgb(var(--sd-color-primary, 0 53 142) / 1) /* Used for buttons, select field, focus state */;
|
1306
1390
|
}
|
1307
1391
|
|
1308
|
-
.sd-1-
|
1309
|
-
.sd-1-
|
1310
|
-
.sd-1-
|
1311
|
-
.sd-1-
|
1312
|
-
.sd-1-
|
1313
|
-
.sd-1-
|
1392
|
+
.sd-1-5-1-prose a--disabled,
|
1393
|
+
.sd-1-5-1-prose a[disabled],
|
1394
|
+
.sd-1-5-1-prose a[href=''],
|
1395
|
+
.sd-1-5-1-interactive--disabled,
|
1396
|
+
.sd-1-5-1-interactive[disabled],
|
1397
|
+
.sd-1-5-1-interactive[href=''] {
|
1314
1398
|
cursor: not-allowed;
|
1315
1399
|
|
1316
1400
|
color: rgb(var(--sd-color-neutral-600, 136 136 136) / var(--tw-text-opacity, 1)) /* Used for inverted disabled state */;
|
1317
1401
|
}
|
1318
1402
|
|
1319
|
-
.sd-1-
|
1320
|
-
.sd-1-
|
1321
|
-
.sd-1-
|
1322
|
-
.sd-1-
|
1323
|
-
.sd-1-
|
1324
|
-
.sd-1-
|
1403
|
+
.sd-1-5-1-prose a--disabled:hover:not([disabled]),
|
1404
|
+
.sd-1-5-1-prose a[disabled]:hover:not([disabled]),
|
1405
|
+
.sd-1-5-1-prose a[href='']:hover:not([disabled]),
|
1406
|
+
.sd-1-5-1-interactive--disabled:hover:not([disabled]),
|
1407
|
+
.sd-1-5-1-interactive[disabled]:hover:not([disabled]),
|
1408
|
+
.sd-1-5-1-interactive[href='']:hover:not([disabled]) {
|
1325
1409
|
|
1326
1410
|
color: rgb(var(--sd-color-neutral-600, 136 136 136) / var(--tw-text-opacity, 1)) /* Used for inverted disabled state */;
|
1327
1411
|
}
|
1328
1412
|
|
1329
|
-
.sd-1-
|
1330
|
-
.sd-1-
|
1331
|
-
.sd-1-
|
1332
|
-
.sd-1-
|
1333
|
-
.sd-1-
|
1334
|
-
.sd-1-
|
1413
|
+
.sd-1-5-1-prose a--disabled:active:not([disabled]),
|
1414
|
+
.sd-1-5-1-prose a[disabled]:active:not([disabled]),
|
1415
|
+
.sd-1-5-1-prose a[href='']:active:not([disabled]),
|
1416
|
+
.sd-1-5-1-interactive--disabled:active:not([disabled]),
|
1417
|
+
.sd-1-5-1-interactive[disabled]:active:not([disabled]),
|
1418
|
+
.sd-1-5-1-interactive[href='']:active:not([disabled]) {
|
1335
1419
|
|
1336
1420
|
color: rgb(var(--sd-color-neutral-600, 136 136 136) / var(--tw-text-opacity, 1)) /* Used for inverted disabled state */;
|
1337
1421
|
}
|
1338
1422
|
|
1339
|
-
.sd-1-
|
1340
|
-
.sd-1-
|
1423
|
+
.sd-1-5-1-prose--inverted a,
|
1424
|
+
.sd-1-5-1-interactive--inverted {
|
1341
1425
|
|
1342
1426
|
color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */;
|
1343
1427
|
}
|
1344
1428
|
|
1345
|
-
.sd-1-
|
1346
|
-
.sd-1-
|
1429
|
+
.sd-1-5-1-prose--inverted a:hover:not([disabled]),
|
1430
|
+
.sd-1-5-1-interactive--inverted:hover:not([disabled]) {
|
1347
1431
|
|
1348
1432
|
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 */;
|
1349
1433
|
}
|
1350
1434
|
|
1351
|
-
.sd-1-
|
1352
|
-
.sd-1-
|
1435
|
+
.sd-1-5-1-prose--inverted a:active:not([disabled]),
|
1436
|
+
.sd-1-5-1-interactive--inverted:active:not([disabled]) {
|
1353
1437
|
|
1354
1438
|
color: rgb(var(--sd-color-primary-400, 153 171 208) / var(--tw-text-opacity, 1)) /* Additional text inverted color
|
1355
1439
|
Used for inverted pressed interaction text link */;
|
1356
1440
|
}
|
1357
1441
|
|
1358
|
-
.sd-1-
|
1442
|
+
.sd-1-5-1-prose--inverted a:focus-visible, .sd-1-5-1-interactive--inverted:focus-visible {
|
1359
1443
|
outline-style: solid;
|
1360
1444
|
outline-width: 2px;
|
1361
1445
|
outline-offset: 2px;
|
@@ -1364,15 +1448,15 @@ Used for inverted pressed interaction text link */;
|
|
1364
1448
|
|
1365
1449
|
/**
|
1366
1450
|
* Leadtext is used for text that should be highlighted and a focal point of the page.
|
1367
|
-
* @name sd-1-
|
1451
|
+
* @name sd-1-5-1-leadtext
|
1368
1452
|
* @status stable
|
1369
1453
|
* @since 1.7
|
1370
|
-
* @variant { lg } sd-1-
|
1371
|
-
* @boolean sd-1-
|
1454
|
+
* @variant { lg } sd-1-5-1-leadtext--size-... The leadtext's size.
|
1455
|
+
* @boolean sd-1-5-1-leadtext--inverted Inverts the leadtext text.
|
1372
1456
|
*/
|
1373
1457
|
|
1374
|
-
.sd-1-
|
1375
|
-
.sd-1-
|
1458
|
+
.sd-1-5-1-prose > .sd-1-5-1-leadtext,
|
1459
|
+
.sd-1-5-1-leadtext {
|
1376
1460
|
font-size: var(--sd-font-size-xl, 1.5rem) /* 24px */;
|
1377
1461
|
font-weight: 400;
|
1378
1462
|
line-height: var(--sd-line-height-normal, 150%) /* Used for body copy and smaller titles */;
|
@@ -1380,7 +1464,7 @@ Used for inverted pressed interaction text link */;
|
|
1380
1464
|
color: rgb(var(--sd-color-black, 24 24 24) / var(--tw-text-opacity, 1)) /* Default text color */;
|
1381
1465
|
}
|
1382
1466
|
|
1383
|
-
.sd-1-
|
1467
|
+
.sd-1-5-1-prose > .sd-1-5-1-leadtext--size-lg, .sd-1-5-1-leadtext--size-lg {
|
1384
1468
|
font-size: var(--sd-font-size-lg, 1.25rem) /* 20px */;
|
1385
1469
|
font-weight: 400;
|
1386
1470
|
line-height: var(--sd-line-height-normal, 150%) /* Used for body copy and smaller titles */;
|
@@ -1388,22 +1472,22 @@ Used for inverted pressed interaction text link */;
|
|
1388
1472
|
color: rgb(var(--sd-color-black, 24 24 24) / var(--tw-text-opacity, 1)) /* Default text color */;
|
1389
1473
|
}
|
1390
1474
|
|
1391
|
-
.sd-1-
|
1392
|
-
.sd-1-
|
1475
|
+
.sd-1-5-1-prose--inverted > .sd-1-5-1-leadtext,
|
1476
|
+
.sd-1-5-1-leadtext--inverted {
|
1393
1477
|
|
1394
1478
|
color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */;
|
1395
1479
|
}
|
1396
1480
|
|
1397
1481
|
/**
|
1398
1482
|
* Generates basic styles for list elements.
|
1399
|
-
* @name sd-1-
|
1483
|
+
* @name sd-1-5-1-list
|
1400
1484
|
* @status stable
|
1401
1485
|
* @since 1.39.0
|
1402
|
-
* @boolean sd-1-
|
1486
|
+
* @boolean sd-1-5-1-list--inverted Inverts the list text.
|
1403
1487
|
*/
|
1404
1488
|
|
1405
|
-
.sd-1-
|
1406
|
-
.sd-1-
|
1489
|
+
.sd-1-5-1-list:not(.sd-1-5-1-list--icon),
|
1490
|
+
.sd-1-5-1-prose > :is(ol, ul) {
|
1407
1491
|
list-style-position: revert;
|
1408
1492
|
list-style-type: revert;
|
1409
1493
|
padding: revert;
|
@@ -1417,14 +1501,14 @@ Used for inverted pressed interaction text link */;
|
|
1417
1501
|
*/
|
1418
1502
|
}
|
1419
1503
|
|
1420
|
-
.sd-1-
|
1504
|
+
.sd-1-5-1-list:not(.sd-1-5-1-list--icon) li:not(:first-child), .sd-1-5-1-prose > :is(ol, ul) li:not(:first-child) {
|
1421
1505
|
margin-top: var(--sd-spacing-3, 0.75rem) /* 12px */;
|
1422
1506
|
}
|
1423
1507
|
|
1424
|
-
.sd-1-
|
1425
|
-
.sd-1-
|
1426
|
-
.sd-1-
|
1427
|
-
.sd-1-
|
1508
|
+
.sd-1-5-1-list:not(.sd-1-5-1-list--icon) ul,
|
1509
|
+
.sd-1-5-1-list:not(.sd-1-5-1-list--icon) ol,
|
1510
|
+
.sd-1-5-1-prose > :is(ol, ul) ul,
|
1511
|
+
.sd-1-5-1-prose > :is(ol, ul) ol {
|
1428
1512
|
all: revert;
|
1429
1513
|
padding-left: 1.4em;
|
1430
1514
|
padding-top: 0.75em;
|
@@ -1432,8 +1516,8 @@ Used for inverted pressed interaction text link */;
|
|
1432
1516
|
|
1433
1517
|
@supports not (-webkit-hyphens: none) {
|
1434
1518
|
|
1435
|
-
.sd-1-
|
1436
|
-
.sd-1-
|
1519
|
+
.sd-1-5-1-list:not(.sd-1-5-1-list--icon),
|
1520
|
+
.sd-1-5-1-prose > :is(ol, ul) {
|
1437
1521
|
/* Safari automatically adds some spacing. This adds it for other browsers. */
|
1438
1522
|
|
1439
1523
|
/*
|
@@ -1447,38 +1531,38 @@ Used for inverted pressed interaction text link */;
|
|
1447
1531
|
*/
|
1448
1532
|
/* Level 1 */
|
1449
1533
|
}
|
1450
|
-
.sd-1-
|
1534
|
+
.sd-1-5-1-list:not(.sd-1-5-1-list--icon) li, .sd-1-5-1-prose > :is(ol, ul) li {
|
1451
1535
|
padding-left: 0.3em;
|
1452
1536
|
}
|
1453
|
-
.sd-1-
|
1537
|
+
.sd-1-5-1-list:not(.sd-1-5-1-list--icon):is(ol):not(.sd-1-5-1-list--icon), .sd-1-5-1-prose > :is(ol, ul):is(ol):not(.sd-1-5-1-list--icon) {
|
1454
1538
|
counter-reset: item;
|
1455
1539
|
}
|
1456
|
-
.sd-1-
|
1540
|
+
.sd-1-5-1-list:not(.sd-1-5-1-list--icon):is(ol):not(.sd-1-5-1-list--icon) > li, .sd-1-5-1-prose > :is(ol, ul):is(ol):not(.sd-1-5-1-list--icon) > li {
|
1457
1541
|
counter-increment: item;
|
1458
1542
|
}
|
1459
|
-
.sd-1-
|
1543
|
+
.sd-1-5-1-list:not(.sd-1-5-1-list--icon):is(ol):not(.sd-1-5-1-list--icon) > li::marker, .sd-1-5-1-prose > :is(ol, ul):is(ol):not(.sd-1-5-1-list--icon) > li::marker {
|
1460
1544
|
content: counters(item, '.', decimal) '. ';
|
1461
1545
|
}
|
1462
1546
|
/* Level 2 */
|
1463
|
-
.sd-1-
|
1547
|
+
.sd-1-5-1-list:not(.sd-1-5-1-list--icon):is(ol):not(.sd-1-5-1-list--icon) > li > ol, .sd-1-5-1-prose > :is(ol, ul):is(ol):not(.sd-1-5-1-list--icon) > li > ol {
|
1464
1548
|
padding-left: 1.9em;
|
1465
1549
|
counter-reset: subitem;
|
1466
1550
|
}
|
1467
|
-
.sd-1-
|
1551
|
+
.sd-1-5-1-list:not(.sd-1-5-1-list--icon):is(ol):not(.sd-1-5-1-list--icon) > li > ol > li, .sd-1-5-1-prose > :is(ol, ul):is(ol):not(.sd-1-5-1-list--icon) > li > ol > li {
|
1468
1552
|
counter-increment: subitem;
|
1469
1553
|
}
|
1470
|
-
.sd-1-
|
1554
|
+
.sd-1-5-1-list:not(.sd-1-5-1-list--icon):is(ol):not(.sd-1-5-1-list--icon) > li > ol > li::marker, .sd-1-5-1-prose > :is(ol, ul):is(ol):not(.sd-1-5-1-list--icon) > li > ol > li::marker {
|
1471
1555
|
content: counters(item, '.', decimal) '.' counters(subitem, '.', decimal) '. ';
|
1472
1556
|
}
|
1473
1557
|
/* Level 3 */
|
1474
|
-
.sd-1-
|
1558
|
+
.sd-1-5-1-list:not(.sd-1-5-1-list--icon):is(ol):not(.sd-1-5-1-list--icon) > li > ol > li > ol, .sd-1-5-1-prose > :is(ol, ul):is(ol):not(.sd-1-5-1-list--icon) > li > ol > li > ol {
|
1475
1559
|
padding-left: 2.7em;
|
1476
1560
|
counter-reset: subsubitem;
|
1477
1561
|
}
|
1478
|
-
.sd-1-
|
1562
|
+
.sd-1-5-1-list:not(.sd-1-5-1-list--icon):is(ol):not(.sd-1-5-1-list--icon) > li > ol > li > ol > li, .sd-1-5-1-prose > :is(ol, ul):is(ol):not(.sd-1-5-1-list--icon) > li > ol > li > ol > li {
|
1479
1563
|
counter-increment: subsubitem;
|
1480
1564
|
}
|
1481
|
-
.sd-1-
|
1565
|
+
.sd-1-5-1-list:not(.sd-1-5-1-list--icon):is(ol):not(.sd-1-5-1-list--icon) > li > ol > li > ol > li::marker, .sd-1-5-1-prose > :is(ol, ul):is(ol):not(.sd-1-5-1-list--icon) > li > ol > li > ol > li::marker {
|
1482
1566
|
content: counters(item, '.', decimal) '.' counters(subitem, '.', decimal) '.'
|
1483
1567
|
counters(subsubitem, '.', decimal) '. ';
|
1484
1568
|
}
|
@@ -1486,35 +1570,35 @@ Used for inverted pressed interaction text link */;
|
|
1486
1570
|
|
1487
1571
|
/* Level 1 */
|
1488
1572
|
|
1489
|
-
.sd-1-
|
1490
|
-
.sd-1-
|
1491
|
-
.sd-1-
|
1492
|
-
.sd-1-
|
1573
|
+
.sd-1-5-1-list:not(.sd-1-5-1-list--icon):is(ul):not(.sd-1-5-1-list--icon),
|
1574
|
+
.sd-1-5-1-list:not(.sd-1-5-1-list--icon) ul,
|
1575
|
+
.sd-1-5-1-prose > :is(ol, ul):is(ul):not(.sd-1-5-1-list--icon),
|
1576
|
+
.sd-1-5-1-prose > :is(ol, ul) ul {
|
1493
1577
|
padding-left: 0.5em;
|
1494
1578
|
}
|
1495
1579
|
|
1496
|
-
.sd-1-
|
1580
|
+
.sd-1-5-1-list:not(.sd-1-5-1-list--icon):is(ul):not(.sd-1-5-1-list--icon) > li, .sd-1-5-1-list:not(.sd-1-5-1-list--icon) ul > li, .sd-1-5-1-prose > :is(ol, ul):is(ul):not(.sd-1-5-1-list--icon) > li, .sd-1-5-1-prose > :is(ol, ul) ul > li {
|
1497
1581
|
padding-left: 0.75em;
|
1498
1582
|
list-style-type: '\2022'; /* • */
|
1499
1583
|
}
|
1500
1584
|
|
1501
1585
|
/* Level 2 */
|
1502
1586
|
|
1503
|
-
.sd-1-
|
1587
|
+
.sd-1-5-1-list:not(.sd-1-5-1-list--icon):is(ul):not(.sd-1-5-1-list--icon) > li > ul, .sd-1-5-1-list:not(.sd-1-5-1-list--icon) ul > li > ul, .sd-1-5-1-prose > :is(ol, ul):is(ul):not(.sd-1-5-1-list--icon) > li > ul, .sd-1-5-1-prose > :is(ol, ul) ul > li > ul {
|
1504
1588
|
padding-left: 0.3em;
|
1505
1589
|
}
|
1506
1590
|
|
1507
|
-
.sd-1-
|
1591
|
+
.sd-1-5-1-list:not(.sd-1-5-1-list--icon):is(ul):not(.sd-1-5-1-list--icon) > li > ul > li, .sd-1-5-1-list:not(.sd-1-5-1-list--icon) ul > li > ul > li, .sd-1-5-1-prose > :is(ol, ul):is(ul):not(.sd-1-5-1-list--icon) > li > ul > li, .sd-1-5-1-prose > :is(ol, ul) ul > li > ul > li {
|
1508
1592
|
list-style-type: '\002B1D'; /* · */
|
1509
1593
|
}
|
1510
1594
|
|
1511
1595
|
/* Level 3 */
|
1512
1596
|
|
1513
|
-
.sd-1-
|
1597
|
+
.sd-1-5-1-list:not(.sd-1-5-1-list--icon):is(ul):not(.sd-1-5-1-list--icon) > li > ul > li > ul, .sd-1-5-1-list:not(.sd-1-5-1-list--icon) ul > li > ul > li > ul, .sd-1-5-1-prose > :is(ol, ul):is(ul):not(.sd-1-5-1-list--icon) > li > ul > li > ul, .sd-1-5-1-prose > :is(ol, ul) ul > li > ul > li > ul {
|
1514
1598
|
padding-left: 0.4em;
|
1515
1599
|
}
|
1516
1600
|
|
1517
|
-
.sd-1-
|
1601
|
+
.sd-1-5-1-list:not(.sd-1-5-1-list--icon):is(ul):not(.sd-1-5-1-list--icon) > li > ul > li > ul > li, .sd-1-5-1-list:not(.sd-1-5-1-list--icon) ul > li > ul > li > ul > li, .sd-1-5-1-prose > :is(ol, ul):is(ul):not(.sd-1-5-1-list--icon) > li > ul > li > ul > li, .sd-1-5-1-prose > :is(ol, ul) ul > li > ul > li > ul > li {
|
1518
1602
|
list-style-type: '\2010'; /* - */
|
1519
1603
|
}
|
1520
1604
|
|
@@ -1522,19 +1606,19 @@ Used for inverted pressed interaction text link */;
|
|
1522
1606
|
* Icon lists
|
1523
1607
|
*/
|
1524
1608
|
|
1525
|
-
.sd-1-
|
1609
|
+
.sd-1-5-1-list--icon {
|
1526
1610
|
padding-top: var(--sd-spacing-4, 1rem) /* 16px */;
|
1527
1611
|
padding-bottom: var(--sd-spacing-4, 1rem) /* 16px */;
|
1528
1612
|
text-align: left;
|
1529
1613
|
}
|
1530
1614
|
|
1531
|
-
.sd-1-
|
1532
|
-
.sd-1-
|
1615
|
+
.sd-1-5-1-list--icon li sd-icon:first-of-type,
|
1616
|
+
.sd-1-5-1-list--icon li .sd-1-5-1-list--icon__icon:first-of-type {
|
1533
1617
|
|
1534
1618
|
color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */;
|
1535
1619
|
}
|
1536
1620
|
|
1537
|
-
.sd-1-
|
1621
|
+
.sd-1-5-1-list--icon {
|
1538
1622
|
list-style-type: '';
|
1539
1623
|
}
|
1540
1624
|
|
@@ -1542,19 +1626,19 @@ Used for inverted pressed interaction text link */;
|
|
1542
1626
|
styles without affecting semantics is to set list-style-type to an empty string.
|
1543
1627
|
https://www.matuzo.at/blog/2023/removing-list-styles-without-affecting-semantics */
|
1544
1628
|
|
1545
|
-
.sd-1-
|
1629
|
+
.sd-1-5-1-list--icon > li:first-of-type {
|
1546
1630
|
padding-top: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
|
1547
1631
|
}
|
1548
1632
|
|
1549
|
-
.sd-1-
|
1633
|
+
.sd-1-5-1-list--icon li {
|
1550
1634
|
position: relative;
|
1551
1635
|
padding-top: var(--sd-spacing-3, 0.75rem) /* 12px */;
|
1552
1636
|
padding-left: var(--sd-spacing-10, 2.5rem) /* 40px */;
|
1553
1637
|
line-height: 32px;
|
1554
1638
|
}
|
1555
1639
|
|
1556
|
-
.sd-1-
|
1557
|
-
.sd-1-
|
1640
|
+
.sd-1-5-1-list--icon li > sd-icon:first-of-type,
|
1641
|
+
.sd-1-5-1-list--icon li > .sd-1-5-1-list--icon__icon:first-of-type {
|
1558
1642
|
position: absolute;
|
1559
1643
|
left: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
|
1560
1644
|
font-size: var(--sd-font-size-3xl, 2rem) /* 32px */;
|
@@ -1562,16 +1646,16 @@ Used for inverted pressed interaction text link */;
|
|
1562
1646
|
color: rgb(var(--sd-color-primary, 0 53 142) / var(--tw-text-opacity, 1)) /* Primary brand color for text */;
|
1563
1647
|
}
|
1564
1648
|
|
1565
|
-
.sd-1-
|
1649
|
+
.sd-1-5-1-list--icon.sd-1-5-1-list--horizontal {
|
1566
1650
|
display: flex;
|
1567
1651
|
}
|
1568
1652
|
|
1569
|
-
.sd-1-
|
1653
|
+
.sd-1-5-1-list--icon.sd-1-5-1-list--horizontal li {
|
1570
1654
|
display: flex;
|
1571
1655
|
padding-top: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
|
1572
1656
|
}
|
1573
1657
|
|
1574
|
-
.sd-1-
|
1658
|
+
.sd-1-5-1-list--icon.sd-1-5-1-list--horizontal li:not(:last-child) {
|
1575
1659
|
margin-right: var(--sd-spacing-8, 2rem) /* 32px */;
|
1576
1660
|
}
|
1577
1661
|
|
@@ -1579,31 +1663,31 @@ Used for inverted pressed interaction text link */;
|
|
1579
1663
|
* Inverted
|
1580
1664
|
*/
|
1581
1665
|
|
1582
|
-
.sd-1-
|
1583
|
-
.sd-1-
|
1666
|
+
.sd-1-5-1-list--inverted,
|
1667
|
+
.sd-1-5-1-prose--inverted > :is(ol, ul) {
|
1584
1668
|
|
1585
1669
|
color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */;
|
1586
1670
|
}
|
1587
1671
|
|
1588
|
-
.sd-1-
|
1589
|
-
.sd-1-
|
1590
|
-
.sd-1-
|
1591
|
-
.sd-1-
|
1672
|
+
.sd-1-5-1-list--inverted li > sd-icon:first-of-type,
|
1673
|
+
.sd-1-5-1-list--inverted li > .sd-1-5-1-list--icon__icon:first-of-type,
|
1674
|
+
.sd-1-5-1-prose--inverted > :is(ol, ul) li > sd-icon:first-of-type,
|
1675
|
+
.sd-1-5-1-prose--inverted > :is(ol, ul) li > .sd-1-5-1-list--icon__icon:first-of-type {
|
1592
1676
|
|
1593
1677
|
color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */;
|
1594
1678
|
}
|
1595
1679
|
|
1596
1680
|
/**
|
1597
1681
|
* A paragraph is used to display blocks of text. It uses the base font size and can contain bold and/or link styles.
|
1598
|
-
* @name sd-1-
|
1682
|
+
* @name sd-1-5-1-paragraph
|
1599
1683
|
* @status stable
|
1600
1684
|
* @since 1.7
|
1601
|
-
* @variant { sm } sd-1-
|
1602
|
-
* @boolean sd-1-
|
1685
|
+
* @variant { sm } sd-1-5-1-paragraph--size-... The paragraph's font size.
|
1686
|
+
* @boolean sd-1-5-1-paragraph--inverted Inverts the paragraph text.
|
1603
1687
|
*/
|
1604
1688
|
|
1605
|
-
.sd-1-
|
1606
|
-
.sd-1-
|
1689
|
+
.sd-1-5-1-paragraph,
|
1690
|
+
.sd-1-5-1-prose p {
|
1607
1691
|
font-size: var(--sd-font-size-base, 1rem) /* 16px */;
|
1608
1692
|
font-weight: 400;
|
1609
1693
|
line-height: var(--sd-line-height-normal, 150%) /* Used for body copy and smaller titles */;
|
@@ -1611,7 +1695,7 @@ Used for inverted pressed interaction text link */;
|
|
1611
1695
|
color: rgb(var(--sd-color-black, 24 24 24) / var(--tw-text-opacity, 1)) /* Default text color */;
|
1612
1696
|
}
|
1613
1697
|
|
1614
|
-
.sd-1-
|
1698
|
+
.sd-1-5-1-paragraph--size-sm, .sd-1-5-1-prose p--size-sm {
|
1615
1699
|
font-size: var(--sd-font-size-sm, 0.875rem) /* 14px */;
|
1616
1700
|
font-weight: 400;
|
1617
1701
|
line-height: var(--sd-line-height-normal, 150%) /* Used for body copy and smaller titles */;
|
@@ -1619,35 +1703,35 @@ Used for inverted pressed interaction text link */;
|
|
1619
1703
|
color: rgb(var(--sd-color-black, 24 24 24) / var(--tw-text-opacity, 1)) /* Default text color */;
|
1620
1704
|
}
|
1621
1705
|
|
1622
|
-
.sd-1-
|
1623
|
-
.sd-1-
|
1706
|
+
.sd-1-5-1-paragraph--inverted,
|
1707
|
+
.sd-1-5-1-prose--inverted p {
|
1624
1708
|
|
1625
1709
|
color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */;
|
1626
1710
|
}
|
1627
1711
|
|
1628
1712
|
/**
|
1629
1713
|
* Generates basic styles for media elements.
|
1630
|
-
* @name sd-1-
|
1714
|
+
* @name sd-1-5-1-media
|
1631
1715
|
* @status stable
|
1632
1716
|
* @since 2.5.0
|
1633
|
-
* @boolean sd-1-
|
1717
|
+
* @boolean sd-1-5-1-media--inverted Inverts the figcaption text.
|
1634
1718
|
*/
|
1635
1719
|
|
1636
|
-
.sd-1-
|
1637
|
-
figure.sd-1-
|
1720
|
+
.sd-1-5-1-prose figure,
|
1721
|
+
figure.sd-1-5-1-media {
|
1638
1722
|
margin: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
|
1639
1723
|
}
|
1640
1724
|
|
1641
|
-
.sd-1-
|
1725
|
+
.sd-1-5-1-prose figure figcaption, figure.sd-1-5-1-media figcaption {
|
1642
1726
|
|
1643
1727
|
color: rgb(var(--sd-color-neutral-700, 104 104 104) / var(--tw-text-opacity, 1)) /* Additional text color */;
|
1644
1728
|
}
|
1645
1729
|
|
1646
|
-
.sd-1-
|
1730
|
+
.sd-1-5-1-prose figure figcaption:last-child, figure.sd-1-5-1-media figcaption:last-child {
|
1647
1731
|
margin-top: var(--sd-spacing-3, 0.75rem) /* 12px */;
|
1648
1732
|
}
|
1649
1733
|
|
1650
|
-
.sd-1-
|
1734
|
+
.sd-1-5-1-prose--inverted figure figcaption, figure.sd-1-5-1-media--inverted figcaption {
|
1651
1735
|
|
1652
1736
|
color: rgb(var(--sd-color-primary-400, 153 171 208) / var(--tw-text-opacity, 1)) /* Additional text inverted color
|
1653
1737
|
Used for inverted pressed interaction text link */;
|
@@ -1655,18 +1739,18 @@ Used for inverted pressed interaction text link */;
|
|
1655
1739
|
|
1656
1740
|
/**
|
1657
1741
|
* A table cell is a single cell inside a table, used to display discrete data elements.
|
1658
|
-
* @name sd-1-
|
1742
|
+
* @name sd-1-5-1-table-cell
|
1659
1743
|
* @status stable
|
1660
1744
|
* @since 1.13
|
1661
|
-
* @boolean sd-1-
|
1662
|
-
* @variant { white | primary-100 | neutral-100 } sd-1-
|
1663
|
-
* @boolean sd-1-
|
1664
|
-
* @variant { top | left | right | bottom } sd-1-
|
1745
|
+
* @boolean sd-1-5-1-table-cell--divider Displays a divider to the right.
|
1746
|
+
* @variant { white | primary-100 | neutral-100 } sd-1-5-1-table-cell--bg-... Applies the selected background-color to the table cell. If not selected, a transparent background-color is used per default.
|
1747
|
+
* @boolean sd-1-5-1-table-cell--shadow-active Displays the table shadow.
|
1748
|
+
* @variant { top | left | right | bottom } sd-1-5-1-table-cell--shadow-... Applies the selected shadow to the table cell.
|
1665
1749
|
*/
|
1666
1750
|
|
1667
|
-
.sd-1-
|
1668
|
-
.sd-1-
|
1669
|
-
.sd-1-
|
1751
|
+
.sd-1-5-1-prose td,
|
1752
|
+
.sd-1-5-1-prose th,
|
1753
|
+
.sd-1-5-1-table-cell {
|
1670
1754
|
border-top-width: 1px;
|
1671
1755
|
border-bottom-width: 1px;
|
1672
1756
|
border-left-width: 0px;
|
@@ -1683,11 +1767,11 @@ Used for divider, teaser, container, ... */;
|
|
1683
1767
|
color: rgb(var(--sd-color-black, 24 24 24) / var(--tw-text-opacity, 1)) /* Default text color */;
|
1684
1768
|
}
|
1685
1769
|
|
1686
|
-
.sd-1-
|
1770
|
+
.sd-1-5-1-table-cell--divider {
|
1687
1771
|
border-right-width: 1px;
|
1688
1772
|
}
|
1689
1773
|
|
1690
|
-
.sd-1-
|
1774
|
+
.sd-1-5-1-table-cell--shadow-top:after, .sd-1-5-1-table-cell--shadow-bottom:after, .sd-1-5-1-table-cell--shadow-left:after, .sd-1-5-1-table-cell--shadow-right:after {
|
1691
1775
|
pointer-events: none;
|
1692
1776
|
position: absolute;
|
1693
1777
|
--tw-gradient-from: rgb(0 0 0 / var(--sd-opacity-10, 0.1)) var(--tw-gradient-from-position);
|
@@ -1702,7 +1786,7 @@ Used for divider, teaser, container, ... */;
|
|
1702
1786
|
content: var(--tw-content);
|
1703
1787
|
}
|
1704
1788
|
|
1705
|
-
.sd-1-
|
1789
|
+
.sd-1-5-1-table-cell--shadow-top:after, .sd-1-5-1-table-cell--shadow-bottom:after {
|
1706
1790
|
left: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
|
1707
1791
|
right: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
|
1708
1792
|
height: var(--sd-spacing-2-5, 0.625rem) /* 10px */;
|
@@ -1710,7 +1794,7 @@ Used for divider, teaser, container, ... */;
|
|
1710
1794
|
|
1711
1795
|
/* fix that shows line on top of table-cell */
|
1712
1796
|
|
1713
|
-
.sd-1-
|
1797
|
+
.sd-1-5-1-table-cell--shadow-top:before, .sd-1-5-1-table-cell--shadow-bottom:before {
|
1714
1798
|
position: absolute;
|
1715
1799
|
left: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
|
1716
1800
|
display: block;
|
@@ -1724,66 +1808,66 @@ Used for divider, teaser, container, ... */;
|
|
1724
1808
|
content: var(--tw-content);
|
1725
1809
|
}
|
1726
1810
|
|
1727
|
-
.sd-1-
|
1811
|
+
.sd-1-5-1-table-cell--shadow-left:after, .sd-1-5-1-table-cell--shadow-right:after {
|
1728
1812
|
top: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
|
1729
1813
|
bottom: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
|
1730
1814
|
width: var(--sd-spacing-2-5, 0.625rem) /* 10px */;
|
1731
1815
|
}
|
1732
1816
|
|
1733
|
-
.sd-1-
|
1817
|
+
.sd-1-5-1-table-cell.sd-1-5-1-table-cell--shadow-active:after {
|
1734
1818
|
opacity: 100%;
|
1735
1819
|
}
|
1736
1820
|
|
1737
|
-
.sd-1-
|
1821
|
+
.sd-1-5-1-table-cell--shadow-top:after {
|
1738
1822
|
top: -10px;
|
1739
1823
|
background-image: linear-gradient(to top, var(--tw-gradient-stops));
|
1740
1824
|
}
|
1741
1825
|
|
1742
1826
|
/* fix that shows line on top of table-cell */
|
1743
1827
|
|
1744
|
-
.sd-1-
|
1828
|
+
.sd-1-5-1-table-cell--shadow-top:before {
|
1745
1829
|
bottom: -1px;
|
1746
1830
|
}
|
1747
1831
|
|
1748
|
-
.sd-1-
|
1832
|
+
.sd-1-5-1-table-cell--shadow-bottom:after {
|
1749
1833
|
bottom: -10px;
|
1750
1834
|
background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
|
1751
1835
|
}
|
1752
1836
|
|
1753
1837
|
/* fix that shows line on top of table-cell */
|
1754
1838
|
|
1755
|
-
.sd-1-
|
1839
|
+
.sd-1-5-1-table-cell--shadow-bottom:before {
|
1756
1840
|
top: -1px;
|
1757
1841
|
}
|
1758
1842
|
|
1759
|
-
.sd-1-
|
1843
|
+
.sd-1-5-1-table-cell--shadow-left:after {
|
1760
1844
|
left: -10px;
|
1761
1845
|
background-image: linear-gradient(to left, var(--tw-gradient-stops));
|
1762
1846
|
}
|
1763
1847
|
|
1764
|
-
.sd-1-
|
1848
|
+
.sd-1-5-1-table-cell--shadow-right:after {
|
1765
1849
|
right: -10px;
|
1766
1850
|
background-image: linear-gradient(to right, var(--tw-gradient-stops));
|
1767
1851
|
}
|
1768
1852
|
|
1769
|
-
.sd-1-
|
1853
|
+
.sd-1-5-1-table-cell--bg-white {
|
1770
1854
|
|
1771
1855
|
background-color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-bg-opacity, 1)) /* Default background color (light mode)
Used for inverted button */;
|
1772
1856
|
}
|
1773
1857
|
|
1774
|
-
.sd-1-
|
1858
|
+
.sd-1-5-1-table-cell--bg-primary-100 {
|
1775
1859
|
|
1776
1860
|
background-color: rgb(var(--sd-color-primary-100, 236 240 249) / var(--tw-bg-opacity, 1)) /* Additional background color (light mode) */;
|
1777
1861
|
}
|
1778
1862
|
|
1779
|
-
.sd-1-
|
1863
|
+
.sd-1-5-1-table-cell--bg-neutral-100 {
|
1780
1864
|
|
1781
1865
|
background-color: rgb(var(--sd-color-neutral-100, 246 246 246) / var(--tw-bg-opacity, 1)) /* Additional background color (light mode) */;
|
1782
1866
|
}
|
1783
1867
|
|
1784
1868
|
/**
|
1785
1869
|
* A table is organized structured content, used for scanning, comparing, and analyzing the data.
|
1786
|
-
* @name sd-1-
|
1870
|
+
* @name sd-1-5-1-table
|
1787
1871
|
* @status stable
|
1788
1872
|
* @since 1.13
|
1789
1873
|
*/
|
@@ -1792,8 +1876,8 @@ Used for divider, teaser, container, ... */;
|
|
1792
1876
|
* Remove inherited styles from table before applying our styles.
|
1793
1877
|
*/
|
1794
1878
|
|
1795
|
-
.sd-1-
|
1796
|
-
.sd-1-
|
1879
|
+
.sd-1-5-1-table,
|
1880
|
+
.sd-1-5-1-prose table {
|
1797
1881
|
all: unset;
|
1798
1882
|
display: table;
|
1799
1883
|
border-collapse: collapse;
|
@@ -1802,13 +1886,13 @@ Used for divider, teaser, container, ... */;
|
|
1802
1886
|
border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
|
1803
1887
|
}
|
1804
1888
|
|
1805
|
-
.sd-1-
|
1889
|
+
.sd-1-5-1-table thead tr:first-of-type, .sd-1-5-1-table tfoot tr:first-of-type, .sd-1-5-1-prose table thead tr:first-of-type, .sd-1-5-1-prose table tfoot tr:first-of-type {
|
1806
1890
|
position: relative;
|
1807
1891
|
}
|
1808
1892
|
|
1809
1893
|
/* plop:style */
|
1810
1894
|
|
1811
|
-
.sd-1-
|
1895
|
+
.sd-1-5-1-prose {
|
1812
1896
|
/* Optimize for reading. */
|
1813
1897
|
max-width: 80ch;
|
1814
1898
|
text-align: left;
|
@@ -1816,67 +1900,67 @@ Used for divider, teaser, container, ... */;
|
|
1816
1900
|
|
1817
1901
|
/* Add default spacings */
|
1818
1902
|
|
1819
|
-
.sd-1-
|
1903
|
+
.sd-1-5-1-prose > *:not(:first-child) {
|
1820
1904
|
margin-top: var(--sd-spacing-4, 1rem) /* 16px */;
|
1821
1905
|
}
|
1822
1906
|
|
1823
1907
|
/* First element has no margin-top */
|
1824
1908
|
|
1825
|
-
.sd-1-
|
1909
|
+
.sd-1-5-1-prose > *:first-child {
|
1826
1910
|
margin-top: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
|
1827
1911
|
}
|
1828
1912
|
|
1829
1913
|
/* headings after a heading have a smaller margin-top */
|
1830
1914
|
|
1831
|
-
.sd-1-
|
1915
|
+
.sd-1-5-1-prose > :is(h1, h2, h3, h4, h5):not(#_) + :is(h1, h2, h3, h4, h5) {
|
1832
1916
|
/* :not(#_) is a hack to raise specifity, see https://stackoverflow.com/a/61781795 */
|
1833
1917
|
margin-top: var(--sd-spacing-2, 0.5rem) /* 8px */;
|
1834
1918
|
}
|
1835
1919
|
|
1836
1920
|
/* Headlines after other non-headlines have a larger margin-top */
|
1837
1921
|
|
1838
|
-
.sd-1-
|
1922
|
+
.sd-1-5-1-prose > *:not(:is(h1, h2, h3, h4, h5)) + :is(h1, h2, h3, h4, h5):not(#_) {
|
1839
1923
|
margin-top: var(--sd-spacing-8, 2rem) /* 32px */;
|
1840
1924
|
}
|
1841
1925
|
|
1842
1926
|
/* Images and figures lead to a bigger margin-top for the next element */
|
1843
1927
|
|
1844
|
-
.sd-1-
|
1845
|
-
.sd-1-
|
1928
|
+
.sd-1-5-1-prose > figure + *:not(#_),
|
1929
|
+
.sd-1-5-1-prose > img + *:not(#_) {
|
1846
1930
|
margin-top: var(--sd-spacing-6, 1.5rem) /* 24px */;
|
1847
1931
|
}
|
1848
1932
|
|
1849
1933
|
/* Add styles for elements that are not based on existing CSS styles */
|
1850
1934
|
|
1851
|
-
.sd-1-
|
1935
|
+
.sd-1-5-1-prose hr {
|
1852
1936
|
height: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
|
1853
1937
|
border-top-width: 1px;
|
1854
1938
|
--tw-border-opacity: 1;
|
1855
1939
|
border-color: rgb(var(--sd-color-neutral-500, 174 174 174) / var(--tw-border-opacity, 1)) /* Used for disabled state */;
|
1856
1940
|
}
|
1857
1941
|
|
1858
|
-
.sd-1-
|
1942
|
+
.sd-1-5-1-prose pre {
|
1859
1943
|
overflow: auto;
|
1860
1944
|
}
|
1861
1945
|
|
1862
|
-
.sd-1-
|
1863
|
-
.sd-1-
|
1946
|
+
.sd-1-5-1-prose blockquote,
|
1947
|
+
.sd-1-5-1-prose blockquote > * {
|
1864
1948
|
font-size: var(--sd-font-size-xl, 1.5rem) /* 24px */;
|
1865
1949
|
}
|
1866
1950
|
|
1867
|
-
.sd-1-
|
1951
|
+
.sd-1-5-1-prose blockquote:has(*) *:first-child::before, .sd-1-5-1-prose blockquote:not(:has(*))::before {
|
1868
1952
|
content: open-quote;
|
1869
1953
|
display: inline;
|
1870
1954
|
}
|
1871
1955
|
|
1872
|
-
.sd-1-
|
1956
|
+
.sd-1-5-1-prose blockquote:has(*) *:first-child::after, .sd-1-5-1-prose blockquote:not(:has(*))::after {
|
1873
1957
|
content: close-quote;
|
1874
1958
|
display: inline;
|
1875
1959
|
}
|
1876
1960
|
|
1877
1961
|
/* Fixes for other elements */
|
1878
1962
|
|
1879
|
-
.sd-1-
|
1963
|
+
.sd-1-5-1-prose > :is(ul, ol):not(#_) {
|
1880
1964
|
/* ul and ol have padding that has to be reset */
|
1881
1965
|
padding-top: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
|
1882
1966
|
padding-bottom: var(--sd-spacing-0, 0px) /* No spacing (manually added) */;
|
@@ -1884,18 +1968,18 @@ Used for divider, teaser, container, ... */;
|
|
1884
1968
|
|
1885
1969
|
/* Inverted styles */
|
1886
1970
|
|
1887
|
-
.sd-1-
|
1971
|
+
.sd-1-5-1-prose--inverted hr {
|
1888
1972
|
--tw-border-opacity: 1;
|
1889
1973
|
border-color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-border-opacity, 1)) /* Used for buttons, inverted focus state */;
|
1890
1974
|
}
|
1891
1975
|
|
1892
|
-
.sd-1-
|
1976
|
+
.sd-1-5-1-prose--inverted pre {
|
1893
1977
|
|
1894
1978
|
color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */;
|
1895
1979
|
}
|
1896
1980
|
|
1897
1981
|
/* Full width styles */
|
1898
1982
|
|
1899
|
-
.sd-1-
|
1983
|
+
.sd-1-5-1-prose--full-width {
|
1900
1984
|
max-width: unset;
|
1901
1985
|
}
|