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