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