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