@boostdev/design-system-components 0.1.7 → 0.1.8
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/dist/client.cjs +46 -46
- package/dist/client.css +410 -412
- package/dist/client.js +46 -46
- package/dist/index.cjs +46 -46
- package/dist/index.css +410 -412
- package/dist/index.js +46 -46
- package/package.json +1 -1
- package/src/components/interaction/Dialog/Dialog.module.css +0 -2
package/dist/client.css
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
/* src/components/ui/Accordion/Accordion.module.css */
|
|
2
2
|
@layer component {
|
|
3
|
-
.
|
|
3
|
+
.bds018-accordion {
|
|
4
4
|
display: flex;
|
|
5
5
|
flex-direction: column;
|
|
6
6
|
border: 1px solid var(--color_bg--subtle);
|
|
7
7
|
border-radius: var(--border_radius--s);
|
|
8
8
|
overflow: hidden;
|
|
9
9
|
}
|
|
10
|
-
.
|
|
10
|
+
.bds018-item {
|
|
11
11
|
border-bottom: 1px solid var(--color_bg--subtle);
|
|
12
12
|
}
|
|
13
|
-
.
|
|
13
|
+
.bds018-item:last-child {
|
|
14
14
|
border-bottom: none;
|
|
15
15
|
}
|
|
16
|
-
.
|
|
16
|
+
.bds018-heading {
|
|
17
17
|
margin: 0;
|
|
18
18
|
}
|
|
19
|
-
.
|
|
19
|
+
.bds018-trigger {
|
|
20
20
|
all: unset;
|
|
21
21
|
display: flex;
|
|
22
22
|
align-items: center;
|
|
@@ -31,44 +31,44 @@
|
|
|
31
31
|
transition: var(--animation_transition);
|
|
32
32
|
box-sizing: border-box;
|
|
33
33
|
}
|
|
34
|
-
.
|
|
34
|
+
.bds018-trigger:disabled {
|
|
35
35
|
opacity: 0.4;
|
|
36
36
|
cursor: not-allowed;
|
|
37
37
|
}
|
|
38
|
-
.
|
|
38
|
+
.bds018-trigger:focus-visible {
|
|
39
39
|
outline: var(--outline_default);
|
|
40
40
|
outline-offset: calc(var(--outline_offset) * -1);
|
|
41
41
|
border-radius: var(--border_radius--xs);
|
|
42
42
|
}
|
|
43
43
|
@media (hover: hover) and (pointer: fine) {
|
|
44
|
-
.
|
|
44
|
+
.bds018-trigger:not(:disabled):hover {
|
|
45
45
|
background-color: var(--color_bg--subtle);
|
|
46
46
|
}
|
|
47
47
|
}
|
|
48
|
-
.
|
|
48
|
+
.bds018-triggerLabel {
|
|
49
49
|
flex: 1;
|
|
50
50
|
text-align: start;
|
|
51
51
|
}
|
|
52
|
-
.
|
|
52
|
+
.bds018-chevron {
|
|
53
53
|
width: 1.25rem;
|
|
54
54
|
height: 1.25rem;
|
|
55
55
|
flex-shrink: 0;
|
|
56
56
|
transition: transform var(--animation_transition-duration) var(--animation_easing);
|
|
57
57
|
}
|
|
58
|
-
.
|
|
58
|
+
.bds018-item.bds018---open .bds018-chevron {
|
|
59
59
|
transform: rotate(180deg);
|
|
60
60
|
}
|
|
61
|
-
.
|
|
61
|
+
.bds018-panel {
|
|
62
62
|
overflow: hidden;
|
|
63
63
|
}
|
|
64
|
-
.
|
|
64
|
+
.bds018-panelContent {
|
|
65
65
|
padding: 0 var(--space_m) var(--space_m);
|
|
66
66
|
color: var(--color_on-bg);
|
|
67
67
|
font-size: var(--font_size--body);
|
|
68
68
|
line-height: var(--font_line-height--body);
|
|
69
69
|
}
|
|
70
70
|
@media (prefers-reduced-motion: reduce) {
|
|
71
|
-
.
|
|
71
|
+
.bds018-chevron {
|
|
72
72
|
transition: none;
|
|
73
73
|
}
|
|
74
74
|
}
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
|
|
77
77
|
/* src/components/ui/Alert/Alert.module.css */
|
|
78
78
|
@layer component {
|
|
79
|
-
.
|
|
79
|
+
.bds018-alert {
|
|
80
80
|
--alert_bg: var(--color_blue--subtle);
|
|
81
81
|
--alert_text: var(--color_on-blue--subtle);
|
|
82
82
|
--alert_border: var(--color_blue);
|
|
@@ -91,43 +91,43 @@
|
|
|
91
91
|
font-size: var(--font_size--body);
|
|
92
92
|
line-height: var(--font_line-height--body);
|
|
93
93
|
}
|
|
94
|
-
.
|
|
94
|
+
.bds018---variant_info {
|
|
95
95
|
--alert_bg: var(--color_blue--subtle);
|
|
96
96
|
--alert_text: var(--color_on-blue--subtle);
|
|
97
97
|
--alert_border: var(--color_blue);
|
|
98
98
|
}
|
|
99
|
-
.
|
|
99
|
+
.bds018---variant_success {
|
|
100
100
|
--alert_bg: var(--color_green--subtle);
|
|
101
101
|
--alert_text: var(--color_on-green--subtle);
|
|
102
102
|
--alert_border: var(--color_green);
|
|
103
103
|
}
|
|
104
|
-
.
|
|
104
|
+
.bds018---variant_warning {
|
|
105
105
|
--alert_bg: var(--color_orange--subtle);
|
|
106
106
|
--alert_text: var(--color_on-orange--subtle);
|
|
107
107
|
--alert_border: var(--color_warning);
|
|
108
108
|
}
|
|
109
|
-
.
|
|
109
|
+
.bds018---variant_error {
|
|
110
110
|
--alert_bg: rgb(from var(--color_error) r g b / 12%);
|
|
111
111
|
--alert_text: var(--color_on-bg);
|
|
112
112
|
--alert_border: var(--color_error);
|
|
113
113
|
}
|
|
114
|
-
.
|
|
114
|
+
.bds018-icon {
|
|
115
115
|
display: flex;
|
|
116
116
|
align-items: center;
|
|
117
117
|
flex-shrink: 0;
|
|
118
118
|
margin-block-start: 0.1em;
|
|
119
119
|
}
|
|
120
|
-
.
|
|
120
|
+
.bds018-content {
|
|
121
121
|
flex: 1;
|
|
122
122
|
display: flex;
|
|
123
123
|
flex-direction: column;
|
|
124
124
|
gap: var(--space_xxs);
|
|
125
125
|
}
|
|
126
|
-
.
|
|
126
|
+
.bds018-title {
|
|
127
127
|
font-weight: var(--font_weight--semibold);
|
|
128
128
|
font-size: var(--font_size--body);
|
|
129
129
|
}
|
|
130
|
-
.
|
|
130
|
+
.bds018-dismiss {
|
|
131
131
|
all: unset;
|
|
132
132
|
display: flex;
|
|
133
133
|
align-items: center;
|
|
@@ -139,16 +139,16 @@
|
|
|
139
139
|
border: 1px solid currentcolor;
|
|
140
140
|
border-radius: 50%;
|
|
141
141
|
}
|
|
142
|
-
.
|
|
142
|
+
.bds018-dismiss svg {
|
|
143
143
|
width: 1rem;
|
|
144
144
|
height: 1rem;
|
|
145
145
|
}
|
|
146
|
-
.
|
|
146
|
+
.bds018-dismiss:focus-visible {
|
|
147
147
|
outline: var(--outline_default);
|
|
148
148
|
outline-offset: var(--outline_offset);
|
|
149
149
|
}
|
|
150
150
|
@media (hover: hover) and (pointer: fine) {
|
|
151
|
-
.
|
|
151
|
+
.bds018-dismiss:hover {
|
|
152
152
|
opacity: 0.7;
|
|
153
153
|
}
|
|
154
154
|
}
|
|
@@ -156,7 +156,7 @@
|
|
|
156
156
|
|
|
157
157
|
/* src/components/ui/Avatar/Avatar.module.css */
|
|
158
158
|
@layer component {
|
|
159
|
-
.
|
|
159
|
+
.bds018-avatar {
|
|
160
160
|
--avatar_size: 3em;
|
|
161
161
|
--avatar_bg: var(--color_blue);
|
|
162
162
|
--avatar_text: var(--color_on-blue);
|
|
@@ -169,42 +169,42 @@
|
|
|
169
169
|
overflow: hidden;
|
|
170
170
|
flex-shrink: 0;
|
|
171
171
|
}
|
|
172
|
-
.
|
|
172
|
+
.bds018-avatar.bds018---fallback {
|
|
173
173
|
background-color: var(--avatar_bg);
|
|
174
174
|
color: var(--avatar_text);
|
|
175
175
|
font-weight: var(--font_weight--semibold);
|
|
176
176
|
}
|
|
177
|
-
.
|
|
177
|
+
.bds018-avatar.bds018---size_small {
|
|
178
178
|
--avatar_size: 2em;
|
|
179
179
|
}
|
|
180
|
-
.
|
|
180
|
+
.bds018-avatar.bds018---size_medium {
|
|
181
181
|
--avatar_size: 3em;
|
|
182
182
|
}
|
|
183
|
-
.
|
|
183
|
+
.bds018-avatar.bds018---size_large {
|
|
184
184
|
--avatar_size: 4.5em;
|
|
185
185
|
}
|
|
186
|
-
.
|
|
186
|
+
.bds018-image {
|
|
187
187
|
width: 100%;
|
|
188
188
|
height: 100%;
|
|
189
189
|
object-fit: cover;
|
|
190
190
|
display: block;
|
|
191
191
|
}
|
|
192
|
-
.
|
|
192
|
+
.bds018-initials {
|
|
193
193
|
line-height: 1;
|
|
194
194
|
user-select: none;
|
|
195
195
|
font-size: var(--font_size--body);
|
|
196
196
|
}
|
|
197
|
-
.
|
|
197
|
+
.bds018-avatar.bds018---size_small .bds018-initials {
|
|
198
198
|
font-size: var(--font_size--body--s);
|
|
199
199
|
}
|
|
200
|
-
.
|
|
200
|
+
.bds018-avatar.bds018---size_large .bds018-initials {
|
|
201
201
|
font-size: var(--font_size--heading-3);
|
|
202
202
|
}
|
|
203
203
|
}
|
|
204
204
|
|
|
205
205
|
/* src/components/ui/Badge/Badge.module.css */
|
|
206
206
|
@layer component {
|
|
207
|
-
.
|
|
207
|
+
.bds018-badge {
|
|
208
208
|
--badge_bg: var(--color_blue);
|
|
209
209
|
--badge_text: var(--color_on-blue);
|
|
210
210
|
--badge_radius: 2em;
|
|
@@ -221,23 +221,23 @@
|
|
|
221
221
|
background-color: var(--badge_bg);
|
|
222
222
|
color: var(--badge_text);
|
|
223
223
|
}
|
|
224
|
-
.
|
|
224
|
+
.bds018---variant_primary {
|
|
225
225
|
--badge_bg: var(--color_interactive);
|
|
226
226
|
--badge_text: var(--color_on-interactive);
|
|
227
227
|
}
|
|
228
|
-
.
|
|
228
|
+
.bds018---variant_secondary {
|
|
229
229
|
--badge_bg: var(--color_bg);
|
|
230
230
|
--badge_text: var(--color_on-bg);
|
|
231
231
|
}
|
|
232
|
-
.
|
|
232
|
+
.bds018---variant_success {
|
|
233
233
|
--badge_bg: var(--color_success);
|
|
234
234
|
--badge_text: var(--color_on-success);
|
|
235
235
|
}
|
|
236
|
-
.
|
|
236
|
+
.bds018---variant_error {
|
|
237
237
|
--badge_bg: var(--color_error);
|
|
238
238
|
--badge_text: var(--color_on-error);
|
|
239
239
|
}
|
|
240
|
-
.
|
|
240
|
+
.bds018---variant_warning {
|
|
241
241
|
--badge_bg: var(--color_warning);
|
|
242
242
|
--badge_text: var(--color_on-warning);
|
|
243
243
|
}
|
|
@@ -245,10 +245,10 @@
|
|
|
245
245
|
|
|
246
246
|
/* src/components/ui/Breadcrumb/Breadcrumb.module.css */
|
|
247
247
|
@layer component {
|
|
248
|
-
.
|
|
248
|
+
.bds018-breadcrumb {
|
|
249
249
|
font-size: var(--font_size--body--s);
|
|
250
250
|
}
|
|
251
|
-
.
|
|
251
|
+
.bds018-list {
|
|
252
252
|
display: flex;
|
|
253
253
|
flex-wrap: wrap;
|
|
254
254
|
align-items: center;
|
|
@@ -257,32 +257,32 @@
|
|
|
257
257
|
margin: 0;
|
|
258
258
|
padding: 0;
|
|
259
259
|
}
|
|
260
|
-
.
|
|
260
|
+
.bds018-item {
|
|
261
261
|
display: flex;
|
|
262
262
|
align-items: center;
|
|
263
263
|
gap: var(--space_xxs);
|
|
264
264
|
}
|
|
265
|
-
.
|
|
265
|
+
.bds018-link {
|
|
266
266
|
color: var(--color_interactive);
|
|
267
267
|
text-decoration: none;
|
|
268
268
|
transition: var(--animation_transition);
|
|
269
269
|
}
|
|
270
|
-
.
|
|
270
|
+
.bds018-link:focus-visible {
|
|
271
271
|
outline: var(--outline_default);
|
|
272
272
|
outline-offset: var(--outline_offset);
|
|
273
273
|
border-radius: var(--border_radius--xs);
|
|
274
274
|
}
|
|
275
275
|
@media (hover: hover) and (pointer: fine) {
|
|
276
|
-
.
|
|
276
|
+
.bds018-link:hover {
|
|
277
277
|
text-decoration: underline;
|
|
278
278
|
text-underline-offset: 0.2em;
|
|
279
279
|
}
|
|
280
280
|
}
|
|
281
|
-
.
|
|
281
|
+
.bds018-separator {
|
|
282
282
|
color: var(--color_on-bg--subtle);
|
|
283
283
|
user-select: none;
|
|
284
284
|
}
|
|
285
|
-
.
|
|
285
|
+
.bds018-current {
|
|
286
286
|
color: var(--color_on-bg--subtle);
|
|
287
287
|
font-weight: var(--font_weight--semibold);
|
|
288
288
|
}
|
|
@@ -290,7 +290,7 @@
|
|
|
290
290
|
|
|
291
291
|
/* src/components/ui/Calendar/Calendar.module.css */
|
|
292
292
|
@layer component {
|
|
293
|
-
.
|
|
293
|
+
.bds018-calendar {
|
|
294
294
|
display: inline-flex;
|
|
295
295
|
flex-direction: column;
|
|
296
296
|
gap: var(--space_s);
|
|
@@ -301,17 +301,17 @@
|
|
|
301
301
|
box-shadow: var(--shadow_s);
|
|
302
302
|
width: 20rem;
|
|
303
303
|
}
|
|
304
|
-
.
|
|
304
|
+
.bds018-header {
|
|
305
305
|
display: flex;
|
|
306
306
|
align-items: center;
|
|
307
307
|
justify-content: space-between;
|
|
308
308
|
}
|
|
309
|
-
.
|
|
309
|
+
.bds018-monthYear {
|
|
310
310
|
font-size: var(--font_size--body);
|
|
311
311
|
font-weight: var(--font_weight--semibold);
|
|
312
312
|
color: var(--color_on-bg);
|
|
313
313
|
}
|
|
314
|
-
.
|
|
314
|
+
.bds018-navBtn {
|
|
315
315
|
all: unset;
|
|
316
316
|
display: flex;
|
|
317
317
|
align-items: center;
|
|
@@ -323,35 +323,35 @@
|
|
|
323
323
|
color: var(--color_on-bg);
|
|
324
324
|
transition: var(--animation_transition);
|
|
325
325
|
}
|
|
326
|
-
.
|
|
326
|
+
.bds018-navBtn svg {
|
|
327
327
|
width: 1rem;
|
|
328
328
|
height: 1rem;
|
|
329
329
|
}
|
|
330
|
-
.
|
|
330
|
+
.bds018-navBtn:focus-visible {
|
|
331
331
|
outline: var(--outline_default);
|
|
332
332
|
outline-offset: var(--outline_offset);
|
|
333
333
|
}
|
|
334
334
|
@media (hover: hover) and (pointer: fine) {
|
|
335
|
-
.
|
|
335
|
+
.bds018-navBtn:hover {
|
|
336
336
|
background-color: var(--color_bg--subtle);
|
|
337
337
|
}
|
|
338
338
|
}
|
|
339
|
-
.
|
|
339
|
+
.bds018-grid {
|
|
340
340
|
border-collapse: collapse;
|
|
341
341
|
width: 100%;
|
|
342
342
|
table-layout: fixed;
|
|
343
343
|
}
|
|
344
|
-
.
|
|
344
|
+
.bds018-weekday {
|
|
345
345
|
font-size: var(--font_size--body--s);
|
|
346
346
|
font-weight: var(--font_weight--semibold);
|
|
347
347
|
color: var(--color_on-bg--muted);
|
|
348
348
|
text-align: center;
|
|
349
349
|
padding-block-end: var(--space_xs);
|
|
350
350
|
}
|
|
351
|
-
.
|
|
351
|
+
.bds018-empty {
|
|
352
352
|
padding: 0;
|
|
353
353
|
}
|
|
354
|
-
.
|
|
354
|
+
.bds018-day {
|
|
355
355
|
all: unset;
|
|
356
356
|
display: flex;
|
|
357
357
|
align-items: center;
|
|
@@ -365,30 +365,30 @@
|
|
|
365
365
|
transition: var(--animation_transition);
|
|
366
366
|
box-sizing: border-box;
|
|
367
367
|
}
|
|
368
|
-
.
|
|
368
|
+
.bds018-day:focus-visible {
|
|
369
369
|
outline: var(--outline_default);
|
|
370
370
|
outline-offset: var(--outline_offset);
|
|
371
371
|
}
|
|
372
372
|
@media (hover: hover) and (pointer: fine) {
|
|
373
|
-
.
|
|
373
|
+
.bds018-day:not(.bds018-disabled, .bds018-selected):hover {
|
|
374
374
|
background-color: var(--color_bg--subtle);
|
|
375
375
|
}
|
|
376
376
|
}
|
|
377
|
-
.
|
|
377
|
+
.bds018-today {
|
|
378
378
|
border: 2px solid var(--color_interactive);
|
|
379
379
|
font-weight: var(--font_weight--semibold);
|
|
380
380
|
}
|
|
381
|
-
.
|
|
381
|
+
.bds018-selected {
|
|
382
382
|
background-color: var(--color_interactive);
|
|
383
383
|
color: var(--color_on-interactive);
|
|
384
384
|
font-weight: var(--font_weight--semibold);
|
|
385
385
|
}
|
|
386
|
-
.
|
|
386
|
+
.bds018-disabled {
|
|
387
387
|
opacity: 0.35;
|
|
388
388
|
cursor: not-allowed;
|
|
389
389
|
}
|
|
390
390
|
@media (prefers-reduced-motion: reduce) {
|
|
391
|
-
.
|
|
391
|
+
.bds018-day {
|
|
392
392
|
transition: none;
|
|
393
393
|
}
|
|
394
394
|
}
|
|
@@ -396,13 +396,13 @@
|
|
|
396
396
|
|
|
397
397
|
/* src/components/ui/Carousel/Carousel.module.css */
|
|
398
398
|
@layer component {
|
|
399
|
-
.
|
|
399
|
+
.bds018-carousel {
|
|
400
400
|
position: relative;
|
|
401
401
|
display: flex;
|
|
402
402
|
align-items: center;
|
|
403
403
|
gap: var(--space_xs);
|
|
404
404
|
}
|
|
405
|
-
.
|
|
405
|
+
.bds018-track {
|
|
406
406
|
display: flex;
|
|
407
407
|
gap: var(--space_m);
|
|
408
408
|
overflow-x: auto;
|
|
@@ -411,14 +411,14 @@
|
|
|
411
411
|
flex: 1;
|
|
412
412
|
scroll-behavior: smooth;
|
|
413
413
|
}
|
|
414
|
-
.
|
|
414
|
+
.bds018-track::-webkit-scrollbar {
|
|
415
415
|
display: none;
|
|
416
416
|
}
|
|
417
|
-
.
|
|
417
|
+
.bds018-slide {
|
|
418
418
|
scroll-snap-align: start;
|
|
419
419
|
flex-shrink: 0;
|
|
420
420
|
}
|
|
421
|
-
.
|
|
421
|
+
.bds018-navBtn {
|
|
422
422
|
all: unset;
|
|
423
423
|
display: flex;
|
|
424
424
|
align-items: center;
|
|
@@ -434,21 +434,21 @@
|
|
|
434
434
|
transition: var(--animation_transition);
|
|
435
435
|
box-shadow: var(--shadow_s);
|
|
436
436
|
}
|
|
437
|
-
.
|
|
437
|
+
.bds018-navBtn svg {
|
|
438
438
|
width: 1.25rem;
|
|
439
439
|
height: 1.25rem;
|
|
440
440
|
}
|
|
441
|
-
.
|
|
441
|
+
.bds018-navBtn:focus-visible {
|
|
442
442
|
outline: var(--outline_default);
|
|
443
443
|
outline-offset: var(--outline_offset);
|
|
444
444
|
}
|
|
445
445
|
@media (hover: hover) and (pointer: fine) {
|
|
446
|
-
.
|
|
446
|
+
.bds018-navBtn:hover {
|
|
447
447
|
background-color: var(--color_bg--subtle);
|
|
448
448
|
}
|
|
449
449
|
}
|
|
450
450
|
@media (prefers-reduced-motion: reduce) {
|
|
451
|
-
.
|
|
451
|
+
.bds018-track {
|
|
452
452
|
scroll-behavior: auto;
|
|
453
453
|
}
|
|
454
454
|
}
|
|
@@ -456,7 +456,7 @@
|
|
|
456
456
|
|
|
457
457
|
/* src/components/ui/DescriptionList/DescriptionList.module.css */
|
|
458
458
|
@layer component {
|
|
459
|
-
.
|
|
459
|
+
.bds018-list {
|
|
460
460
|
display: flex;
|
|
461
461
|
flex-direction: column;
|
|
462
462
|
gap: var(--space_s);
|
|
@@ -465,36 +465,36 @@
|
|
|
465
465
|
font-size: var(--font_size--body);
|
|
466
466
|
color: var(--color_on-bg);
|
|
467
467
|
}
|
|
468
|
-
.
|
|
468
|
+
.bds018-group {
|
|
469
469
|
display: flex;
|
|
470
470
|
flex-direction: column;
|
|
471
471
|
gap: var(--space_xxs);
|
|
472
472
|
}
|
|
473
|
-
.
|
|
473
|
+
.bds018-term {
|
|
474
474
|
font-weight: var(--font_weight--semibold);
|
|
475
475
|
color: var(--color_on-bg);
|
|
476
476
|
}
|
|
477
|
-
.
|
|
477
|
+
.bds018-details {
|
|
478
478
|
margin: 0;
|
|
479
479
|
color: var(--color_on-bg--muted);
|
|
480
480
|
}
|
|
481
|
-
.
|
|
481
|
+
.bds018---layout_inline .bds018-group {
|
|
482
482
|
display: grid;
|
|
483
483
|
grid-template-columns: minmax(8rem, 1fr) 2fr;
|
|
484
484
|
gap: var(--space_xs);
|
|
485
485
|
align-items: baseline;
|
|
486
486
|
}
|
|
487
|
-
.
|
|
487
|
+
.bds018---layout_inline .bds018-term {
|
|
488
488
|
grid-column: 1;
|
|
489
489
|
}
|
|
490
|
-
.
|
|
490
|
+
.bds018---layout_inline .bds018-details {
|
|
491
491
|
grid-column: 2;
|
|
492
492
|
}
|
|
493
493
|
}
|
|
494
494
|
|
|
495
495
|
/* src/components/ui/Link/Link.module.css */
|
|
496
496
|
@layer component {
|
|
497
|
-
.
|
|
497
|
+
.bds018-link {
|
|
498
498
|
--link_color: var(--color_interactive);
|
|
499
499
|
--link_color-hover: var(--color_blue--strong);
|
|
500
500
|
color: var(--link_color);
|
|
@@ -503,25 +503,25 @@
|
|
|
503
503
|
transition: var(--animation_transition);
|
|
504
504
|
cursor: pointer;
|
|
505
505
|
}
|
|
506
|
-
.
|
|
506
|
+
.bds018-link:focus-visible {
|
|
507
507
|
outline: var(--outline_default);
|
|
508
508
|
outline-offset: var(--outline_offset);
|
|
509
509
|
border-radius: var(--border_radius--xs);
|
|
510
510
|
}
|
|
511
511
|
@media (hover: hover) and (pointer: fine) {
|
|
512
|
-
.
|
|
512
|
+
.bds018-link:hover {
|
|
513
513
|
--link_color: var(--link_color-hover);
|
|
514
514
|
}
|
|
515
515
|
}
|
|
516
|
-
.
|
|
516
|
+
.bds018---variant_default {
|
|
517
517
|
--link_color: var(--color_interactive);
|
|
518
518
|
--link_color-hover: var(--color_blue--strong);
|
|
519
519
|
}
|
|
520
|
-
.
|
|
520
|
+
.bds018---variant_subtle {
|
|
521
521
|
--link_color: var(--color_on-bg);
|
|
522
522
|
--link_color-hover: var(--color_interactive);
|
|
523
523
|
}
|
|
524
|
-
.
|
|
524
|
+
.bds018---variant_standalone {
|
|
525
525
|
--link_color: var(--color_interactive);
|
|
526
526
|
--link_color-hover: var(--color_blue--strong);
|
|
527
527
|
display: inline-flex;
|
|
@@ -531,12 +531,12 @@
|
|
|
531
531
|
text-decoration: none;
|
|
532
532
|
}
|
|
533
533
|
@media (hover: hover) and (pointer: fine) {
|
|
534
|
-
.
|
|
534
|
+
.bds018---variant_standalone:hover {
|
|
535
535
|
text-decoration: underline;
|
|
536
536
|
text-underline-offset: 0.2em;
|
|
537
537
|
}
|
|
538
538
|
}
|
|
539
|
-
.
|
|
539
|
+
.bds018-externalLabel {
|
|
540
540
|
position: absolute;
|
|
541
541
|
width: 1px;
|
|
542
542
|
height: 1px;
|
|
@@ -551,12 +551,12 @@
|
|
|
551
551
|
|
|
552
552
|
/* src/components/ui/Loading/Loading.module.css */
|
|
553
553
|
@layer component {
|
|
554
|
-
.
|
|
554
|
+
.bds018-loading {
|
|
555
555
|
display: flex;
|
|
556
556
|
justify-content: center;
|
|
557
557
|
align-items: center;
|
|
558
558
|
}
|
|
559
|
-
.
|
|
559
|
+
.bds018-spinner {
|
|
560
560
|
width: 2.5em;
|
|
561
561
|
height: 2.5em;
|
|
562
562
|
border: 4px solid var(--color_bg);
|
|
@@ -564,12 +564,12 @@
|
|
|
564
564
|
border-radius: 50%;
|
|
565
565
|
animation: spin 1s linear infinite;
|
|
566
566
|
}
|
|
567
|
-
.
|
|
567
|
+
.bds018---size_small .bds018-spinner {
|
|
568
568
|
width: 1.5em;
|
|
569
569
|
height: 1.5em;
|
|
570
570
|
border-width: 2px;
|
|
571
571
|
}
|
|
572
|
-
.
|
|
572
|
+
.bds018---size_large .bds018-spinner {
|
|
573
573
|
width: 4em;
|
|
574
574
|
height: 4em;
|
|
575
575
|
border-width: 6px;
|
|
@@ -586,7 +586,7 @@
|
|
|
586
586
|
|
|
587
587
|
/* src/components/ui/NotificationBanner/NotificationBanner.module.css */
|
|
588
588
|
@layer component {
|
|
589
|
-
.
|
|
589
|
+
.bds018-banner {
|
|
590
590
|
--banner_bg: var(--color_blue--subtle);
|
|
591
591
|
--banner_text: var(--color_on-blue--subtle);
|
|
592
592
|
--banner_border: var(--color_blue);
|
|
@@ -601,33 +601,33 @@
|
|
|
601
601
|
line-height: var(--font_line-height--body);
|
|
602
602
|
width: 100%;
|
|
603
603
|
}
|
|
604
|
-
.
|
|
604
|
+
.bds018---variant_info {
|
|
605
605
|
--banner_bg: var(--color_blue--subtle);
|
|
606
606
|
--banner_text: var(--color_on-blue--subtle);
|
|
607
607
|
--banner_border: var(--color_blue);
|
|
608
608
|
}
|
|
609
|
-
.
|
|
609
|
+
.bds018---variant_success {
|
|
610
610
|
--banner_bg: var(--color_green--subtle);
|
|
611
611
|
--banner_text: var(--color_on-green--subtle);
|
|
612
612
|
--banner_border: var(--color_green);
|
|
613
613
|
}
|
|
614
|
-
.
|
|
614
|
+
.bds018---variant_warning {
|
|
615
615
|
--banner_bg: var(--color_orange--subtle);
|
|
616
616
|
--banner_text: var(--color_on-orange--subtle);
|
|
617
617
|
--banner_border: var(--color_warning);
|
|
618
618
|
}
|
|
619
|
-
.
|
|
619
|
+
.bds018---variant_error {
|
|
620
620
|
--banner_bg: rgb(from var(--color_error) r g b / 12%);
|
|
621
621
|
--banner_text: var(--color_on-bg);
|
|
622
622
|
--banner_border: var(--color_error);
|
|
623
623
|
}
|
|
624
|
-
.
|
|
624
|
+
.bds018-content {
|
|
625
625
|
flex: 1;
|
|
626
626
|
}
|
|
627
|
-
.
|
|
627
|
+
.bds018-action {
|
|
628
628
|
flex-shrink: 0;
|
|
629
629
|
}
|
|
630
|
-
.
|
|
630
|
+
.bds018-dismiss {
|
|
631
631
|
all: unset;
|
|
632
632
|
display: flex;
|
|
633
633
|
align-items: center;
|
|
@@ -639,16 +639,16 @@
|
|
|
639
639
|
border: 1px solid currentcolor;
|
|
640
640
|
transition: var(--animation_transition);
|
|
641
641
|
}
|
|
642
|
-
.
|
|
642
|
+
.bds018-dismiss svg {
|
|
643
643
|
width: 1rem;
|
|
644
644
|
height: 1rem;
|
|
645
645
|
}
|
|
646
|
-
.
|
|
646
|
+
.bds018-dismiss:focus-visible {
|
|
647
647
|
outline: var(--outline_default);
|
|
648
648
|
outline-offset: var(--outline_offset);
|
|
649
649
|
}
|
|
650
650
|
@media (hover: hover) and (pointer: fine) {
|
|
651
|
-
.
|
|
651
|
+
.bds018-dismiss:hover {
|
|
652
652
|
opacity: 0.7;
|
|
653
653
|
}
|
|
654
654
|
}
|
|
@@ -656,11 +656,11 @@
|
|
|
656
656
|
|
|
657
657
|
/* src/components/ui/Pagination/Pagination.module.css */
|
|
658
658
|
@layer component {
|
|
659
|
-
.
|
|
659
|
+
.bds018-pagination {
|
|
660
660
|
display: flex;
|
|
661
661
|
justify-content: center;
|
|
662
662
|
}
|
|
663
|
-
.
|
|
663
|
+
.bds018-list {
|
|
664
664
|
display: flex;
|
|
665
665
|
align-items: center;
|
|
666
666
|
gap: var(--space_xxs);
|
|
@@ -668,7 +668,7 @@
|
|
|
668
668
|
margin: 0;
|
|
669
669
|
padding: 0;
|
|
670
670
|
}
|
|
671
|
-
.
|
|
671
|
+
.bds018-button {
|
|
672
672
|
--btn_bg: transparent;
|
|
673
673
|
--btn_color: var(--color_on-bg);
|
|
674
674
|
--btn_border: var(--color_bg--subtle);
|
|
@@ -690,30 +690,30 @@
|
|
|
690
690
|
transition: var(--animation_transition);
|
|
691
691
|
box-sizing: border-box;
|
|
692
692
|
}
|
|
693
|
-
.
|
|
693
|
+
.bds018-button:disabled {
|
|
694
694
|
opacity: 0.4;
|
|
695
695
|
cursor: not-allowed;
|
|
696
696
|
}
|
|
697
|
-
.
|
|
697
|
+
.bds018-button:focus-visible {
|
|
698
698
|
outline: var(--outline_default);
|
|
699
699
|
outline-offset: var(--outline_offset);
|
|
700
700
|
}
|
|
701
701
|
@media (hover: hover) and (pointer: fine) {
|
|
702
|
-
.
|
|
702
|
+
.bds018-button:not(:disabled, .bds018---active):hover {
|
|
703
703
|
--btn_bg: var(--color_bg--subtle);
|
|
704
704
|
--btn_color: var(--color_interactive);
|
|
705
705
|
}
|
|
706
706
|
}
|
|
707
|
-
.
|
|
707
|
+
.bds018-button.bds018---active {
|
|
708
708
|
--btn_bg: var(--color_interactive);
|
|
709
709
|
--btn_color: var(--color_on-interactive);
|
|
710
710
|
--btn_border: var(--color_interactive);
|
|
711
711
|
}
|
|
712
|
-
.
|
|
712
|
+
.bds018-button.bds018---nav svg {
|
|
713
713
|
width: 1rem;
|
|
714
714
|
height: 1rem;
|
|
715
715
|
}
|
|
716
|
-
.
|
|
716
|
+
.bds018-ellipsis {
|
|
717
717
|
display: inline-flex;
|
|
718
718
|
align-items: center;
|
|
719
719
|
justify-content: center;
|
|
@@ -727,26 +727,26 @@
|
|
|
727
727
|
|
|
728
728
|
/* src/components/ui/Progress/Progress.module.css */
|
|
729
729
|
@layer component {
|
|
730
|
-
.
|
|
730
|
+
.bds018-container {
|
|
731
731
|
display: flex;
|
|
732
732
|
flex-direction: column;
|
|
733
733
|
gap: var(--space_xxs);
|
|
734
734
|
width: 100%;
|
|
735
735
|
}
|
|
736
|
-
.
|
|
736
|
+
.bds018-labelRow {
|
|
737
737
|
display: flex;
|
|
738
738
|
justify-content: space-between;
|
|
739
739
|
align-items: baseline;
|
|
740
740
|
font-size: var(--font_size--body--s);
|
|
741
741
|
color: var(--color_on-bg);
|
|
742
742
|
}
|
|
743
|
-
.
|
|
743
|
+
.bds018-label {
|
|
744
744
|
font-weight: var(--font_weight--semibold);
|
|
745
745
|
}
|
|
746
|
-
.
|
|
746
|
+
.bds018-value {
|
|
747
747
|
font-variant-numeric: tabular-nums;
|
|
748
748
|
}
|
|
749
|
-
.
|
|
749
|
+
.bds018-track {
|
|
750
750
|
--progress_height: var(--space_xs);
|
|
751
751
|
width: 100%;
|
|
752
752
|
height: var(--progress_height);
|
|
@@ -754,23 +754,23 @@
|
|
|
754
754
|
border-radius: 999px;
|
|
755
755
|
overflow: hidden;
|
|
756
756
|
}
|
|
757
|
-
.
|
|
757
|
+
.bds018-track.bds018---size_small {
|
|
758
758
|
--progress_height: var(--space_xxs);
|
|
759
759
|
}
|
|
760
|
-
.
|
|
760
|
+
.bds018-track.bds018---size_medium {
|
|
761
761
|
--progress_height: var(--space_xs);
|
|
762
762
|
}
|
|
763
|
-
.
|
|
763
|
+
.bds018-track.bds018---size_large {
|
|
764
764
|
--progress_height: var(--space_s);
|
|
765
765
|
}
|
|
766
|
-
.
|
|
766
|
+
.bds018-fill {
|
|
767
767
|
height: 100%;
|
|
768
768
|
background-color: var(--color_green);
|
|
769
769
|
border-radius: 999px;
|
|
770
770
|
transition: width var(--animation_transition-duration) var(--animation_easing);
|
|
771
771
|
}
|
|
772
772
|
@media (prefers-reduced-motion: reduce) {
|
|
773
|
-
.
|
|
773
|
+
.bds018-fill {
|
|
774
774
|
transition: none;
|
|
775
775
|
}
|
|
776
776
|
}
|
|
@@ -778,23 +778,23 @@
|
|
|
778
778
|
|
|
779
779
|
/* src/components/ui/ProgressCircle/ProgressCircle.module.css */
|
|
780
780
|
@layer component {
|
|
781
|
-
.
|
|
781
|
+
.bds018-wrapper {
|
|
782
782
|
position: relative;
|
|
783
783
|
display: inline-flex;
|
|
784
784
|
align-items: center;
|
|
785
785
|
justify-content: center;
|
|
786
786
|
}
|
|
787
|
-
.
|
|
787
|
+
.bds018-svg {
|
|
788
788
|
display: block;
|
|
789
789
|
}
|
|
790
|
-
.
|
|
790
|
+
.bds018-track {
|
|
791
791
|
stroke: var(--color_bg--subtle);
|
|
792
792
|
}
|
|
793
|
-
.
|
|
793
|
+
.bds018-fill {
|
|
794
794
|
stroke: var(--color_green);
|
|
795
795
|
transition: stroke-dashoffset var(--animation_transition-duration) var(--animation_easing);
|
|
796
796
|
}
|
|
797
|
-
.
|
|
797
|
+
.bds018-value {
|
|
798
798
|
position: absolute;
|
|
799
799
|
font-size: var(--font_size--body--s);
|
|
800
800
|
font-weight: var(--font_weight--semibold);
|
|
@@ -802,17 +802,17 @@
|
|
|
802
802
|
color: var(--color_on-bg);
|
|
803
803
|
line-height: 1;
|
|
804
804
|
}
|
|
805
|
-
.
|
|
805
|
+
.bds018---size_small .bds018-value {
|
|
806
806
|
font-size: 0.5rem;
|
|
807
807
|
}
|
|
808
|
-
.
|
|
808
|
+
.bds018---size_medium .bds018-value {
|
|
809
809
|
font-size: var(--font_size--body--s);
|
|
810
810
|
}
|
|
811
|
-
.
|
|
811
|
+
.bds018---size_large .bds018-value {
|
|
812
812
|
font-size: var(--font_size--body);
|
|
813
813
|
}
|
|
814
814
|
@media (prefers-reduced-motion: reduce) {
|
|
815
|
-
.
|
|
815
|
+
.bds018-fill {
|
|
816
816
|
transition: none;
|
|
817
817
|
}
|
|
818
818
|
}
|
|
@@ -820,16 +820,16 @@
|
|
|
820
820
|
|
|
821
821
|
/* src/components/ui/Separator/Separator.module.css */
|
|
822
822
|
@layer component {
|
|
823
|
-
.
|
|
823
|
+
.bds018-separator {
|
|
824
824
|
border: none;
|
|
825
825
|
background-color: var(--separator_color, var(--color_on-bg));
|
|
826
826
|
}
|
|
827
|
-
.
|
|
827
|
+
.bds018-separator.bds018---horizontal {
|
|
828
828
|
display: block;
|
|
829
829
|
width: 100%;
|
|
830
830
|
height: var(--separator_thickness, 1px);
|
|
831
831
|
}
|
|
832
|
-
.
|
|
832
|
+
.bds018-separator.bds018---vertical {
|
|
833
833
|
display: inline-block;
|
|
834
834
|
width: var(--separator_thickness, 1px);
|
|
835
835
|
align-self: stretch;
|
|
@@ -838,7 +838,7 @@
|
|
|
838
838
|
|
|
839
839
|
/* src/components/ui/Skeleton/Skeleton.module.css */
|
|
840
840
|
@layer component {
|
|
841
|
-
.
|
|
841
|
+
.bds018-skeleton {
|
|
842
842
|
background:
|
|
843
843
|
linear-gradient(
|
|
844
844
|
90deg,
|
|
@@ -862,7 +862,7 @@
|
|
|
862
862
|
|
|
863
863
|
/* src/components/ui/SkipLink/SkipLink.module.css */
|
|
864
864
|
@layer component {
|
|
865
|
-
.
|
|
865
|
+
.bds018-skipLink {
|
|
866
866
|
position: absolute;
|
|
867
867
|
inset-block-start: var(--space_s);
|
|
868
868
|
inset-inline-start: var(--space_s);
|
|
@@ -878,13 +878,13 @@
|
|
|
878
878
|
transform: translateY(-200%);
|
|
879
879
|
transition: transform var(--animation_transition-duration) var(--animation_easing);
|
|
880
880
|
}
|
|
881
|
-
.
|
|
881
|
+
.bds018-skipLink:focus-visible {
|
|
882
882
|
transform: translateY(0);
|
|
883
883
|
outline: var(--outline_default);
|
|
884
884
|
outline-offset: var(--outline_offset);
|
|
885
885
|
}
|
|
886
886
|
@media (prefers-reduced-motion: reduce) {
|
|
887
|
-
.
|
|
887
|
+
.bds018-skipLink {
|
|
888
888
|
transition: none;
|
|
889
889
|
}
|
|
890
890
|
}
|
|
@@ -892,29 +892,29 @@
|
|
|
892
892
|
|
|
893
893
|
/* src/components/ui/Table/Table.module.css */
|
|
894
894
|
@layer component {
|
|
895
|
-
.
|
|
895
|
+
.bds018-wrapper {
|
|
896
896
|
width: 100%;
|
|
897
897
|
overflow-x: auto;
|
|
898
898
|
border-radius: var(--border_radius--s);
|
|
899
899
|
border: 1px solid var(--color_bg--subtle);
|
|
900
900
|
}
|
|
901
|
-
.
|
|
901
|
+
.bds018-table {
|
|
902
902
|
width: 100%;
|
|
903
903
|
border-collapse: collapse;
|
|
904
904
|
font-size: var(--font_size--body);
|
|
905
905
|
font-family: var(--font_family--body);
|
|
906
906
|
}
|
|
907
|
-
.
|
|
907
|
+
.bds018-caption {
|
|
908
908
|
caption-side: top;
|
|
909
909
|
text-align: start;
|
|
910
910
|
padding: var(--space_s) var(--space_m);
|
|
911
911
|
font-weight: var(--font_weight--semibold);
|
|
912
912
|
color: var(--color_on-bg);
|
|
913
913
|
}
|
|
914
|
-
.
|
|
914
|
+
.bds018-thead {
|
|
915
915
|
background-color: var(--color_bg--subtle);
|
|
916
916
|
}
|
|
917
|
-
.
|
|
917
|
+
.bds018-th {
|
|
918
918
|
padding: var(--space_s) var(--space_m);
|
|
919
919
|
text-align: start;
|
|
920
920
|
font-weight: var(--font_weight--semibold);
|
|
@@ -923,10 +923,10 @@
|
|
|
923
923
|
white-space: nowrap;
|
|
924
924
|
border-bottom: 1px solid var(--color_bg--subtle);
|
|
925
925
|
}
|
|
926
|
-
.
|
|
926
|
+
.bds018-th.bds018---sortable {
|
|
927
927
|
padding: 0;
|
|
928
928
|
}
|
|
929
|
-
.
|
|
929
|
+
.bds018-sortButton {
|
|
930
930
|
all: unset;
|
|
931
931
|
display: flex;
|
|
932
932
|
align-items: center;
|
|
@@ -940,47 +940,47 @@
|
|
|
940
940
|
transition: var(--animation_transition);
|
|
941
941
|
box-sizing: border-box;
|
|
942
942
|
}
|
|
943
|
-
.
|
|
943
|
+
.bds018-sortButton:focus-visible {
|
|
944
944
|
outline: var(--outline_default);
|
|
945
945
|
outline-offset: calc(var(--outline_offset) * -1);
|
|
946
946
|
}
|
|
947
947
|
@media (hover: hover) and (pointer: fine) {
|
|
948
|
-
.
|
|
948
|
+
.bds018-sortButton:hover {
|
|
949
949
|
color: var(--color_on-bg);
|
|
950
950
|
}
|
|
951
951
|
}
|
|
952
|
-
.
|
|
952
|
+
.bds018-sortIcon {
|
|
953
953
|
width: 1rem;
|
|
954
954
|
height: 1rem;
|
|
955
955
|
opacity: 0.4;
|
|
956
956
|
transition: transform var(--animation_transition-duration) var(--animation_easing), opacity var(--animation_transition-duration) var(--animation_easing);
|
|
957
957
|
}
|
|
958
|
-
.
|
|
958
|
+
.bds018-sortIcon.bds018---sort-active {
|
|
959
959
|
opacity: 1;
|
|
960
960
|
color: var(--color_interactive);
|
|
961
961
|
}
|
|
962
|
-
.
|
|
962
|
+
.bds018-sortIcon.bds018---sort-desc {
|
|
963
963
|
transform: rotate(180deg);
|
|
964
964
|
}
|
|
965
|
-
.
|
|
965
|
+
.bds018-tbody .bds018-tr {
|
|
966
966
|
border-bottom: 1px solid var(--color_bg--subtle);
|
|
967
967
|
transition: var(--animation_transition);
|
|
968
968
|
}
|
|
969
|
-
.
|
|
969
|
+
.bds018-tbody .bds018-tr:last-child {
|
|
970
970
|
border-bottom: none;
|
|
971
971
|
}
|
|
972
972
|
@media (hover: hover) and (pointer: fine) {
|
|
973
|
-
.
|
|
973
|
+
.bds018-tbody .bds018-tr:hover {
|
|
974
974
|
background-color: var(--color_bg--subtle);
|
|
975
975
|
}
|
|
976
976
|
}
|
|
977
|
-
.
|
|
977
|
+
.bds018-td {
|
|
978
978
|
padding: var(--space_s) var(--space_m);
|
|
979
979
|
color: var(--color_on-bg);
|
|
980
980
|
vertical-align: middle;
|
|
981
981
|
}
|
|
982
982
|
@media (prefers-reduced-motion: reduce) {
|
|
983
|
-
.
|
|
983
|
+
.bds018-sortIcon {
|
|
984
984
|
transition: none;
|
|
985
985
|
}
|
|
986
986
|
}
|
|
@@ -988,16 +988,16 @@
|
|
|
988
988
|
|
|
989
989
|
/* src/components/ui/Tabs/Tabs.module.css */
|
|
990
990
|
@layer component {
|
|
991
|
-
.
|
|
991
|
+
.bds018-tabs {
|
|
992
992
|
display: flex;
|
|
993
993
|
flex-direction: column;
|
|
994
994
|
}
|
|
995
|
-
.
|
|
995
|
+
.bds018-tabList {
|
|
996
996
|
display: flex;
|
|
997
997
|
border-bottom: 1px solid var(--color_bg--subtle);
|
|
998
998
|
gap: var(--space_xxs);
|
|
999
999
|
}
|
|
1000
|
-
.
|
|
1000
|
+
.bds018-tab {
|
|
1001
1001
|
--tab_color: var(--color_on-bg);
|
|
1002
1002
|
--tab_border-color: transparent;
|
|
1003
1003
|
all: unset;
|
|
@@ -1013,28 +1013,28 @@
|
|
|
1013
1013
|
cursor: pointer;
|
|
1014
1014
|
transition: var(--animation_transition);
|
|
1015
1015
|
}
|
|
1016
|
-
.
|
|
1016
|
+
.bds018-tab.bds018---active {
|
|
1017
1017
|
--tab_color: var(--color_interactive);
|
|
1018
1018
|
--tab_border-color: var(--color_interactive);
|
|
1019
1019
|
}
|
|
1020
|
-
.
|
|
1020
|
+
.bds018-tab:disabled {
|
|
1021
1021
|
opacity: 0.4;
|
|
1022
1022
|
cursor: not-allowed;
|
|
1023
1023
|
}
|
|
1024
|
-
.
|
|
1024
|
+
.bds018-tab:focus-visible {
|
|
1025
1025
|
outline: var(--outline_default);
|
|
1026
1026
|
outline-offset: var(--outline_offset);
|
|
1027
1027
|
border-radius: var(--border_radius--xs);
|
|
1028
1028
|
}
|
|
1029
1029
|
@media (hover: hover) and (pointer: fine) {
|
|
1030
|
-
.
|
|
1030
|
+
.bds018-tab:not(:disabled, .bds018---active):hover {
|
|
1031
1031
|
--tab_color: var(--color_interactive);
|
|
1032
1032
|
}
|
|
1033
1033
|
}
|
|
1034
|
-
.
|
|
1034
|
+
.bds018-panel {
|
|
1035
1035
|
padding-block-start: var(--space_m);
|
|
1036
1036
|
}
|
|
1037
|
-
.
|
|
1037
|
+
.bds018-panel:focus-visible {
|
|
1038
1038
|
outline: var(--outline_default);
|
|
1039
1039
|
outline-offset: var(--outline_offset);
|
|
1040
1040
|
}
|
|
@@ -1042,12 +1042,12 @@
|
|
|
1042
1042
|
|
|
1043
1043
|
/* src/components/ui/Tooltip/Tooltip.module.css */
|
|
1044
1044
|
@layer component {
|
|
1045
|
-
.
|
|
1045
|
+
.bds018-wrapper {
|
|
1046
1046
|
position: relative;
|
|
1047
1047
|
display: inline-flex;
|
|
1048
1048
|
align-items: center;
|
|
1049
1049
|
}
|
|
1050
|
-
.
|
|
1050
|
+
.bds018-tooltip {
|
|
1051
1051
|
--tooltip_bg: var(--color_on-bg);
|
|
1052
1052
|
--tooltip_text: var(--color_bg);
|
|
1053
1053
|
position: absolute;
|
|
@@ -1064,33 +1064,33 @@
|
|
|
1064
1064
|
opacity: 0;
|
|
1065
1065
|
transition: opacity var(--animation_transition-duration) var(--animation_easing);
|
|
1066
1066
|
}
|
|
1067
|
-
.
|
|
1068
|
-
.
|
|
1067
|
+
.bds018-wrapper:hover .bds018-tooltip,
|
|
1068
|
+
.bds018-wrapper:focus-within .bds018-tooltip {
|
|
1069
1069
|
visibility: visible;
|
|
1070
1070
|
opacity: 1;
|
|
1071
1071
|
}
|
|
1072
|
-
.
|
|
1072
|
+
.bds018---placement_top {
|
|
1073
1073
|
bottom: calc(100% + var(--space_xs));
|
|
1074
1074
|
left: 50%;
|
|
1075
1075
|
transform: translateX(-50%);
|
|
1076
1076
|
}
|
|
1077
|
-
.
|
|
1077
|
+
.bds018---placement_bottom {
|
|
1078
1078
|
top: calc(100% + var(--space_xs));
|
|
1079
1079
|
left: 50%;
|
|
1080
1080
|
transform: translateX(-50%);
|
|
1081
1081
|
}
|
|
1082
|
-
.
|
|
1082
|
+
.bds018---placement_left {
|
|
1083
1083
|
right: calc(100% + var(--space_xs));
|
|
1084
1084
|
top: 50%;
|
|
1085
1085
|
transform: translateY(-50%);
|
|
1086
1086
|
}
|
|
1087
|
-
.
|
|
1087
|
+
.bds018---placement_right {
|
|
1088
1088
|
left: calc(100% + var(--space_xs));
|
|
1089
1089
|
top: 50%;
|
|
1090
1090
|
transform: translateY(-50%);
|
|
1091
1091
|
}
|
|
1092
1092
|
@media (prefers-reduced-motion: reduce) {
|
|
1093
|
-
.
|
|
1093
|
+
.bds018-tooltip {
|
|
1094
1094
|
transition: none;
|
|
1095
1095
|
}
|
|
1096
1096
|
}
|
|
@@ -1098,34 +1098,34 @@
|
|
|
1098
1098
|
|
|
1099
1099
|
/* src/components/ui/Typography/Typography.module.css */
|
|
1100
1100
|
@layer component {
|
|
1101
|
-
.
|
|
1101
|
+
.bds018-typography {
|
|
1102
1102
|
margin: 0;
|
|
1103
1103
|
font-family: var(--font_family--body);
|
|
1104
1104
|
color: var(--typography_color, var(--color_on-bg));
|
|
1105
1105
|
}
|
|
1106
|
-
.
|
|
1106
|
+
.bds018---h1 {
|
|
1107
1107
|
font-family: var(--font_family--heading);
|
|
1108
1108
|
font-size: var(--font_size--heading-1);
|
|
1109
1109
|
font-weight: var(--font_weight--bold);
|
|
1110
1110
|
line-height: var(--font_line-height--heading);
|
|
1111
1111
|
}
|
|
1112
|
-
.
|
|
1112
|
+
.bds018---h2 {
|
|
1113
1113
|
font-family: var(--font_family--heading);
|
|
1114
1114
|
font-size: var(--font_size--heading-2);
|
|
1115
1115
|
font-weight: var(--font_weight--semibold);
|
|
1116
1116
|
line-height: var(--font_line-height--heading);
|
|
1117
1117
|
}
|
|
1118
|
-
.
|
|
1118
|
+
.bds018---h3 {
|
|
1119
1119
|
font-family: var(--font_family--heading);
|
|
1120
1120
|
font-size: var(--font_size--heading-3);
|
|
1121
1121
|
font-weight: var(--font_weight--semibold);
|
|
1122
1122
|
line-height: var(--font_line-height--heading);
|
|
1123
1123
|
}
|
|
1124
|
-
.
|
|
1124
|
+
.bds018---body {
|
|
1125
1125
|
font-size: var(--font_size--body);
|
|
1126
1126
|
line-height: var(--font_line-height--body);
|
|
1127
1127
|
}
|
|
1128
|
-
.
|
|
1128
|
+
.bds018---body_s {
|
|
1129
1129
|
font-size: var(--font_size--body--s);
|
|
1130
1130
|
line-height: var(--font_line-height--body);
|
|
1131
1131
|
}
|
|
@@ -1147,8 +1147,8 @@
|
|
|
1147
1147
|
}
|
|
1148
1148
|
}
|
|
1149
1149
|
@layer component {
|
|
1150
|
-
.
|
|
1151
|
-
.
|
|
1150
|
+
.bds018-button,
|
|
1151
|
+
.bds018-button[href] {
|
|
1152
1152
|
--button_height: 3em;
|
|
1153
1153
|
--button_font-size: inherit;
|
|
1154
1154
|
--button_bg: var(--color_cta);
|
|
@@ -1175,69 +1175,69 @@
|
|
|
1175
1175
|
border: 2px solid var(--button_border-color);
|
|
1176
1176
|
transition: var(--animation_transition);
|
|
1177
1177
|
}
|
|
1178
|
-
.
|
|
1178
|
+
.bds018-button.bds018---primary {
|
|
1179
1179
|
--button_bg: var(--color_cta);
|
|
1180
1180
|
--button_text: var(--color_on-cta);
|
|
1181
1181
|
--button_border-color: transparent;
|
|
1182
1182
|
}
|
|
1183
|
-
.
|
|
1183
|
+
.bds018-button.bds018---secondary {
|
|
1184
1184
|
--button_bg: var(--color_bg);
|
|
1185
1185
|
--button_text: var(--color_on-bg);
|
|
1186
1186
|
--button_border-color: var(--button_text);
|
|
1187
1187
|
}
|
|
1188
|
-
.
|
|
1188
|
+
.bds018-button.bds018---size_small {
|
|
1189
1189
|
--button_height: 2.25em;
|
|
1190
1190
|
--button_font-size: var(--font_size--body--s);
|
|
1191
1191
|
padding-inline: var(--space_m);
|
|
1192
1192
|
}
|
|
1193
|
-
.
|
|
1193
|
+
.bds018-button.bds018---size_medium {
|
|
1194
1194
|
--button_height: 3em;
|
|
1195
1195
|
padding-inline: var(--space_l);
|
|
1196
1196
|
}
|
|
1197
|
-
.
|
|
1197
|
+
.bds018-button.bds018---size_large {
|
|
1198
1198
|
--button_height: 3.75em;
|
|
1199
1199
|
--button_font-size: var(--font_size--heading-3);
|
|
1200
1200
|
padding-inline: var(--space_xl);
|
|
1201
1201
|
}
|
|
1202
|
-
.
|
|
1202
|
+
.bds018-button.bds018---hasPulse {
|
|
1203
1203
|
animation: pulse 3s infinite;
|
|
1204
1204
|
}
|
|
1205
|
-
.
|
|
1205
|
+
.bds018-button[href] {
|
|
1206
1206
|
text-decoration: none;
|
|
1207
1207
|
}
|
|
1208
|
-
.
|
|
1208
|
+
.bds018-button svg {
|
|
1209
1209
|
--icon__stroke: currentcolor;
|
|
1210
1210
|
fill: currentcolor;
|
|
1211
1211
|
color: currentcolor;
|
|
1212
1212
|
flex-shrink: 0;
|
|
1213
1213
|
}
|
|
1214
|
-
.
|
|
1214
|
+
.bds018-prefix {
|
|
1215
1215
|
display: flex;
|
|
1216
1216
|
align-items: center;
|
|
1217
1217
|
margin-inline-start: calc(var(--space_s) * -1);
|
|
1218
1218
|
transition: var(--animation_transition);
|
|
1219
1219
|
}
|
|
1220
|
-
.
|
|
1220
|
+
.bds018-suffix {
|
|
1221
1221
|
display: flex;
|
|
1222
1222
|
align-items: center;
|
|
1223
1223
|
margin-inline-end: calc(var(--space_s) * -1);
|
|
1224
1224
|
transition: var(--animation_transition);
|
|
1225
1225
|
}
|
|
1226
1226
|
@media (hover: hover) and (pointer: fine) {
|
|
1227
|
-
.
|
|
1227
|
+
.bds018-button:hover .bds018-prefix svg {
|
|
1228
1228
|
animation: 2s infinite fadeZoom ease-out;
|
|
1229
1229
|
}
|
|
1230
|
-
.
|
|
1230
|
+
.bds018-button:hover .bds018-suffix svg {
|
|
1231
1231
|
animation: 2s infinite fadeZoom ease-out;
|
|
1232
1232
|
}
|
|
1233
1233
|
}
|
|
1234
|
-
.
|
|
1234
|
+
.bds018-button:focus-visible {
|
|
1235
1235
|
outline-offset: var(--outline_offset);
|
|
1236
1236
|
outline: var(--outline_default);
|
|
1237
1237
|
border-radius: var(--border_radius--s);
|
|
1238
1238
|
}
|
|
1239
1239
|
@media (hover: hover) and (pointer: fine) {
|
|
1240
|
-
.
|
|
1240
|
+
.bds018-button:hover {
|
|
1241
1241
|
--button_bg: var(--color_bg);
|
|
1242
1242
|
--button_text: var(--color_interactive);
|
|
1243
1243
|
--button_pulse-color: var(--color_interactive);
|
|
@@ -1248,7 +1248,7 @@
|
|
|
1248
1248
|
|
|
1249
1249
|
/* src/components/interaction/Command/Command.module.css */
|
|
1250
1250
|
@layer component {
|
|
1251
|
-
.
|
|
1251
|
+
.bds018-dialog {
|
|
1252
1252
|
padding: 0;
|
|
1253
1253
|
border: none;
|
|
1254
1254
|
border-radius: var(--border_radius--m);
|
|
@@ -1258,10 +1258,10 @@
|
|
|
1258
1258
|
overflow: visible;
|
|
1259
1259
|
margin-block-start: 10vh;
|
|
1260
1260
|
}
|
|
1261
|
-
.
|
|
1261
|
+
.bds018-dialog::backdrop {
|
|
1262
1262
|
background: rgb(0 0 0 / 50%);
|
|
1263
1263
|
}
|
|
1264
|
-
.
|
|
1264
|
+
.bds018-palette {
|
|
1265
1265
|
display: flex;
|
|
1266
1266
|
flex-direction: column;
|
|
1267
1267
|
background-color: var(--command_color, var(--color_bg));
|
|
@@ -1272,7 +1272,7 @@
|
|
|
1272
1272
|
max-height: 70vh;
|
|
1273
1273
|
border: 1px solid currentcolor;
|
|
1274
1274
|
}
|
|
1275
|
-
.
|
|
1275
|
+
.bds018-searchRow {
|
|
1276
1276
|
display: flex;
|
|
1277
1277
|
align-items: center;
|
|
1278
1278
|
gap: var(--space_xs);
|
|
@@ -1280,13 +1280,13 @@
|
|
|
1280
1280
|
border-block-end: 1px solid currentcolor;
|
|
1281
1281
|
flex-shrink: 0;
|
|
1282
1282
|
}
|
|
1283
|
-
.
|
|
1283
|
+
.bds018-searchIcon {
|
|
1284
1284
|
width: 1.25rem;
|
|
1285
1285
|
height: 1.25rem;
|
|
1286
1286
|
color: var(--color_on-bg--muted);
|
|
1287
1287
|
flex-shrink: 0;
|
|
1288
1288
|
}
|
|
1289
|
-
.
|
|
1289
|
+
.bds018-search {
|
|
1290
1290
|
flex: 1;
|
|
1291
1291
|
border: none;
|
|
1292
1292
|
outline: none;
|
|
@@ -1296,10 +1296,10 @@
|
|
|
1296
1296
|
background: transparent;
|
|
1297
1297
|
min-width: 0;
|
|
1298
1298
|
}
|
|
1299
|
-
.
|
|
1299
|
+
.bds018-search::placeholder {
|
|
1300
1300
|
color: var(--color_on-bg--muted);
|
|
1301
1301
|
}
|
|
1302
|
-
.
|
|
1302
|
+
.bds018-escHint {
|
|
1303
1303
|
font-size: var(--font_size--body--s);
|
|
1304
1304
|
color: var(--color_on-bg--muted);
|
|
1305
1305
|
border: 1px solid currentcolor;
|
|
@@ -1307,18 +1307,18 @@
|
|
|
1307
1307
|
padding: 0.1em 0.4em;
|
|
1308
1308
|
flex-shrink: 0;
|
|
1309
1309
|
}
|
|
1310
|
-
.
|
|
1310
|
+
.bds018-list {
|
|
1311
1311
|
overflow-y: auto;
|
|
1312
1312
|
list-style: none;
|
|
1313
1313
|
margin: 0;
|
|
1314
1314
|
padding: var(--space_xs) 0;
|
|
1315
1315
|
}
|
|
1316
|
-
.
|
|
1316
|
+
.bds018-groupList {
|
|
1317
1317
|
list-style: none;
|
|
1318
1318
|
margin: 0;
|
|
1319
1319
|
padding: 0;
|
|
1320
1320
|
}
|
|
1321
|
-
.
|
|
1321
|
+
.bds018-group {
|
|
1322
1322
|
padding: var(--space_xs) var(--space_m);
|
|
1323
1323
|
font-size: var(--font_size--body--s);
|
|
1324
1324
|
font-weight: var(--font_weight--semibold);
|
|
@@ -1326,7 +1326,7 @@
|
|
|
1326
1326
|
text-transform: uppercase;
|
|
1327
1327
|
letter-spacing: 0.05em;
|
|
1328
1328
|
}
|
|
1329
|
-
.
|
|
1329
|
+
.bds018-item {
|
|
1330
1330
|
display: flex;
|
|
1331
1331
|
align-items: center;
|
|
1332
1332
|
gap: var(--space_s);
|
|
@@ -1334,26 +1334,26 @@
|
|
|
1334
1334
|
cursor: pointer;
|
|
1335
1335
|
transition: background-color var(--animation_transition-duration) var(--animation_easing);
|
|
1336
1336
|
}
|
|
1337
|
-
.
|
|
1337
|
+
.bds018-itemActive {
|
|
1338
1338
|
background-color: var(--color_bg--subtle);
|
|
1339
1339
|
}
|
|
1340
|
-
.
|
|
1340
|
+
.bds018-itemLabel {
|
|
1341
1341
|
flex: 1;
|
|
1342
1342
|
font-size: var(--font_size--body);
|
|
1343
1343
|
color: var(--color_on-bg);
|
|
1344
1344
|
}
|
|
1345
|
-
.
|
|
1345
|
+
.bds018-itemDesc {
|
|
1346
1346
|
font-size: var(--font_size--body--s);
|
|
1347
1347
|
color: var(--color_on-bg--muted);
|
|
1348
1348
|
}
|
|
1349
|
-
.
|
|
1349
|
+
.bds018-shortcut {
|
|
1350
1350
|
font-size: var(--font_size--body--s);
|
|
1351
1351
|
color: var(--color_on-bg--muted);
|
|
1352
1352
|
border: 1px solid currentcolor;
|
|
1353
1353
|
border-radius: var(--border_radius--xs);
|
|
1354
1354
|
padding: 0.1em 0.4em;
|
|
1355
1355
|
}
|
|
1356
|
-
.
|
|
1356
|
+
.bds018-empty {
|
|
1357
1357
|
padding: var(--space_l) var(--space_m);
|
|
1358
1358
|
text-align: center;
|
|
1359
1359
|
color: var(--color_on-bg--muted);
|
|
@@ -1363,7 +1363,7 @@
|
|
|
1363
1363
|
|
|
1364
1364
|
/* src/components/interaction/Dialog/Dialog.module.css */
|
|
1365
1365
|
@layer component {
|
|
1366
|
-
.
|
|
1366
|
+
.bds018-dialog {
|
|
1367
1367
|
font-size: var(--font_size--body--s);
|
|
1368
1368
|
border: 2px solid currentcolor;
|
|
1369
1369
|
background-color: var(--dialog_color ,var(--color_grey--subtle));
|
|
@@ -1372,22 +1372,20 @@
|
|
|
1372
1372
|
padding: var(--space_l);
|
|
1373
1373
|
max-width: 90svw;
|
|
1374
1374
|
max-height: 90svh;
|
|
1375
|
-
display: flex;
|
|
1376
|
-
flex-direction: column;
|
|
1377
1375
|
}
|
|
1378
|
-
.
|
|
1376
|
+
.bds018-dialogContent {
|
|
1379
1377
|
display: grid;
|
|
1380
1378
|
gap: var(--grid_gap);
|
|
1381
1379
|
overflow-y: auto;
|
|
1382
1380
|
min-height: 0;
|
|
1383
1381
|
flex: 1;
|
|
1384
1382
|
}
|
|
1385
|
-
.
|
|
1383
|
+
.bds018-closeForm {
|
|
1386
1384
|
position: absolute;
|
|
1387
1385
|
inset-block-start: -1em;
|
|
1388
1386
|
inset-inline-end: -1em;
|
|
1389
1387
|
}
|
|
1390
|
-
.
|
|
1388
|
+
.bds018-closeButton {
|
|
1391
1389
|
all: unset;
|
|
1392
1390
|
width: 2em;
|
|
1393
1391
|
height: 2em;
|
|
@@ -1400,7 +1398,7 @@
|
|
|
1400
1398
|
border: 2px solid currentcolor;
|
|
1401
1399
|
cursor: pointer;
|
|
1402
1400
|
}
|
|
1403
|
-
.
|
|
1401
|
+
.bds018-closeButton svg {
|
|
1404
1402
|
width: 1.25em;
|
|
1405
1403
|
height: 1.25em;
|
|
1406
1404
|
}
|
|
@@ -1408,7 +1406,7 @@
|
|
|
1408
1406
|
|
|
1409
1407
|
/* src/components/interaction/Drawer/Drawer.module.css */
|
|
1410
1408
|
@layer component {
|
|
1411
|
-
.
|
|
1409
|
+
.bds018-drawer {
|
|
1412
1410
|
position: fixed;
|
|
1413
1411
|
inset: 0;
|
|
1414
1412
|
margin: 0;
|
|
@@ -1421,10 +1419,10 @@
|
|
|
1421
1419
|
background: transparent;
|
|
1422
1420
|
overflow: hidden;
|
|
1423
1421
|
}
|
|
1424
|
-
.
|
|
1422
|
+
.bds018-drawer::backdrop {
|
|
1425
1423
|
background: rgb(0 0 0 / 50%);
|
|
1426
1424
|
}
|
|
1427
|
-
.
|
|
1425
|
+
.bds018-panel {
|
|
1428
1426
|
position: absolute;
|
|
1429
1427
|
inset-block: 0;
|
|
1430
1428
|
display: flex;
|
|
@@ -1437,13 +1435,13 @@
|
|
|
1437
1435
|
overflow: hidden;
|
|
1438
1436
|
transition: transform var(--animation_transition-duration) var(--animation_easing);
|
|
1439
1437
|
}
|
|
1440
|
-
.
|
|
1438
|
+
.bds018---side_right .bds018-panel {
|
|
1441
1439
|
inset-inline-end: 0;
|
|
1442
1440
|
}
|
|
1443
|
-
.
|
|
1441
|
+
.bds018---side_left .bds018-panel {
|
|
1444
1442
|
inset-inline-start: 0;
|
|
1445
1443
|
}
|
|
1446
|
-
.
|
|
1444
|
+
.bds018-header {
|
|
1447
1445
|
display: flex;
|
|
1448
1446
|
align-items: center;
|
|
1449
1447
|
justify-content: space-between;
|
|
@@ -1451,13 +1449,13 @@
|
|
|
1451
1449
|
border-block-end: 1px solid currentcolor;
|
|
1452
1450
|
flex-shrink: 0;
|
|
1453
1451
|
}
|
|
1454
|
-
.
|
|
1452
|
+
.bds018-title {
|
|
1455
1453
|
margin: 0;
|
|
1456
1454
|
font-size: var(--font_size--heading--s);
|
|
1457
1455
|
font-weight: var(--font_weight--semibold);
|
|
1458
1456
|
line-height: var(--font_line-height--heading);
|
|
1459
1457
|
}
|
|
1460
|
-
.
|
|
1458
|
+
.bds018-closeButton {
|
|
1461
1459
|
all: unset;
|
|
1462
1460
|
display: flex;
|
|
1463
1461
|
align-items: center;
|
|
@@ -1468,26 +1466,26 @@
|
|
|
1468
1466
|
cursor: pointer;
|
|
1469
1467
|
transition: var(--animation_transition);
|
|
1470
1468
|
}
|
|
1471
|
-
.
|
|
1469
|
+
.bds018-closeButton svg {
|
|
1472
1470
|
width: 1.25rem;
|
|
1473
1471
|
height: 1.25rem;
|
|
1474
1472
|
}
|
|
1475
|
-
.
|
|
1473
|
+
.bds018-closeButton:focus-visible {
|
|
1476
1474
|
outline: var(--outline_default);
|
|
1477
1475
|
outline-offset: var(--outline_offset);
|
|
1478
1476
|
}
|
|
1479
1477
|
@media (hover: hover) and (pointer: fine) {
|
|
1480
|
-
.
|
|
1478
|
+
.bds018-closeButton:hover {
|
|
1481
1479
|
background-color: var(--color_bg--subtle);
|
|
1482
1480
|
}
|
|
1483
1481
|
}
|
|
1484
|
-
.
|
|
1482
|
+
.bds018-body {
|
|
1485
1483
|
flex: 1;
|
|
1486
1484
|
overflow-y: auto;
|
|
1487
1485
|
padding: var(--space_l);
|
|
1488
1486
|
}
|
|
1489
1487
|
@media (prefers-reduced-motion: reduce) {
|
|
1490
|
-
.
|
|
1488
|
+
.bds018-panel {
|
|
1491
1489
|
transition: none;
|
|
1492
1490
|
}
|
|
1493
1491
|
}
|
|
@@ -1495,11 +1493,11 @@
|
|
|
1495
1493
|
|
|
1496
1494
|
/* src/components/interaction/DropdownMenu/DropdownMenu.module.css */
|
|
1497
1495
|
@layer component {
|
|
1498
|
-
.
|
|
1496
|
+
.bds018-wrapper {
|
|
1499
1497
|
position: relative;
|
|
1500
1498
|
display: inline-flex;
|
|
1501
1499
|
}
|
|
1502
|
-
.
|
|
1500
|
+
.bds018-menu {
|
|
1503
1501
|
position: absolute;
|
|
1504
1502
|
top: calc(100% + var(--space_xxs));
|
|
1505
1503
|
z-index: var(--z-index_dropdown);
|
|
@@ -1513,19 +1511,19 @@
|
|
|
1513
1511
|
list-style: none;
|
|
1514
1512
|
margin: 0;
|
|
1515
1513
|
}
|
|
1516
|
-
.
|
|
1514
|
+
.bds018---placement_bottom-start {
|
|
1517
1515
|
left: 0;
|
|
1518
1516
|
}
|
|
1519
|
-
.
|
|
1517
|
+
.bds018---placement_bottom-end {
|
|
1520
1518
|
right: 0;
|
|
1521
1519
|
}
|
|
1522
|
-
.
|
|
1520
|
+
.bds018-separator {
|
|
1523
1521
|
border: none;
|
|
1524
1522
|
border-top: 1px solid currentcolor;
|
|
1525
1523
|
margin: var(--space_xxs) 0;
|
|
1526
1524
|
opacity: 0.15;
|
|
1527
1525
|
}
|
|
1528
|
-
.
|
|
1526
|
+
.bds018-item {
|
|
1529
1527
|
all: unset;
|
|
1530
1528
|
display: flex;
|
|
1531
1529
|
align-items: center;
|
|
@@ -1539,22 +1537,22 @@
|
|
|
1539
1537
|
box-sizing: border-box;
|
|
1540
1538
|
transition: var(--animation_transition);
|
|
1541
1539
|
}
|
|
1542
|
-
.
|
|
1540
|
+
.bds018-item:disabled {
|
|
1543
1541
|
opacity: 0.4;
|
|
1544
1542
|
cursor: not-allowed;
|
|
1545
1543
|
}
|
|
1546
|
-
.
|
|
1544
|
+
.bds018-item:focus-visible {
|
|
1547
1545
|
outline: var(--outline_default);
|
|
1548
1546
|
outline-offset: calc(var(--outline_offset) * -1);
|
|
1549
1547
|
border-radius: var(--border_radius--xs);
|
|
1550
1548
|
}
|
|
1551
1549
|
@media (hover: hover) and (pointer: fine) {
|
|
1552
|
-
.
|
|
1550
|
+
.bds018-item:not(:disabled):hover {
|
|
1553
1551
|
background-color: var(--color_bg--subtle);
|
|
1554
1552
|
color: var(--color_interactive);
|
|
1555
1553
|
}
|
|
1556
1554
|
}
|
|
1557
|
-
.
|
|
1555
|
+
.bds018-icon {
|
|
1558
1556
|
display: flex;
|
|
1559
1557
|
align-items: center;
|
|
1560
1558
|
flex-shrink: 0;
|
|
@@ -1563,11 +1561,11 @@
|
|
|
1563
1561
|
|
|
1564
1562
|
/* src/components/interaction/Popover/Popover.module.css */
|
|
1565
1563
|
@layer component {
|
|
1566
|
-
.
|
|
1564
|
+
.bds018-wrapper {
|
|
1567
1565
|
position: relative;
|
|
1568
1566
|
display: inline-flex;
|
|
1569
1567
|
}
|
|
1570
|
-
.
|
|
1568
|
+
.bds018-panel {
|
|
1571
1569
|
position: absolute;
|
|
1572
1570
|
z-index: var(--z-index_popover);
|
|
1573
1571
|
min-width: 12rem;
|
|
@@ -1579,19 +1577,19 @@
|
|
|
1579
1577
|
color: var(--popover_on-color, var(--color_on-bg));
|
|
1580
1578
|
font-size: var(--font_size--body);
|
|
1581
1579
|
}
|
|
1582
|
-
.
|
|
1580
|
+
.bds018---placement_bottom {
|
|
1583
1581
|
top: calc(100% + var(--space_xs));
|
|
1584
1582
|
left: 0;
|
|
1585
1583
|
}
|
|
1586
|
-
.
|
|
1584
|
+
.bds018---placement_top {
|
|
1587
1585
|
bottom: calc(100% + var(--space_xs));
|
|
1588
1586
|
left: 0;
|
|
1589
1587
|
}
|
|
1590
|
-
.
|
|
1588
|
+
.bds018---placement_right {
|
|
1591
1589
|
left: calc(100% + var(--space_xs));
|
|
1592
1590
|
top: 0;
|
|
1593
1591
|
}
|
|
1594
|
-
.
|
|
1592
|
+
.bds018---placement_left {
|
|
1595
1593
|
right: calc(100% + var(--space_xs));
|
|
1596
1594
|
top: 0;
|
|
1597
1595
|
}
|
|
@@ -1599,23 +1597,23 @@
|
|
|
1599
1597
|
|
|
1600
1598
|
/* src/components/interaction/Rating/Rating.module.css */
|
|
1601
1599
|
@layer component {
|
|
1602
|
-
.
|
|
1600
|
+
.bds018-rating {
|
|
1603
1601
|
display: inline-flex;
|
|
1604
1602
|
gap: var(--space_xxxs);
|
|
1605
1603
|
color: var(--color_bg);
|
|
1606
1604
|
}
|
|
1607
|
-
.
|
|
1605
|
+
.bds018-star {
|
|
1608
1606
|
width: 1.5em;
|
|
1609
1607
|
height: 1.5em;
|
|
1610
1608
|
}
|
|
1611
|
-
.
|
|
1609
|
+
.bds018---filled {
|
|
1612
1610
|
color: var(--color_warning);
|
|
1613
1611
|
}
|
|
1614
1612
|
}
|
|
1615
1613
|
|
|
1616
1614
|
/* src/components/interaction/Toast/Toast.module.css */
|
|
1617
1615
|
@layer component {
|
|
1618
|
-
.
|
|
1616
|
+
.bds018-toastContainer {
|
|
1619
1617
|
position: fixed;
|
|
1620
1618
|
bottom: var(--space_xl);
|
|
1621
1619
|
right: var(--space_xl);
|
|
@@ -1624,7 +1622,7 @@
|
|
|
1624
1622
|
gap: var(--space_m);
|
|
1625
1623
|
z-index: var(--z-index_toast);
|
|
1626
1624
|
}
|
|
1627
|
-
.
|
|
1625
|
+
.bds018-toast {
|
|
1628
1626
|
padding: var(--space_m) var(--space_l);
|
|
1629
1627
|
background-color: var(--toast_color, var(--color_bg));
|
|
1630
1628
|
color: var(--toast_on-color, var(--color_on-bg));
|
|
@@ -1637,10 +1635,10 @@
|
|
|
1637
1635
|
min-width: 300px;
|
|
1638
1636
|
animation: slideIn var(--animation_duration--fast) var(--animation_easing);
|
|
1639
1637
|
}
|
|
1640
|
-
.
|
|
1638
|
+
.bds018-message {
|
|
1641
1639
|
flex: 1;
|
|
1642
1640
|
}
|
|
1643
|
-
.
|
|
1641
|
+
.bds018-closeButton {
|
|
1644
1642
|
display: flex;
|
|
1645
1643
|
align-items: center;
|
|
1646
1644
|
justify-content: center;
|
|
@@ -1654,10 +1652,10 @@
|
|
|
1654
1652
|
color: inherit;
|
|
1655
1653
|
opacity: 0.6;
|
|
1656
1654
|
}
|
|
1657
|
-
.
|
|
1655
|
+
.bds018-closeButton:hover {
|
|
1658
1656
|
opacity: 1;
|
|
1659
1657
|
}
|
|
1660
|
-
.
|
|
1658
|
+
.bds018-closeButton svg {
|
|
1661
1659
|
width: 1rem;
|
|
1662
1660
|
height: 1rem;
|
|
1663
1661
|
}
|
|
@@ -1675,17 +1673,17 @@
|
|
|
1675
1673
|
|
|
1676
1674
|
/* src/components/interaction/form/Checkbox/Checkbox.module.css */
|
|
1677
1675
|
@layer component {
|
|
1678
|
-
.
|
|
1676
|
+
.bds018-checkboxGroup {
|
|
1679
1677
|
--inputSize: calc(var(--space_s) * 2);
|
|
1680
1678
|
display: flex;
|
|
1681
1679
|
flex-direction: column;
|
|
1682
1680
|
}
|
|
1683
|
-
.
|
|
1681
|
+
.bds018-inputWrapper {
|
|
1684
1682
|
display: flex;
|
|
1685
1683
|
align-items: stretch;
|
|
1686
1684
|
gap: var(--space_xs);
|
|
1687
1685
|
}
|
|
1688
|
-
.
|
|
1686
|
+
.bds018-checkbox {
|
|
1689
1687
|
margin-block-start: 0.25em;
|
|
1690
1688
|
width: var(--inputSize);
|
|
1691
1689
|
height: var(--inputSize);
|
|
@@ -1697,12 +1695,12 @@
|
|
|
1697
1695
|
position: relative;
|
|
1698
1696
|
transition: background-color 0.3s ease, border-color 0.3s ease;
|
|
1699
1697
|
}
|
|
1700
|
-
.
|
|
1698
|
+
.bds018-checkbox:checked {
|
|
1701
1699
|
background-color: var(--color_green);
|
|
1702
1700
|
border-color: var(--color_green);
|
|
1703
1701
|
box-shadow: 0 0 0 2px var(--color_green);
|
|
1704
1702
|
}
|
|
1705
|
-
.
|
|
1703
|
+
.bds018-checkbox:checked::after {
|
|
1706
1704
|
content: "";
|
|
1707
1705
|
position: absolute;
|
|
1708
1706
|
left: 0.6em;
|
|
@@ -1713,15 +1711,15 @@
|
|
|
1713
1711
|
border-width: 0 2px 2px 0;
|
|
1714
1712
|
transform: rotate(45deg);
|
|
1715
1713
|
}
|
|
1716
|
-
.
|
|
1714
|
+
.bds018-checkbox:focus {
|
|
1717
1715
|
outline: none;
|
|
1718
1716
|
border-color: var(--color_interactive);
|
|
1719
1717
|
box-shadow: 0 0 0 2px var(--color_green);
|
|
1720
1718
|
}
|
|
1721
|
-
.
|
|
1719
|
+
.bds018-checkboxError {
|
|
1722
1720
|
border-color: var(--color_error);
|
|
1723
1721
|
}
|
|
1724
|
-
.
|
|
1722
|
+
.bds018-checkboxError:focus {
|
|
1725
1723
|
border-color: var(--color_error);
|
|
1726
1724
|
box-shadow: 0 0 0 2px rgb(from var(--color_error) r g b / 20%);
|
|
1727
1725
|
}
|
|
@@ -1729,19 +1727,19 @@
|
|
|
1729
1727
|
|
|
1730
1728
|
/* src/components/interaction/form/atoms/Message.module.css */
|
|
1731
1729
|
@layer component {
|
|
1732
|
-
.
|
|
1733
|
-
.
|
|
1730
|
+
.bds018-error,
|
|
1731
|
+
.bds018-hint {
|
|
1734
1732
|
font-size: var(--font_size--body--s);
|
|
1735
1733
|
margin-inline-start: var(--labelPosition);
|
|
1736
1734
|
}
|
|
1737
|
-
.
|
|
1735
|
+
.bds018-error {
|
|
1738
1736
|
color: var(--color_error);
|
|
1739
1737
|
}
|
|
1740
1738
|
}
|
|
1741
1739
|
|
|
1742
1740
|
/* src/components/interaction/form/atoms/Label.module.css */
|
|
1743
1741
|
@layer component {
|
|
1744
|
-
.
|
|
1742
|
+
.bds018-label {
|
|
1745
1743
|
display: flex;
|
|
1746
1744
|
align-items: center;
|
|
1747
1745
|
font-family: var(--font_family--body);
|
|
@@ -1753,7 +1751,7 @@
|
|
|
1753
1751
|
|
|
1754
1752
|
/* src/components/interaction/form/atoms/InputContainer.module.css */
|
|
1755
1753
|
@layer component {
|
|
1756
|
-
.
|
|
1754
|
+
.bds018-container {
|
|
1757
1755
|
--labelPosition: calc(var(--inputSize) + var(--space_m));
|
|
1758
1756
|
display: flex;
|
|
1759
1757
|
flex-direction: column;
|
|
@@ -1763,16 +1761,16 @@
|
|
|
1763
1761
|
|
|
1764
1762
|
/* src/components/interaction/form/Combobox/Combobox.module.css */
|
|
1765
1763
|
@layer component {
|
|
1766
|
-
.
|
|
1764
|
+
.bds018-formGroup {
|
|
1767
1765
|
display: flex;
|
|
1768
1766
|
flex-direction: column;
|
|
1769
1767
|
}
|
|
1770
|
-
.
|
|
1768
|
+
.bds018-inputWrapper {
|
|
1771
1769
|
position: relative;
|
|
1772
1770
|
display: flex;
|
|
1773
1771
|
align-items: center;
|
|
1774
1772
|
}
|
|
1775
|
-
.
|
|
1773
|
+
.bds018-input {
|
|
1776
1774
|
--combobox_border-color: var(--color_on-bg);
|
|
1777
1775
|
--combobox_focus-ring: 0 0 0 2px rgb(from var(--color_interactive) r g b / 20%);
|
|
1778
1776
|
appearance: none;
|
|
@@ -1787,22 +1785,22 @@
|
|
|
1787
1785
|
color: var(--color_on-bg);
|
|
1788
1786
|
transition: var(--animation_transition);
|
|
1789
1787
|
}
|
|
1790
|
-
.
|
|
1788
|
+
.bds018-input:focus {
|
|
1791
1789
|
--combobox_border-color: var(--color_interactive);
|
|
1792
1790
|
outline: none;
|
|
1793
1791
|
box-shadow: var(--combobox_focus-ring);
|
|
1794
1792
|
}
|
|
1795
|
-
.
|
|
1793
|
+
.bds018-input:disabled {
|
|
1796
1794
|
opacity: 0.5;
|
|
1797
1795
|
cursor: not-allowed;
|
|
1798
1796
|
}
|
|
1799
|
-
.
|
|
1797
|
+
.bds018-inputError {
|
|
1800
1798
|
--combobox_border-color: var(--color_error);
|
|
1801
1799
|
}
|
|
1802
|
-
.
|
|
1800
|
+
.bds018-inputError:focus {
|
|
1803
1801
|
--combobox_focus-ring: 0 0 0 2px rgb(from var(--color_error) r g b / 20%);
|
|
1804
1802
|
}
|
|
1805
|
-
.
|
|
1803
|
+
.bds018-chevron {
|
|
1806
1804
|
position: absolute;
|
|
1807
1805
|
inset-inline-end: var(--space_s);
|
|
1808
1806
|
display: flex;
|
|
@@ -1810,11 +1808,11 @@
|
|
|
1810
1808
|
pointer-events: none;
|
|
1811
1809
|
color: var(--color_on-bg);
|
|
1812
1810
|
}
|
|
1813
|
-
.
|
|
1811
|
+
.bds018-chevron svg {
|
|
1814
1812
|
width: 1rem;
|
|
1815
1813
|
height: 1rem;
|
|
1816
1814
|
}
|
|
1817
|
-
.
|
|
1815
|
+
.bds018-listbox {
|
|
1818
1816
|
position: absolute;
|
|
1819
1817
|
top: calc(100% + var(--space_xxs));
|
|
1820
1818
|
left: 0;
|
|
@@ -1831,7 +1829,7 @@
|
|
|
1831
1829
|
color: var(--combobox_on-color, var(--color_on-bg));
|
|
1832
1830
|
box-shadow: var(--shadow_m);
|
|
1833
1831
|
}
|
|
1834
|
-
.
|
|
1832
|
+
.bds018-option {
|
|
1835
1833
|
display: flex;
|
|
1836
1834
|
align-items: center;
|
|
1837
1835
|
padding: var(--space_xs) var(--space_m);
|
|
@@ -1840,14 +1838,14 @@
|
|
|
1840
1838
|
cursor: pointer;
|
|
1841
1839
|
transition: var(--animation_transition);
|
|
1842
1840
|
}
|
|
1843
|
-
.
|
|
1841
|
+
.bds018-option.bds018---highlighted {
|
|
1844
1842
|
background-color: var(--color_bg--subtle);
|
|
1845
1843
|
color: var(--color_interactive);
|
|
1846
1844
|
}
|
|
1847
|
-
.
|
|
1845
|
+
.bds018-option.bds018---selected {
|
|
1848
1846
|
font-weight: var(--font_weight--semibold);
|
|
1849
1847
|
}
|
|
1850
|
-
.
|
|
1848
|
+
.bds018-option.bds018---disabled {
|
|
1851
1849
|
opacity: 0.4;
|
|
1852
1850
|
cursor: not-allowed;
|
|
1853
1851
|
}
|
|
@@ -1855,11 +1853,11 @@
|
|
|
1855
1853
|
|
|
1856
1854
|
/* src/components/interaction/form/FileInput/FileInput.module.css */
|
|
1857
1855
|
@layer component {
|
|
1858
|
-
.
|
|
1856
|
+
.bds018-formGroup {
|
|
1859
1857
|
display: flex;
|
|
1860
1858
|
flex-direction: column;
|
|
1861
1859
|
}
|
|
1862
|
-
.
|
|
1860
|
+
.bds018-dropZone {
|
|
1863
1861
|
display: flex;
|
|
1864
1862
|
flex-direction: column;
|
|
1865
1863
|
align-items: center;
|
|
@@ -1873,40 +1871,40 @@
|
|
|
1873
1871
|
transition: var(--animation_transition);
|
|
1874
1872
|
color: var(--color_on-bg--muted);
|
|
1875
1873
|
}
|
|
1876
|
-
.
|
|
1874
|
+
.bds018-dropZone:focus-within {
|
|
1877
1875
|
outline: var(--outline_default);
|
|
1878
1876
|
outline-offset: var(--outline_offset);
|
|
1879
1877
|
border-color: var(--color_interactive);
|
|
1880
1878
|
}
|
|
1881
|
-
.
|
|
1879
|
+
.bds018-isDragging {
|
|
1882
1880
|
border-color: var(--color_interactive);
|
|
1883
1881
|
background-color: rgb(from var(--color_interactive) r g b / 8%);
|
|
1884
1882
|
}
|
|
1885
|
-
.
|
|
1883
|
+
.bds018-hasError {
|
|
1886
1884
|
border-color: var(--color_error);
|
|
1887
1885
|
}
|
|
1888
|
-
.
|
|
1886
|
+
.bds018-isDisabled {
|
|
1889
1887
|
opacity: 0.5;
|
|
1890
1888
|
cursor: not-allowed;
|
|
1891
1889
|
}
|
|
1892
|
-
.
|
|
1890
|
+
.bds018-icon {
|
|
1893
1891
|
width: 2rem;
|
|
1894
1892
|
height: 2rem;
|
|
1895
1893
|
flex-shrink: 0;
|
|
1896
1894
|
}
|
|
1897
|
-
.
|
|
1895
|
+
.bds018-prompt {
|
|
1898
1896
|
font-size: var(--font_size--body);
|
|
1899
1897
|
color: var(--color_on-bg--muted);
|
|
1900
1898
|
}
|
|
1901
|
-
.
|
|
1899
|
+
.bds018-prompt strong {
|
|
1902
1900
|
color: var(--color_interactive);
|
|
1903
1901
|
font-weight: var(--font_weight--semibold);
|
|
1904
1902
|
}
|
|
1905
|
-
.
|
|
1903
|
+
.bds018-acceptHint {
|
|
1906
1904
|
font-size: var(--font_size--body--s);
|
|
1907
1905
|
color: var(--color_on-bg--muted);
|
|
1908
1906
|
}
|
|
1909
|
-
.
|
|
1907
|
+
.bds018-hiddenInput {
|
|
1910
1908
|
position: absolute;
|
|
1911
1909
|
width: 1px;
|
|
1912
1910
|
height: 1px;
|
|
@@ -1916,7 +1914,7 @@
|
|
|
1916
1914
|
border: 0;
|
|
1917
1915
|
}
|
|
1918
1916
|
@media (hover: hover) and (pointer: fine) {
|
|
1919
|
-
.
|
|
1917
|
+
.bds018-dropZone:not(.bds018-isDisabled):hover {
|
|
1920
1918
|
border-color: var(--color_interactive);
|
|
1921
1919
|
background-color: rgb(from var(--color_interactive) r g b / 4%);
|
|
1922
1920
|
}
|
|
@@ -1925,12 +1923,12 @@
|
|
|
1925
1923
|
|
|
1926
1924
|
/* src/components/interaction/form/FormInput/FormInput.module.css */
|
|
1927
1925
|
@layer component {
|
|
1928
|
-
.
|
|
1926
|
+
.bds018-formGroup {
|
|
1929
1927
|
--labelPosition: 0;
|
|
1930
1928
|
display: flex;
|
|
1931
1929
|
flex-direction: column;
|
|
1932
1930
|
}
|
|
1933
|
-
.
|
|
1931
|
+
.bds018-input {
|
|
1934
1932
|
--input_border-color: var(--color_on-bg);
|
|
1935
1933
|
--input_radius: var(--border_radius--xs);
|
|
1936
1934
|
--input_focus-ring: 0 0 0 2px rgb(from var(--color_interactive) r g b / 20%);
|
|
@@ -1941,26 +1939,26 @@
|
|
|
1941
1939
|
border-radius: var(--input_radius);
|
|
1942
1940
|
transition: var(--animation_transition);
|
|
1943
1941
|
}
|
|
1944
|
-
.
|
|
1942
|
+
.bds018-input:focus {
|
|
1945
1943
|
--input_border-color: var(--color_interactive);
|
|
1946
1944
|
outline: none;
|
|
1947
1945
|
box-shadow: var(--input_focus-ring);
|
|
1948
1946
|
}
|
|
1949
|
-
.
|
|
1947
|
+
.bds018-inputError {
|
|
1950
1948
|
--input_border-color: var(--color_error);
|
|
1951
1949
|
}
|
|
1952
|
-
.
|
|
1950
|
+
.bds018-inputError:focus {
|
|
1953
1951
|
--input_focus-ring: 0 0 0 2px rgb(from var(--color_error) r g b / 20%);
|
|
1954
1952
|
}
|
|
1955
1953
|
}
|
|
1956
1954
|
|
|
1957
1955
|
/* src/components/interaction/form/NumberInput/NumberInput.module.css */
|
|
1958
1956
|
@layer component {
|
|
1959
|
-
.
|
|
1957
|
+
.bds018-formGroup {
|
|
1960
1958
|
display: flex;
|
|
1961
1959
|
flex-direction: column;
|
|
1962
1960
|
}
|
|
1963
|
-
.
|
|
1961
|
+
.bds018-inputRow {
|
|
1964
1962
|
display: flex;
|
|
1965
1963
|
align-items: stretch;
|
|
1966
1964
|
border: 1px solid var(--color_on-bg);
|
|
@@ -1968,11 +1966,11 @@
|
|
|
1968
1966
|
overflow: hidden;
|
|
1969
1967
|
transition: var(--animation_transition);
|
|
1970
1968
|
}
|
|
1971
|
-
.
|
|
1969
|
+
.bds018-inputRow:focus-within {
|
|
1972
1970
|
border-color: var(--color_interactive);
|
|
1973
1971
|
box-shadow: 0 0 0 2px rgb(from var(--color_interactive) r g b / 20%);
|
|
1974
1972
|
}
|
|
1975
|
-
.
|
|
1973
|
+
.bds018-input {
|
|
1976
1974
|
flex: 1;
|
|
1977
1975
|
border: none;
|
|
1978
1976
|
outline: none;
|
|
@@ -1985,18 +1983,18 @@
|
|
|
1985
1983
|
min-width: 0;
|
|
1986
1984
|
appearance: textfield;
|
|
1987
1985
|
}
|
|
1988
|
-
.
|
|
1989
|
-
.
|
|
1986
|
+
.bds018-input::-webkit-inner-spin-button,
|
|
1987
|
+
.bds018-input::-webkit-outer-spin-button {
|
|
1990
1988
|
appearance: none;
|
|
1991
1989
|
}
|
|
1992
|
-
.
|
|
1990
|
+
.bds018-inputError {
|
|
1993
1991
|
border-color: var(--color_error);
|
|
1994
1992
|
}
|
|
1995
|
-
.
|
|
1993
|
+
.bds018-inputError:focus-within {
|
|
1996
1994
|
border-color: var(--color_error);
|
|
1997
1995
|
box-shadow: 0 0 0 2px rgb(from var(--color_error) r g b / 20%);
|
|
1998
1996
|
}
|
|
1999
|
-
.
|
|
1997
|
+
.bds018-stepper {
|
|
2000
1998
|
all: unset;
|
|
2001
1999
|
display: flex;
|
|
2002
2000
|
align-items: center;
|
|
@@ -2008,16 +2006,16 @@
|
|
|
2008
2006
|
transition: var(--animation_transition);
|
|
2009
2007
|
flex-shrink: 0;
|
|
2010
2008
|
}
|
|
2011
|
-
.
|
|
2009
|
+
.bds018-stepper svg {
|
|
2012
2010
|
width: 1rem;
|
|
2013
2011
|
height: 1rem;
|
|
2014
2012
|
}
|
|
2015
|
-
.
|
|
2013
|
+
.bds018-stepper:disabled {
|
|
2016
2014
|
opacity: 0.4;
|
|
2017
2015
|
cursor: not-allowed;
|
|
2018
2016
|
}
|
|
2019
2017
|
@media (hover: hover) and (pointer: fine) {
|
|
2020
|
-
.
|
|
2018
|
+
.bds018-stepper:not(:disabled):hover {
|
|
2021
2019
|
background-color: var(--color_bg--subtle);
|
|
2022
2020
|
opacity: 0.7;
|
|
2023
2021
|
}
|
|
@@ -2026,18 +2024,18 @@
|
|
|
2026
2024
|
|
|
2027
2025
|
/* src/components/interaction/form/Radio/Radio.module.css */
|
|
2028
2026
|
@layer component {
|
|
2029
|
-
.
|
|
2027
|
+
.bds018-radioGroup {
|
|
2030
2028
|
--inputSize: calc(var(--space_s) * 2);
|
|
2031
2029
|
--labelPosition: calc(var(--inputSize) + var(--space_m));
|
|
2032
2030
|
display: flex;
|
|
2033
2031
|
flex-direction: column;
|
|
2034
2032
|
}
|
|
2035
|
-
.
|
|
2033
|
+
.bds018-inputWrapper {
|
|
2036
2034
|
display: flex;
|
|
2037
2035
|
align-items: stretch;
|
|
2038
2036
|
gap: var(--space_xs);
|
|
2039
2037
|
}
|
|
2040
|
-
.
|
|
2038
|
+
.bds018-radio {
|
|
2041
2039
|
flex-shrink: 0;
|
|
2042
2040
|
margin-block-start: 0.25em;
|
|
2043
2041
|
width: var(--inputSize);
|
|
@@ -2050,12 +2048,12 @@
|
|
|
2050
2048
|
position: relative;
|
|
2051
2049
|
transition: background-color 0.3s ease, border-color 0.3s ease;
|
|
2052
2050
|
}
|
|
2053
|
-
.
|
|
2051
|
+
.bds018-radio:checked {
|
|
2054
2052
|
background-color: var(--color_green);
|
|
2055
2053
|
border-color: var(--color_green);
|
|
2056
2054
|
box-shadow: 0 0 0 2px var(--color_green);
|
|
2057
2055
|
}
|
|
2058
|
-
.
|
|
2056
|
+
.bds018-radio:checked::after {
|
|
2059
2057
|
content: "";
|
|
2060
2058
|
position: absolute;
|
|
2061
2059
|
left: 0.6em;
|
|
@@ -2066,15 +2064,15 @@
|
|
|
2066
2064
|
border-width: 0 2px 2px 0;
|
|
2067
2065
|
transform: rotate(45deg);
|
|
2068
2066
|
}
|
|
2069
|
-
.
|
|
2067
|
+
.bds018-radio:focus {
|
|
2070
2068
|
outline: none;
|
|
2071
2069
|
border-color: var(--color_interactive);
|
|
2072
2070
|
box-shadow: 0 0 0 2px var(--color_green);
|
|
2073
2071
|
}
|
|
2074
|
-
.
|
|
2072
|
+
.bds018-radioError {
|
|
2075
2073
|
border-color: var(--color_error);
|
|
2076
2074
|
}
|
|
2077
|
-
.
|
|
2075
|
+
.bds018-radioError:focus {
|
|
2078
2076
|
border-color: var(--color_error);
|
|
2079
2077
|
box-shadow: 0 0 0 2px rgb(from var(--color_error) r g b / 20%);
|
|
2080
2078
|
}
|
|
@@ -2082,16 +2080,16 @@
|
|
|
2082
2080
|
|
|
2083
2081
|
/* src/components/interaction/form/Select/Select.module.css */
|
|
2084
2082
|
@layer component {
|
|
2085
|
-
.
|
|
2083
|
+
.bds018-formGroup {
|
|
2086
2084
|
display: flex;
|
|
2087
2085
|
flex-direction: column;
|
|
2088
2086
|
}
|
|
2089
|
-
.
|
|
2087
|
+
.bds018-selectWrapper {
|
|
2090
2088
|
position: relative;
|
|
2091
2089
|
display: flex;
|
|
2092
2090
|
align-items: center;
|
|
2093
2091
|
}
|
|
2094
|
-
.
|
|
2092
|
+
.bds018-select {
|
|
2095
2093
|
--select_border-color: var(--color_on-bg);
|
|
2096
2094
|
--select_focus-ring: 0 0 0 2px rgb(from var(--color_interactive) r g b / 20%);
|
|
2097
2095
|
appearance: none;
|
|
@@ -2107,22 +2105,22 @@
|
|
|
2107
2105
|
cursor: pointer;
|
|
2108
2106
|
transition: var(--animation_transition);
|
|
2109
2107
|
}
|
|
2110
|
-
.
|
|
2108
|
+
.bds018-select:focus {
|
|
2111
2109
|
--select_border-color: var(--color_interactive);
|
|
2112
2110
|
outline: none;
|
|
2113
2111
|
box-shadow: var(--select_focus-ring);
|
|
2114
2112
|
}
|
|
2115
|
-
.
|
|
2113
|
+
.bds018-select:disabled {
|
|
2116
2114
|
opacity: 0.5;
|
|
2117
2115
|
cursor: not-allowed;
|
|
2118
2116
|
}
|
|
2119
|
-
.
|
|
2117
|
+
.bds018-selectError {
|
|
2120
2118
|
--select_border-color: var(--color_error);
|
|
2121
2119
|
}
|
|
2122
|
-
.
|
|
2120
|
+
.bds018-selectError:focus {
|
|
2123
2121
|
--select_focus-ring: 0 0 0 2px rgb(from var(--color_error) r g b / 20%);
|
|
2124
2122
|
}
|
|
2125
|
-
.
|
|
2123
|
+
.bds018-chevron {
|
|
2126
2124
|
position: absolute;
|
|
2127
2125
|
inset-inline-end: var(--space_s);
|
|
2128
2126
|
display: flex;
|
|
@@ -2130,7 +2128,7 @@
|
|
|
2130
2128
|
pointer-events: none;
|
|
2131
2129
|
color: var(--color_on-bg);
|
|
2132
2130
|
}
|
|
2133
|
-
.
|
|
2131
|
+
.bds018-chevron svg {
|
|
2134
2132
|
width: 1rem;
|
|
2135
2133
|
height: 1rem;
|
|
2136
2134
|
}
|
|
@@ -2138,22 +2136,22 @@
|
|
|
2138
2136
|
|
|
2139
2137
|
/* src/components/interaction/form/Slider/Slider.module.css */
|
|
2140
2138
|
@layer component {
|
|
2141
|
-
.
|
|
2139
|
+
.bds018-formGroup {
|
|
2142
2140
|
display: flex;
|
|
2143
2141
|
flex-direction: column;
|
|
2144
2142
|
gap: var(--space_xxs);
|
|
2145
2143
|
}
|
|
2146
|
-
.
|
|
2144
|
+
.bds018-labelRow {
|
|
2147
2145
|
display: flex;
|
|
2148
2146
|
justify-content: space-between;
|
|
2149
2147
|
align-items: baseline;
|
|
2150
2148
|
}
|
|
2151
|
-
.
|
|
2149
|
+
.bds018-value {
|
|
2152
2150
|
font-size: var(--font_size--body--s);
|
|
2153
2151
|
font-variant-numeric: tabular-nums;
|
|
2154
2152
|
color: var(--color_on-bg--subtle);
|
|
2155
2153
|
}
|
|
2156
|
-
.
|
|
2154
|
+
.bds018-slider {
|
|
2157
2155
|
--slider_fill: 0%;
|
|
2158
2156
|
--slider_track-height: var(--space_xxs);
|
|
2159
2157
|
--slider_thumb-size: calc(var(--space_s) * 2);
|
|
@@ -2171,16 +2169,16 @@
|
|
|
2171
2169
|
cursor: pointer;
|
|
2172
2170
|
transition: var(--animation_transition);
|
|
2173
2171
|
}
|
|
2174
|
-
.
|
|
2172
|
+
.bds018-slider:focus-visible {
|
|
2175
2173
|
outline: var(--outline_default);
|
|
2176
2174
|
outline-offset: var(--outline_offset);
|
|
2177
2175
|
border-radius: 999px;
|
|
2178
2176
|
}
|
|
2179
|
-
.
|
|
2177
|
+
.bds018-slider:disabled {
|
|
2180
2178
|
opacity: 0.4;
|
|
2181
2179
|
cursor: not-allowed;
|
|
2182
2180
|
}
|
|
2183
|
-
.
|
|
2181
|
+
.bds018-slider::-webkit-slider-thumb {
|
|
2184
2182
|
appearance: none;
|
|
2185
2183
|
width: var(--slider_thumb-size);
|
|
2186
2184
|
height: var(--slider_thumb-size);
|
|
@@ -2190,7 +2188,7 @@
|
|
|
2190
2188
|
transition: var(--animation_transition);
|
|
2191
2189
|
cursor: pointer;
|
|
2192
2190
|
}
|
|
2193
|
-
.
|
|
2191
|
+
.bds018-slider::-moz-range-thumb {
|
|
2194
2192
|
width: var(--slider_thumb-size);
|
|
2195
2193
|
height: var(--slider_thumb-size);
|
|
2196
2194
|
border: none;
|
|
@@ -2199,7 +2197,7 @@
|
|
|
2199
2197
|
box-shadow: var(--shadow_s);
|
|
2200
2198
|
cursor: pointer;
|
|
2201
2199
|
}
|
|
2202
|
-
.
|
|
2200
|
+
.bds018-sliderError {
|
|
2203
2201
|
background:
|
|
2204
2202
|
linear-gradient(
|
|
2205
2203
|
to right,
|
|
@@ -2208,16 +2206,16 @@
|
|
|
2208
2206
|
var(--color_bg--subtle) var(--slider_fill),
|
|
2209
2207
|
var(--color_bg--subtle) 100%);
|
|
2210
2208
|
}
|
|
2211
|
-
.
|
|
2209
|
+
.bds018-sliderError::-webkit-slider-thumb {
|
|
2212
2210
|
background-color: var(--color_error);
|
|
2213
2211
|
}
|
|
2214
|
-
.
|
|
2212
|
+
.bds018-sliderError::-moz-range-thumb {
|
|
2215
2213
|
background-color: var(--color_error);
|
|
2216
2214
|
}
|
|
2217
2215
|
@media (prefers-reduced-motion: reduce) {
|
|
2218
|
-
.
|
|
2219
|
-
.
|
|
2220
|
-
.
|
|
2216
|
+
.bds018-slider,
|
|
2217
|
+
.bds018-slider::-webkit-slider-thumb,
|
|
2218
|
+
.bds018-slider::-moz-range-thumb {
|
|
2221
2219
|
transition: none;
|
|
2222
2220
|
}
|
|
2223
2221
|
}
|
|
@@ -2225,7 +2223,7 @@
|
|
|
2225
2223
|
|
|
2226
2224
|
/* src/components/interaction/form/Switch/Switch.module.css */
|
|
2227
2225
|
@layer component {
|
|
2228
|
-
.
|
|
2226
|
+
.bds018-switchGroup {
|
|
2229
2227
|
--switch_thumb-size: 1.25em;
|
|
2230
2228
|
--switch_track-pad: var(--space_xxxs);
|
|
2231
2229
|
--switch_track-height: calc(var(--switch_thumb-size) + var(--switch_track-pad) * 2);
|
|
@@ -2237,21 +2235,21 @@
|
|
|
2237
2235
|
display: flex;
|
|
2238
2236
|
flex-direction: column;
|
|
2239
2237
|
}
|
|
2240
|
-
.
|
|
2238
|
+
.bds018-switchGroup.bds018---size_small {
|
|
2241
2239
|
--switch_thumb-size: 1em;
|
|
2242
2240
|
}
|
|
2243
|
-
.
|
|
2241
|
+
.bds018-switchGroup.bds018---size_medium {
|
|
2244
2242
|
--switch_thumb-size: 1.25em;
|
|
2245
2243
|
}
|
|
2246
|
-
.
|
|
2244
|
+
.bds018-switchGroup.bds018---size_large {
|
|
2247
2245
|
--switch_thumb-size: 1.5em;
|
|
2248
2246
|
}
|
|
2249
|
-
.
|
|
2247
|
+
.bds018-inputWrapper {
|
|
2250
2248
|
display: flex;
|
|
2251
2249
|
align-items: center;
|
|
2252
2250
|
gap: var(--space_xs);
|
|
2253
2251
|
}
|
|
2254
|
-
.
|
|
2252
|
+
.bds018-trackWrapper {
|
|
2255
2253
|
position: relative;
|
|
2256
2254
|
display: inline-flex;
|
|
2257
2255
|
align-items: center;
|
|
@@ -2259,7 +2257,7 @@
|
|
|
2259
2257
|
width: var(--switch_track-width);
|
|
2260
2258
|
height: var(--switch_track-height);
|
|
2261
2259
|
}
|
|
2262
|
-
.
|
|
2260
|
+
.bds018-switch {
|
|
2263
2261
|
position: absolute;
|
|
2264
2262
|
inset: 0;
|
|
2265
2263
|
appearance: none;
|
|
@@ -2270,10 +2268,10 @@
|
|
|
2270
2268
|
cursor: pointer;
|
|
2271
2269
|
z-index: 1;
|
|
2272
2270
|
}
|
|
2273
|
-
.
|
|
2271
|
+
.bds018-switch:disabled {
|
|
2274
2272
|
cursor: not-allowed;
|
|
2275
2273
|
}
|
|
2276
|
-
.
|
|
2274
|
+
.bds018-track {
|
|
2277
2275
|
display: inline-flex;
|
|
2278
2276
|
align-items: center;
|
|
2279
2277
|
width: var(--switch_track-width);
|
|
@@ -2286,7 +2284,7 @@
|
|
|
2286
2284
|
outline: 1px solid var(--thumb_bg);
|
|
2287
2285
|
outline-offset: var(--outline_offset);
|
|
2288
2286
|
}
|
|
2289
|
-
.
|
|
2287
|
+
.bds018-thumb {
|
|
2290
2288
|
display: block;
|
|
2291
2289
|
width: var(--switch_thumb-size);
|
|
2292
2290
|
height: var(--switch_thumb-size);
|
|
@@ -2296,28 +2294,28 @@
|
|
|
2296
2294
|
transition: var(--animation_transition);
|
|
2297
2295
|
transform: translateX(0);
|
|
2298
2296
|
}
|
|
2299
|
-
.
|
|
2297
|
+
.bds018-switch.bds018-switchError + .bds018-track {
|
|
2300
2298
|
outline: 1px solid var(--color_error);
|
|
2301
2299
|
}
|
|
2302
|
-
.
|
|
2300
|
+
.bds018-switch:checked + .bds018-track {
|
|
2303
2301
|
background-color: var(--track_active);
|
|
2304
2302
|
outline-color: var(--thumb_bg--active);
|
|
2305
2303
|
}
|
|
2306
|
-
.
|
|
2304
|
+
.bds018-switch:checked + .bds018-track .bds018-thumb {
|
|
2307
2305
|
background-color: var(--thumb_bg--active);
|
|
2308
2306
|
transform: translateX(var(--switch_thumb-size));
|
|
2309
2307
|
}
|
|
2310
|
-
.
|
|
2308
|
+
.bds018-switch:focus-visible + .bds018-track {
|
|
2311
2309
|
outline: var(--outline_default);
|
|
2312
2310
|
outline-offset: var(--outline_offset);
|
|
2313
2311
|
border-radius: 999px;
|
|
2314
2312
|
}
|
|
2315
|
-
.
|
|
2313
|
+
.bds018-switch:disabled + .bds018-track {
|
|
2316
2314
|
opacity: 0.4;
|
|
2317
2315
|
}
|
|
2318
2316
|
@media (prefers-reduced-motion: reduce) {
|
|
2319
|
-
.
|
|
2320
|
-
.
|
|
2317
|
+
.bds018-track,
|
|
2318
|
+
.bds018-thumb {
|
|
2321
2319
|
transition: none;
|
|
2322
2320
|
}
|
|
2323
2321
|
}
|
|
@@ -2325,11 +2323,11 @@
|
|
|
2325
2323
|
|
|
2326
2324
|
/* src/components/interaction/form/Textarea/Textarea.module.css */
|
|
2327
2325
|
@layer component {
|
|
2328
|
-
.
|
|
2326
|
+
.bds018-formGroup {
|
|
2329
2327
|
display: flex;
|
|
2330
2328
|
flex-direction: column;
|
|
2331
2329
|
}
|
|
2332
|
-
.
|
|
2330
|
+
.bds018-textarea {
|
|
2333
2331
|
--textarea_border-color: var(--color_on-bg);
|
|
2334
2332
|
--textarea_focus-ring: 0 0 0 2px rgb(from var(--color_interactive) r g b / 20%);
|
|
2335
2333
|
font-family: var(--font_family--body);
|
|
@@ -2344,69 +2342,69 @@
|
|
|
2344
2342
|
min-height: calc(var(--space_m) * 5);
|
|
2345
2343
|
transition: var(--animation_transition);
|
|
2346
2344
|
}
|
|
2347
|
-
.
|
|
2345
|
+
.bds018-textarea:focus {
|
|
2348
2346
|
--textarea_border-color: var(--color_interactive);
|
|
2349
2347
|
outline: none;
|
|
2350
2348
|
box-shadow: var(--textarea_focus-ring);
|
|
2351
2349
|
}
|
|
2352
|
-
.
|
|
2350
|
+
.bds018-textarea:disabled {
|
|
2353
2351
|
opacity: 0.5;
|
|
2354
2352
|
cursor: not-allowed;
|
|
2355
2353
|
resize: none;
|
|
2356
2354
|
}
|
|
2357
|
-
.
|
|
2355
|
+
.bds018-textareaError {
|
|
2358
2356
|
--textarea_border-color: var(--color_error);
|
|
2359
2357
|
}
|
|
2360
|
-
.
|
|
2358
|
+
.bds018-textareaError:focus {
|
|
2361
2359
|
--textarea_focus-ring: 0 0 0 2px rgb(from var(--color_error) r g b / 20%);
|
|
2362
2360
|
}
|
|
2363
2361
|
}
|
|
2364
2362
|
|
|
2365
2363
|
/* src/components/layout/ButtonGroup/ButtonGroup.module.css */
|
|
2366
2364
|
@layer component {
|
|
2367
|
-
.
|
|
2365
|
+
.bds018-buttonGroup {
|
|
2368
2366
|
container-type: inline-size;
|
|
2369
2367
|
container-name: button-group;
|
|
2370
2368
|
grid-column: var(--grid_span-100);
|
|
2371
2369
|
}
|
|
2372
|
-
.
|
|
2370
|
+
.bds018-buttonGroup .bds018-container {
|
|
2373
2371
|
position: relative;
|
|
2374
2372
|
display: flex;
|
|
2375
2373
|
flex-direction: column-reverse;
|
|
2376
2374
|
gap: var(--space_l);
|
|
2377
2375
|
align-items: center;
|
|
2378
2376
|
}
|
|
2379
|
-
.
|
|
2377
|
+
.bds018-buttonGroup.bds018---variant__card .bds018-container {
|
|
2380
2378
|
align-items: stretch;
|
|
2381
2379
|
}
|
|
2382
|
-
.
|
|
2383
|
-
.
|
|
2380
|
+
.bds018-buttonGroup.bds018---variant__flow .bds018-container,
|
|
2381
|
+
.bds018-buttonGroup.bds018---variant__modal .bds018-container {
|
|
2384
2382
|
align-items: center;
|
|
2385
2383
|
}
|
|
2386
|
-
.
|
|
2384
|
+
.bds018-buttonGroup.bds018---variant__content .bds018-container {
|
|
2387
2385
|
align-items: flex-start;
|
|
2388
2386
|
}
|
|
2389
2387
|
@supports (contain: inline-size) {
|
|
2390
2388
|
@container button-group (min-width: 30rem) {
|
|
2391
|
-
.
|
|
2389
|
+
.bds018-buttonGroup .bds018-container {
|
|
2392
2390
|
flex-direction: row;
|
|
2393
2391
|
justify-content: space-between;
|
|
2394
2392
|
}
|
|
2395
|
-
.
|
|
2396
|
-
.
|
|
2393
|
+
.bds018-buttonGroup.bds018---variant__modal .bds018-container > :first-child:last-child,
|
|
2394
|
+
.bds018-buttonGroup.bds018---variant__flow .bds018-container > :first-child:last-child {
|
|
2397
2395
|
margin-inline-start: auto;
|
|
2398
2396
|
}
|
|
2399
|
-
.
|
|
2397
|
+
.bds018-buttonGroup.bds018---variant__card .bds018-container {
|
|
2400
2398
|
justify-content: center;
|
|
2401
2399
|
}
|
|
2402
|
-
.
|
|
2400
|
+
.bds018-buttonGroup.bds018---variant__modal .bds018-container {
|
|
2403
2401
|
justify-content: flex-end;
|
|
2404
2402
|
}
|
|
2405
|
-
.
|
|
2403
|
+
.bds018-buttonGroup.bds018---variant__content .bds018-container {
|
|
2406
2404
|
justify-content: flex-start;
|
|
2407
2405
|
align-items: center;
|
|
2408
2406
|
}
|
|
2409
|
-
.
|
|
2407
|
+
.bds018-buttonGroup.bds018---variant__grid .bds018-container {
|
|
2410
2408
|
justify-content: center;
|
|
2411
2409
|
}
|
|
2412
2410
|
}
|
|
@@ -2415,59 +2413,59 @@
|
|
|
2415
2413
|
|
|
2416
2414
|
/* src/components/layout/Card/Card.module.css */
|
|
2417
2415
|
@layer component {
|
|
2418
|
-
.
|
|
2416
|
+
.bds018-card {
|
|
2419
2417
|
background-color: var(--card_color, var(--color_bg));
|
|
2420
2418
|
color: var(--card_on-color, var(--color_on-bg));
|
|
2421
2419
|
border-radius: var(--border_radius--m);
|
|
2422
2420
|
transition: all 0.3s ease;
|
|
2423
2421
|
position: relative;
|
|
2424
2422
|
}
|
|
2425
|
-
.
|
|
2423
|
+
.bds018-card.bds018---default {
|
|
2426
2424
|
box-shadow: var(--shadow_s);
|
|
2427
2425
|
}
|
|
2428
|
-
.
|
|
2426
|
+
.bds018-card.bds018---elevated {
|
|
2429
2427
|
box-shadow: var(--shadow_m);
|
|
2430
2428
|
}
|
|
2431
|
-
.
|
|
2429
|
+
.bds018-card.bds018---outlined {
|
|
2432
2430
|
border: 1px solid currentcolor;
|
|
2433
2431
|
box-shadow: var(--shadow_s);
|
|
2434
2432
|
}
|
|
2435
|
-
.
|
|
2433
|
+
.bds018-card.bds018---clickable {
|
|
2436
2434
|
cursor: pointer;
|
|
2437
2435
|
}
|
|
2438
|
-
.
|
|
2436
|
+
.bds018-card.bds018---padding-none {
|
|
2439
2437
|
padding: 0;
|
|
2440
2438
|
}
|
|
2441
|
-
.
|
|
2439
|
+
.bds018-card.bds018---padding-small {
|
|
2442
2440
|
padding: var(--space_s);
|
|
2443
2441
|
}
|
|
2444
|
-
.
|
|
2442
|
+
.bds018-card.bds018---padding-medium {
|
|
2445
2443
|
padding: var(--space_m);
|
|
2446
2444
|
}
|
|
2447
|
-
.
|
|
2445
|
+
.bds018-card.bds018---padding-large {
|
|
2448
2446
|
padding: var(--space_l);
|
|
2449
2447
|
}
|
|
2450
|
-
.
|
|
2448
|
+
.bds018-card.bds018---text-start {
|
|
2451
2449
|
text-align: left;
|
|
2452
2450
|
}
|
|
2453
|
-
.
|
|
2451
|
+
.bds018-card.bds018---text-center {
|
|
2454
2452
|
text-align: center;
|
|
2455
2453
|
}
|
|
2456
|
-
.
|
|
2454
|
+
.bds018-card.bds018---text-end {
|
|
2457
2455
|
text-align: right;
|
|
2458
2456
|
}
|
|
2459
2457
|
@media (hover: hover) and (pointer: fine) {
|
|
2460
|
-
.
|
|
2458
|
+
.bds018-card.bds018---clickable:hover {
|
|
2461
2459
|
transform: translateY(-2px);
|
|
2462
2460
|
box-shadow: var(--shadow_xl);
|
|
2463
2461
|
}
|
|
2464
|
-
.
|
|
2462
|
+
.bds018-card.bds018---default:hover {
|
|
2465
2463
|
box-shadow: var(--shadow_m);
|
|
2466
2464
|
}
|
|
2467
|
-
.
|
|
2465
|
+
.bds018-card.bds018---elevated:hover {
|
|
2468
2466
|
box-shadow: var(--shadow_2xl);
|
|
2469
2467
|
}
|
|
2470
|
-
.
|
|
2468
|
+
.bds018-card.bds018---outlined:hover {
|
|
2471
2469
|
box-shadow: var(--shadow_s);
|
|
2472
2470
|
}
|
|
2473
2471
|
}
|
|
@@ -2475,60 +2473,60 @@
|
|
|
2475
2473
|
|
|
2476
2474
|
/* src/components/layout/SectionHeader/SectionHeader.module.css */
|
|
2477
2475
|
@layer component {
|
|
2478
|
-
.
|
|
2476
|
+
.bds018-sectionHeader {
|
|
2479
2477
|
display: flex;
|
|
2480
2478
|
flex-direction: column;
|
|
2481
2479
|
gap: var(--space_m);
|
|
2482
2480
|
grid-column: var(--grid_span-100);
|
|
2483
2481
|
}
|
|
2484
|
-
.
|
|
2482
|
+
.bds018-title {
|
|
2485
2483
|
color: var(--sectionHeader-title-color, var(--color_on-bg));
|
|
2486
2484
|
margin: 0;
|
|
2487
2485
|
font-family: var(--font_family--body);
|
|
2488
2486
|
}
|
|
2489
|
-
.
|
|
2487
|
+
.bds018-subtitle {
|
|
2490
2488
|
color: var(--sectionHeader_subtitle-color, var(--color_grey--strong));
|
|
2491
2489
|
margin: 0;
|
|
2492
2490
|
font-family: var(--font_family--body);
|
|
2493
2491
|
font-weight: var(--font_weight--medium);
|
|
2494
2492
|
}
|
|
2495
|
-
.
|
|
2493
|
+
.bds018-sectionHeader.bds018---start {
|
|
2496
2494
|
align-items: flex-start;
|
|
2497
2495
|
text-align: left;
|
|
2498
2496
|
}
|
|
2499
|
-
.
|
|
2497
|
+
.bds018-sectionHeader.bds018---center {
|
|
2500
2498
|
align-items: center;
|
|
2501
2499
|
text-align: center;
|
|
2502
2500
|
}
|
|
2503
|
-
.
|
|
2501
|
+
.bds018-sectionHeader.bds018---end {
|
|
2504
2502
|
align-items: flex-end;
|
|
2505
2503
|
text-align: right;
|
|
2506
2504
|
}
|
|
2507
|
-
.
|
|
2505
|
+
.bds018-sectionHeader.bds018---small .bds018-title {
|
|
2508
2506
|
font-size: var(--font_size--heading-1);
|
|
2509
2507
|
line-height: var(--font_line-height--heading);
|
|
2510
2508
|
font-weight: var(--font_weight--bold);
|
|
2511
2509
|
}
|
|
2512
|
-
.
|
|
2510
|
+
.bds018-sectionHeader.bds018---small .bds018-subtitle {
|
|
2513
2511
|
font-size: var(--font_size--body);
|
|
2514
2512
|
line-height: 1.4;
|
|
2515
2513
|
}
|
|
2516
|
-
.
|
|
2514
|
+
.bds018-sectionHeader.bds018---medium .bds018-title {
|
|
2517
2515
|
font-size: var(--font_size--display);
|
|
2518
2516
|
line-height: var(--font_line-height--display);
|
|
2519
2517
|
font-weight: var(--font_weight--bold);
|
|
2520
2518
|
}
|
|
2521
|
-
.
|
|
2519
|
+
.bds018-sectionHeader.bds018---medium .bds018-subtitle {
|
|
2522
2520
|
font-size: var(--font_size--heading-3);
|
|
2523
2521
|
line-height: 1.3;
|
|
2524
2522
|
}
|
|
2525
|
-
.
|
|
2523
|
+
.bds018-sectionHeader.bds018---large .bds018-title {
|
|
2526
2524
|
font-size: var(--font_size--display);
|
|
2527
2525
|
line-height: var(--font_line-height--display);
|
|
2528
2526
|
font-weight: var(--font_weight--bold);
|
|
2529
2527
|
letter-spacing: var(--font_tracking--tight);
|
|
2530
2528
|
}
|
|
2531
|
-
.
|
|
2529
|
+
.bds018-sectionHeader.bds018---large .bds018-subtitle {
|
|
2532
2530
|
font-size: var(--font_size--heading-2);
|
|
2533
2531
|
line-height: 1.3;
|
|
2534
2532
|
font-weight: var(--font_weight--medium);
|
|
@@ -2537,7 +2535,7 @@
|
|
|
2537
2535
|
|
|
2538
2536
|
/* src/components/layout/IconWrapper/IconWrapper.module.css */
|
|
2539
2537
|
@layer component {
|
|
2540
|
-
.
|
|
2538
|
+
.bds018-wrapper {
|
|
2541
2539
|
width: 2em;
|
|
2542
2540
|
height: 2em;
|
|
2543
2541
|
font-size: 3em;
|
|
@@ -2552,7 +2550,7 @@
|
|
|
2552
2550
|
position: relative;
|
|
2553
2551
|
transition: var(--animation_transition);
|
|
2554
2552
|
}
|
|
2555
|
-
.
|
|
2553
|
+
.bds018-wrapper svg {
|
|
2556
2554
|
fill: currentcolor;
|
|
2557
2555
|
}
|
|
2558
2556
|
}
|