@boostdev/design-system-components 0.1.3 → 0.1.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/dist/client.cjs +46 -46
- package/dist/client.css +418 -425
- package/dist/client.js +46 -46
- package/dist/index.cjs +46 -46
- package/dist/index.css +418 -425
- package/dist/index.js +46 -46
- package/package.json +3 -3
- package/src/components/layout/Card/Card.module.css +1 -1
- package/src/components/layout/IconWrapper/IconWrapper.module.css +3 -6
- package/src/components/layout/SectionHeader/SectionHeader.module.css +2 -5
- package/src/components/ui/Separator/Separator.module.css +3 -6
- package/src/components/ui/Typography/Typography.module.css +1 -4
package/dist/index.css
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
/* src/components/ui/Accordion/Accordion.module.css */
|
|
2
2
|
@layer component {
|
|
3
|
-
.accordion {
|
|
3
|
+
.bds014-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
|
-
.item {
|
|
10
|
+
.bds014-item {
|
|
11
11
|
border-bottom: 1px solid var(--color_bg--subtle);
|
|
12
12
|
}
|
|
13
|
-
.item:last-child {
|
|
13
|
+
.bds014-item:last-child {
|
|
14
14
|
border-bottom: none;
|
|
15
15
|
}
|
|
16
|
-
.heading {
|
|
16
|
+
.bds014-heading {
|
|
17
17
|
margin: 0;
|
|
18
18
|
}
|
|
19
|
-
.trigger {
|
|
19
|
+
.bds014-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
|
-
.trigger:disabled {
|
|
34
|
+
.bds014-trigger:disabled {
|
|
35
35
|
opacity: 0.4;
|
|
36
36
|
cursor: not-allowed;
|
|
37
37
|
}
|
|
38
|
-
.trigger:focus-visible {
|
|
38
|
+
.bds014-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
|
-
.trigger:not(:disabled):hover {
|
|
44
|
+
.bds014-trigger:not(:disabled):hover {
|
|
45
45
|
background-color: var(--color_bg--subtle);
|
|
46
46
|
}
|
|
47
47
|
}
|
|
48
|
-
.triggerLabel {
|
|
48
|
+
.bds014-triggerLabel {
|
|
49
49
|
flex: 1;
|
|
50
50
|
text-align: start;
|
|
51
51
|
}
|
|
52
|
-
.chevron {
|
|
52
|
+
.bds014-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
|
-
.item
|
|
58
|
+
.bds014-item.bds014---open .bds014-chevron {
|
|
59
59
|
transform: rotate(180deg);
|
|
60
60
|
}
|
|
61
|
-
.panel {
|
|
61
|
+
.bds014-panel {
|
|
62
62
|
overflow: hidden;
|
|
63
63
|
}
|
|
64
|
-
.panelContent {
|
|
64
|
+
.bds014-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
|
-
.chevron {
|
|
71
|
+
.bds014-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
|
-
.alert {
|
|
79
|
+
.bds014-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
|
+
.bds014---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
|
+
.bds014---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
|
+
.bds014---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
|
+
.bds014---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
|
-
.icon {
|
|
114
|
+
.bds014-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
|
-
.content {
|
|
120
|
+
.bds014-content {
|
|
121
121
|
flex: 1;
|
|
122
122
|
display: flex;
|
|
123
123
|
flex-direction: column;
|
|
124
124
|
gap: var(--space_xxs);
|
|
125
125
|
}
|
|
126
|
-
.title {
|
|
126
|
+
.bds014-title {
|
|
127
127
|
font-weight: var(--font_weight--semibold);
|
|
128
128
|
font-size: var(--font_size--body);
|
|
129
129
|
}
|
|
130
|
-
.dismiss {
|
|
130
|
+
.bds014-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
|
-
.dismiss svg {
|
|
142
|
+
.bds014-dismiss svg {
|
|
143
143
|
width: 1rem;
|
|
144
144
|
height: 1rem;
|
|
145
145
|
}
|
|
146
|
-
.dismiss:focus-visible {
|
|
146
|
+
.bds014-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
|
-
.dismiss:hover {
|
|
151
|
+
.bds014-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
|
-
.avatar {
|
|
159
|
+
.bds014-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
|
-
.avatar
|
|
172
|
+
.bds014-avatar.bds014---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
|
-
.avatar
|
|
177
|
+
.bds014-avatar.bds014---size_small {
|
|
178
178
|
--avatar_size: 2em;
|
|
179
179
|
}
|
|
180
|
-
.avatar
|
|
180
|
+
.bds014-avatar.bds014---size_medium {
|
|
181
181
|
--avatar_size: 3em;
|
|
182
182
|
}
|
|
183
|
-
.avatar
|
|
183
|
+
.bds014-avatar.bds014---size_large {
|
|
184
184
|
--avatar_size: 4.5em;
|
|
185
185
|
}
|
|
186
|
-
.image {
|
|
186
|
+
.bds014-image {
|
|
187
187
|
width: 100%;
|
|
188
188
|
height: 100%;
|
|
189
189
|
object-fit: cover;
|
|
190
190
|
display: block;
|
|
191
191
|
}
|
|
192
|
-
.initials {
|
|
192
|
+
.bds014-initials {
|
|
193
193
|
line-height: 1;
|
|
194
194
|
user-select: none;
|
|
195
195
|
font-size: var(--font_size--body);
|
|
196
196
|
}
|
|
197
|
-
.avatar
|
|
197
|
+
.bds014-avatar.bds014---size_small .bds014-initials {
|
|
198
198
|
font-size: var(--font_size--body--s);
|
|
199
199
|
}
|
|
200
|
-
.avatar
|
|
200
|
+
.bds014-avatar.bds014---size_large .bds014-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
|
-
.badge {
|
|
207
|
+
.bds014-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
|
+
.bds014---variant_primary {
|
|
225
225
|
--badge_bg: var(--color_interactive);
|
|
226
226
|
--badge_text: var(--color_on-interactive);
|
|
227
227
|
}
|
|
228
|
-
|
|
228
|
+
.bds014---variant_secondary {
|
|
229
229
|
--badge_bg: var(--color_bg);
|
|
230
230
|
--badge_text: var(--color_on-bg);
|
|
231
231
|
}
|
|
232
|
-
|
|
232
|
+
.bds014---variant_success {
|
|
233
233
|
--badge_bg: var(--color_success);
|
|
234
234
|
--badge_text: var(--color_on-success);
|
|
235
235
|
}
|
|
236
|
-
|
|
236
|
+
.bds014---variant_error {
|
|
237
237
|
--badge_bg: var(--color_error);
|
|
238
238
|
--badge_text: var(--color_on-error);
|
|
239
239
|
}
|
|
240
|
-
|
|
240
|
+
.bds014---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
|
-
.breadcrumb {
|
|
248
|
+
.bds014-breadcrumb {
|
|
249
249
|
font-size: var(--font_size--body--s);
|
|
250
250
|
}
|
|
251
|
-
.list {
|
|
251
|
+
.bds014-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
|
-
.item {
|
|
260
|
+
.bds014-item {
|
|
261
261
|
display: flex;
|
|
262
262
|
align-items: center;
|
|
263
263
|
gap: var(--space_xxs);
|
|
264
264
|
}
|
|
265
|
-
.link {
|
|
265
|
+
.bds014-link {
|
|
266
266
|
color: var(--color_interactive);
|
|
267
267
|
text-decoration: none;
|
|
268
268
|
transition: var(--animation_transition);
|
|
269
269
|
}
|
|
270
|
-
.link:focus-visible {
|
|
270
|
+
.bds014-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
|
-
.link:hover {
|
|
276
|
+
.bds014-link:hover {
|
|
277
277
|
text-decoration: underline;
|
|
278
278
|
text-underline-offset: 0.2em;
|
|
279
279
|
}
|
|
280
280
|
}
|
|
281
|
-
.separator {
|
|
281
|
+
.bds014-separator {
|
|
282
282
|
color: var(--color_on-bg--subtle);
|
|
283
283
|
user-select: none;
|
|
284
284
|
}
|
|
285
|
-
.current {
|
|
285
|
+
.bds014-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
|
-
.calendar {
|
|
293
|
+
.bds014-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
|
-
.header {
|
|
304
|
+
.bds014-header {
|
|
305
305
|
display: flex;
|
|
306
306
|
align-items: center;
|
|
307
307
|
justify-content: space-between;
|
|
308
308
|
}
|
|
309
|
-
.monthYear {
|
|
309
|
+
.bds014-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
|
-
.navBtn {
|
|
314
|
+
.bds014-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
|
-
.navBtn svg {
|
|
326
|
+
.bds014-navBtn svg {
|
|
327
327
|
width: 1rem;
|
|
328
328
|
height: 1rem;
|
|
329
329
|
}
|
|
330
|
-
.navBtn:focus-visible {
|
|
330
|
+
.bds014-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
|
-
.navBtn:hover {
|
|
335
|
+
.bds014-navBtn:hover {
|
|
336
336
|
background-color: var(--color_bg--subtle);
|
|
337
337
|
}
|
|
338
338
|
}
|
|
339
|
-
.grid {
|
|
339
|
+
.bds014-grid {
|
|
340
340
|
border-collapse: collapse;
|
|
341
341
|
width: 100%;
|
|
342
342
|
table-layout: fixed;
|
|
343
343
|
}
|
|
344
|
-
.weekday {
|
|
344
|
+
.bds014-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
|
-
.empty {
|
|
351
|
+
.bds014-empty {
|
|
352
352
|
padding: 0;
|
|
353
353
|
}
|
|
354
|
-
.day {
|
|
354
|
+
.bds014-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
|
-
.day:focus-visible {
|
|
368
|
+
.bds014-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
|
-
.day:not(.disabled, .selected):hover {
|
|
373
|
+
.bds014-day:not(.bds014-disabled, .bds014-selected):hover {
|
|
374
374
|
background-color: var(--color_bg--subtle);
|
|
375
375
|
}
|
|
376
376
|
}
|
|
377
|
-
.today {
|
|
377
|
+
.bds014-today {
|
|
378
378
|
border: 2px solid var(--color_interactive);
|
|
379
379
|
font-weight: var(--font_weight--semibold);
|
|
380
380
|
}
|
|
381
|
-
.selected {
|
|
381
|
+
.bds014-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
|
-
.disabled {
|
|
386
|
+
.bds014-disabled {
|
|
387
387
|
opacity: 0.35;
|
|
388
388
|
cursor: not-allowed;
|
|
389
389
|
}
|
|
390
390
|
@media (prefers-reduced-motion: reduce) {
|
|
391
|
-
.day {
|
|
391
|
+
.bds014-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
|
-
.carousel {
|
|
399
|
+
.bds014-carousel {
|
|
400
400
|
position: relative;
|
|
401
401
|
display: flex;
|
|
402
402
|
align-items: center;
|
|
403
403
|
gap: var(--space_xs);
|
|
404
404
|
}
|
|
405
|
-
.track {
|
|
405
|
+
.bds014-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
|
-
.track::-webkit-scrollbar {
|
|
414
|
+
.bds014-track::-webkit-scrollbar {
|
|
415
415
|
display: none;
|
|
416
416
|
}
|
|
417
|
-
.slide {
|
|
417
|
+
.bds014-slide {
|
|
418
418
|
scroll-snap-align: start;
|
|
419
419
|
flex-shrink: 0;
|
|
420
420
|
}
|
|
421
|
-
.navBtn {
|
|
421
|
+
.bds014-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
|
-
.navBtn svg {
|
|
437
|
+
.bds014-navBtn svg {
|
|
438
438
|
width: 1.25rem;
|
|
439
439
|
height: 1.25rem;
|
|
440
440
|
}
|
|
441
|
-
.navBtn:focus-visible {
|
|
441
|
+
.bds014-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
|
-
.navBtn:hover {
|
|
446
|
+
.bds014-navBtn:hover {
|
|
447
447
|
background-color: var(--color_bg--subtle);
|
|
448
448
|
}
|
|
449
449
|
}
|
|
450
450
|
@media (prefers-reduced-motion: reduce) {
|
|
451
|
-
.track {
|
|
451
|
+
.bds014-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
|
-
.list {
|
|
459
|
+
.bds014-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
|
-
.group {
|
|
468
|
+
.bds014-group {
|
|
469
469
|
display: flex;
|
|
470
470
|
flex-direction: column;
|
|
471
471
|
gap: var(--space_xxs);
|
|
472
472
|
}
|
|
473
|
-
.term {
|
|
473
|
+
.bds014-term {
|
|
474
474
|
font-weight: var(--font_weight--semibold);
|
|
475
475
|
color: var(--color_on-bg);
|
|
476
476
|
}
|
|
477
|
-
.details {
|
|
477
|
+
.bds014-details {
|
|
478
478
|
margin: 0;
|
|
479
479
|
color: var(--color_on-bg--muted);
|
|
480
480
|
}
|
|
481
|
-
|
|
481
|
+
.bds014---layout_inline .bds014-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
|
+
.bds014---layout_inline .bds014-term {
|
|
488
488
|
grid-column: 1;
|
|
489
489
|
}
|
|
490
|
-
|
|
490
|
+
.bds014---layout_inline .bds014-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
|
-
.link {
|
|
497
|
+
.bds014-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
|
-
.link:focus-visible {
|
|
506
|
+
.bds014-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
|
-
.link:hover {
|
|
512
|
+
.bds014-link:hover {
|
|
513
513
|
--link_color: var(--link_color-hover);
|
|
514
514
|
}
|
|
515
515
|
}
|
|
516
|
-
|
|
516
|
+
.bds014---variant_default {
|
|
517
517
|
--link_color: var(--color_interactive);
|
|
518
518
|
--link_color-hover: var(--color_blue--strong);
|
|
519
519
|
}
|
|
520
|
-
|
|
520
|
+
.bds014---variant_subtle {
|
|
521
521
|
--link_color: var(--color_on-bg);
|
|
522
522
|
--link_color-hover: var(--color_interactive);
|
|
523
523
|
}
|
|
524
|
-
|
|
524
|
+
.bds014---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
|
+
.bds014---variant_standalone:hover {
|
|
535
535
|
text-decoration: underline;
|
|
536
536
|
text-underline-offset: 0.2em;
|
|
537
537
|
}
|
|
538
538
|
}
|
|
539
|
-
.externalLabel {
|
|
539
|
+
.bds014-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
|
-
.loading {
|
|
554
|
+
.bds014-loading {
|
|
555
555
|
display: flex;
|
|
556
556
|
justify-content: center;
|
|
557
557
|
align-items: center;
|
|
558
558
|
}
|
|
559
|
-
.spinner {
|
|
559
|
+
.bds014-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
|
+
.bds014---size_small .bds014-spinner {
|
|
568
568
|
width: 1.5em;
|
|
569
569
|
height: 1.5em;
|
|
570
570
|
border-width: 2px;
|
|
571
571
|
}
|
|
572
|
-
|
|
572
|
+
.bds014---size_large .bds014-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
|
-
.banner {
|
|
589
|
+
.bds014-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
|
+
.bds014---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
|
+
.bds014---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
|
+
.bds014---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
|
+
.bds014---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
|
-
.content {
|
|
624
|
+
.bds014-content {
|
|
625
625
|
flex: 1;
|
|
626
626
|
}
|
|
627
|
-
.action {
|
|
627
|
+
.bds014-action {
|
|
628
628
|
flex-shrink: 0;
|
|
629
629
|
}
|
|
630
|
-
.dismiss {
|
|
630
|
+
.bds014-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
|
-
.dismiss svg {
|
|
642
|
+
.bds014-dismiss svg {
|
|
643
643
|
width: 1rem;
|
|
644
644
|
height: 1rem;
|
|
645
645
|
}
|
|
646
|
-
.dismiss:focus-visible {
|
|
646
|
+
.bds014-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
|
-
.dismiss:hover {
|
|
651
|
+
.bds014-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
|
-
.pagination {
|
|
659
|
+
.bds014-pagination {
|
|
660
660
|
display: flex;
|
|
661
661
|
justify-content: center;
|
|
662
662
|
}
|
|
663
|
-
.list {
|
|
663
|
+
.bds014-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
|
-
.button {
|
|
671
|
+
.bds014-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
|
-
.button:disabled {
|
|
693
|
+
.bds014-button:disabled {
|
|
694
694
|
opacity: 0.4;
|
|
695
695
|
cursor: not-allowed;
|
|
696
696
|
}
|
|
697
|
-
.button:focus-visible {
|
|
697
|
+
.bds014-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
|
-
.button:not(:disabled,
|
|
702
|
+
.bds014-button:not(:disabled, .bds014---active):hover {
|
|
703
703
|
--btn_bg: var(--color_bg--subtle);
|
|
704
704
|
--btn_color: var(--color_interactive);
|
|
705
705
|
}
|
|
706
706
|
}
|
|
707
|
-
.button
|
|
707
|
+
.bds014-button.bds014---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
|
-
.button
|
|
712
|
+
.bds014-button.bds014---nav svg {
|
|
713
713
|
width: 1rem;
|
|
714
714
|
height: 1rem;
|
|
715
715
|
}
|
|
716
|
-
.ellipsis {
|
|
716
|
+
.bds014-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
|
-
.container {
|
|
730
|
+
.bds014-container {
|
|
731
731
|
display: flex;
|
|
732
732
|
flex-direction: column;
|
|
733
733
|
gap: var(--space_xxs);
|
|
734
734
|
width: 100%;
|
|
735
735
|
}
|
|
736
|
-
.labelRow {
|
|
736
|
+
.bds014-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
|
-
.label {
|
|
743
|
+
.bds014-label {
|
|
744
744
|
font-weight: var(--font_weight--semibold);
|
|
745
745
|
}
|
|
746
|
-
.value {
|
|
746
|
+
.bds014-value {
|
|
747
747
|
font-variant-numeric: tabular-nums;
|
|
748
748
|
}
|
|
749
|
-
.track {
|
|
749
|
+
.bds014-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
|
-
.track
|
|
757
|
+
.bds014-track.bds014---size_small {
|
|
758
758
|
--progress_height: var(--space_xxs);
|
|
759
759
|
}
|
|
760
|
-
.track
|
|
760
|
+
.bds014-track.bds014---size_medium {
|
|
761
761
|
--progress_height: var(--space_xs);
|
|
762
762
|
}
|
|
763
|
-
.track
|
|
763
|
+
.bds014-track.bds014---size_large {
|
|
764
764
|
--progress_height: var(--space_s);
|
|
765
765
|
}
|
|
766
|
-
.fill {
|
|
766
|
+
.bds014-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
|
-
.fill {
|
|
773
|
+
.bds014-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
|
-
.wrapper {
|
|
781
|
+
.bds014-wrapper {
|
|
782
782
|
position: relative;
|
|
783
783
|
display: inline-flex;
|
|
784
784
|
align-items: center;
|
|
785
785
|
justify-content: center;
|
|
786
786
|
}
|
|
787
|
-
.svg {
|
|
787
|
+
.bds014-svg {
|
|
788
788
|
display: block;
|
|
789
789
|
}
|
|
790
|
-
.track {
|
|
790
|
+
.bds014-track {
|
|
791
791
|
stroke: var(--color_bg--subtle);
|
|
792
792
|
}
|
|
793
|
-
.fill {
|
|
793
|
+
.bds014-fill {
|
|
794
794
|
stroke: var(--color_green);
|
|
795
795
|
transition: stroke-dashoffset var(--animation_transition-duration) var(--animation_easing);
|
|
796
796
|
}
|
|
797
|
-
.value {
|
|
797
|
+
.bds014-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
|
+
.bds014---size_small .bds014-value {
|
|
806
806
|
font-size: 0.5rem;
|
|
807
807
|
}
|
|
808
|
-
|
|
808
|
+
.bds014---size_medium .bds014-value {
|
|
809
809
|
font-size: var(--font_size--body--s);
|
|
810
810
|
}
|
|
811
|
-
|
|
811
|
+
.bds014---size_large .bds014-value {
|
|
812
812
|
font-size: var(--font_size--body);
|
|
813
813
|
}
|
|
814
814
|
@media (prefers-reduced-motion: reduce) {
|
|
815
|
-
.fill {
|
|
815
|
+
.bds014-fill {
|
|
816
816
|
transition: none;
|
|
817
817
|
}
|
|
818
818
|
}
|
|
@@ -820,21 +820,19 @@
|
|
|
820
820
|
|
|
821
821
|
/* src/components/ui/Separator/Separator.module.css */
|
|
822
822
|
@layer component {
|
|
823
|
-
.separator {
|
|
824
|
-
--separator_color: var(--color_border);
|
|
825
|
-
--separator_thickness: 1px;
|
|
823
|
+
.bds014-separator {
|
|
826
824
|
border: none;
|
|
827
|
-
background-color: var(--separator_color);
|
|
825
|
+
background-color: var(--separator_color, var(--color_border));
|
|
828
826
|
}
|
|
829
|
-
.separator
|
|
827
|
+
.bds014-separator.bds014---horizontal {
|
|
830
828
|
display: block;
|
|
831
829
|
width: 100%;
|
|
832
|
-
height: var(--separator_thickness);
|
|
830
|
+
height: var(--separator_thickness, 1px);
|
|
833
831
|
margin-block: var(--space_m);
|
|
834
832
|
}
|
|
835
|
-
.separator
|
|
833
|
+
.bds014-separator.bds014---vertical {
|
|
836
834
|
display: inline-block;
|
|
837
|
-
width: var(--separator_thickness);
|
|
835
|
+
width: var(--separator_thickness, 1px);
|
|
838
836
|
align-self: stretch;
|
|
839
837
|
margin-inline: var(--space_m);
|
|
840
838
|
}
|
|
@@ -842,7 +840,7 @@
|
|
|
842
840
|
|
|
843
841
|
/* src/components/ui/Skeleton/Skeleton.module.css */
|
|
844
842
|
@layer component {
|
|
845
|
-
.skeleton {
|
|
843
|
+
.bds014-skeleton {
|
|
846
844
|
background:
|
|
847
845
|
linear-gradient(
|
|
848
846
|
90deg,
|
|
@@ -866,7 +864,7 @@
|
|
|
866
864
|
|
|
867
865
|
/* src/components/ui/SkipLink/SkipLink.module.css */
|
|
868
866
|
@layer component {
|
|
869
|
-
.skipLink {
|
|
867
|
+
.bds014-skipLink {
|
|
870
868
|
position: absolute;
|
|
871
869
|
inset-block-start: var(--space_s);
|
|
872
870
|
inset-inline-start: var(--space_s);
|
|
@@ -882,13 +880,13 @@
|
|
|
882
880
|
transform: translateY(-200%);
|
|
883
881
|
transition: transform var(--animation_transition-duration) var(--animation_easing);
|
|
884
882
|
}
|
|
885
|
-
.skipLink:focus-visible {
|
|
883
|
+
.bds014-skipLink:focus-visible {
|
|
886
884
|
transform: translateY(0);
|
|
887
885
|
outline: var(--outline_default);
|
|
888
886
|
outline-offset: var(--outline_offset);
|
|
889
887
|
}
|
|
890
888
|
@media (prefers-reduced-motion: reduce) {
|
|
891
|
-
.skipLink {
|
|
889
|
+
.bds014-skipLink {
|
|
892
890
|
transition: none;
|
|
893
891
|
}
|
|
894
892
|
}
|
|
@@ -896,29 +894,29 @@
|
|
|
896
894
|
|
|
897
895
|
/* src/components/ui/Table/Table.module.css */
|
|
898
896
|
@layer component {
|
|
899
|
-
.wrapper {
|
|
897
|
+
.bds014-wrapper {
|
|
900
898
|
width: 100%;
|
|
901
899
|
overflow-x: auto;
|
|
902
900
|
border-radius: var(--border_radius--s);
|
|
903
901
|
border: 1px solid var(--color_bg--subtle);
|
|
904
902
|
}
|
|
905
|
-
.table {
|
|
903
|
+
.bds014-table {
|
|
906
904
|
width: 100%;
|
|
907
905
|
border-collapse: collapse;
|
|
908
906
|
font-size: var(--font_size--body);
|
|
909
907
|
font-family: var(--font_family--body);
|
|
910
908
|
}
|
|
911
|
-
.caption {
|
|
909
|
+
.bds014-caption {
|
|
912
910
|
caption-side: top;
|
|
913
911
|
text-align: start;
|
|
914
912
|
padding: var(--space_s) var(--space_m);
|
|
915
913
|
font-weight: var(--font_weight--semibold);
|
|
916
914
|
color: var(--color_on-bg);
|
|
917
915
|
}
|
|
918
|
-
.thead {
|
|
916
|
+
.bds014-thead {
|
|
919
917
|
background-color: var(--color_bg--subtle);
|
|
920
918
|
}
|
|
921
|
-
.th {
|
|
919
|
+
.bds014-th {
|
|
922
920
|
padding: var(--space_s) var(--space_m);
|
|
923
921
|
text-align: start;
|
|
924
922
|
font-weight: var(--font_weight--semibold);
|
|
@@ -927,10 +925,10 @@
|
|
|
927
925
|
white-space: nowrap;
|
|
928
926
|
border-bottom: 1px solid var(--color_bg--subtle);
|
|
929
927
|
}
|
|
930
|
-
.th
|
|
928
|
+
.bds014-th.bds014---sortable {
|
|
931
929
|
padding: 0;
|
|
932
930
|
}
|
|
933
|
-
.sortButton {
|
|
931
|
+
.bds014-sortButton {
|
|
934
932
|
all: unset;
|
|
935
933
|
display: flex;
|
|
936
934
|
align-items: center;
|
|
@@ -944,47 +942,47 @@
|
|
|
944
942
|
transition: var(--animation_transition);
|
|
945
943
|
box-sizing: border-box;
|
|
946
944
|
}
|
|
947
|
-
.sortButton:focus-visible {
|
|
945
|
+
.bds014-sortButton:focus-visible {
|
|
948
946
|
outline: var(--outline_default);
|
|
949
947
|
outline-offset: calc(var(--outline_offset) * -1);
|
|
950
948
|
}
|
|
951
949
|
@media (hover: hover) and (pointer: fine) {
|
|
952
|
-
.sortButton:hover {
|
|
950
|
+
.bds014-sortButton:hover {
|
|
953
951
|
color: var(--color_on-bg);
|
|
954
952
|
}
|
|
955
953
|
}
|
|
956
|
-
.sortIcon {
|
|
954
|
+
.bds014-sortIcon {
|
|
957
955
|
width: 1rem;
|
|
958
956
|
height: 1rem;
|
|
959
957
|
opacity: 0.4;
|
|
960
958
|
transition: transform var(--animation_transition-duration) var(--animation_easing), opacity var(--animation_transition-duration) var(--animation_easing);
|
|
961
959
|
}
|
|
962
|
-
.sortIcon
|
|
960
|
+
.bds014-sortIcon.bds014---sort-active {
|
|
963
961
|
opacity: 1;
|
|
964
962
|
color: var(--color_interactive);
|
|
965
963
|
}
|
|
966
|
-
.sortIcon
|
|
964
|
+
.bds014-sortIcon.bds014---sort-desc {
|
|
967
965
|
transform: rotate(180deg);
|
|
968
966
|
}
|
|
969
|
-
.tbody .tr {
|
|
967
|
+
.bds014-tbody .bds014-tr {
|
|
970
968
|
border-bottom: 1px solid var(--color_bg--subtle);
|
|
971
969
|
transition: var(--animation_transition);
|
|
972
970
|
}
|
|
973
|
-
.tbody .tr:last-child {
|
|
971
|
+
.bds014-tbody .bds014-tr:last-child {
|
|
974
972
|
border-bottom: none;
|
|
975
973
|
}
|
|
976
974
|
@media (hover: hover) and (pointer: fine) {
|
|
977
|
-
.tbody .tr:hover {
|
|
975
|
+
.bds014-tbody .bds014-tr:hover {
|
|
978
976
|
background-color: var(--color_bg--subtle);
|
|
979
977
|
}
|
|
980
978
|
}
|
|
981
|
-
.td {
|
|
979
|
+
.bds014-td {
|
|
982
980
|
padding: var(--space_s) var(--space_m);
|
|
983
981
|
color: var(--color_on-bg);
|
|
984
982
|
vertical-align: middle;
|
|
985
983
|
}
|
|
986
984
|
@media (prefers-reduced-motion: reduce) {
|
|
987
|
-
.sortIcon {
|
|
985
|
+
.bds014-sortIcon {
|
|
988
986
|
transition: none;
|
|
989
987
|
}
|
|
990
988
|
}
|
|
@@ -992,16 +990,16 @@
|
|
|
992
990
|
|
|
993
991
|
/* src/components/ui/Tabs/Tabs.module.css */
|
|
994
992
|
@layer component {
|
|
995
|
-
.tabs {
|
|
993
|
+
.bds014-tabs {
|
|
996
994
|
display: flex;
|
|
997
995
|
flex-direction: column;
|
|
998
996
|
}
|
|
999
|
-
.tabList {
|
|
997
|
+
.bds014-tabList {
|
|
1000
998
|
display: flex;
|
|
1001
999
|
border-bottom: 1px solid var(--color_bg--subtle);
|
|
1002
1000
|
gap: var(--space_xxs);
|
|
1003
1001
|
}
|
|
1004
|
-
.tab {
|
|
1002
|
+
.bds014-tab {
|
|
1005
1003
|
--tab_color: var(--color_on-bg);
|
|
1006
1004
|
--tab_border-color: transparent;
|
|
1007
1005
|
all: unset;
|
|
@@ -1017,28 +1015,28 @@
|
|
|
1017
1015
|
cursor: pointer;
|
|
1018
1016
|
transition: var(--animation_transition);
|
|
1019
1017
|
}
|
|
1020
|
-
.tab
|
|
1018
|
+
.bds014-tab.bds014---active {
|
|
1021
1019
|
--tab_color: var(--color_interactive);
|
|
1022
1020
|
--tab_border-color: var(--color_interactive);
|
|
1023
1021
|
}
|
|
1024
|
-
.tab:disabled {
|
|
1022
|
+
.bds014-tab:disabled {
|
|
1025
1023
|
opacity: 0.4;
|
|
1026
1024
|
cursor: not-allowed;
|
|
1027
1025
|
}
|
|
1028
|
-
.tab:focus-visible {
|
|
1026
|
+
.bds014-tab:focus-visible {
|
|
1029
1027
|
outline: var(--outline_default);
|
|
1030
1028
|
outline-offset: var(--outline_offset);
|
|
1031
1029
|
border-radius: var(--border_radius--xs);
|
|
1032
1030
|
}
|
|
1033
1031
|
@media (hover: hover) and (pointer: fine) {
|
|
1034
|
-
.tab:not(:disabled,
|
|
1032
|
+
.bds014-tab:not(:disabled, .bds014---active):hover {
|
|
1035
1033
|
--tab_color: var(--color_interactive);
|
|
1036
1034
|
}
|
|
1037
1035
|
}
|
|
1038
|
-
.panel {
|
|
1036
|
+
.bds014-panel {
|
|
1039
1037
|
padding-block-start: var(--space_m);
|
|
1040
1038
|
}
|
|
1041
|
-
.panel:focus-visible {
|
|
1039
|
+
.bds014-panel:focus-visible {
|
|
1042
1040
|
outline: var(--outline_default);
|
|
1043
1041
|
outline-offset: var(--outline_offset);
|
|
1044
1042
|
}
|
|
@@ -1046,12 +1044,12 @@
|
|
|
1046
1044
|
|
|
1047
1045
|
/* src/components/ui/Tooltip/Tooltip.module.css */
|
|
1048
1046
|
@layer component {
|
|
1049
|
-
.wrapper {
|
|
1047
|
+
.bds014-wrapper {
|
|
1050
1048
|
position: relative;
|
|
1051
1049
|
display: inline-flex;
|
|
1052
1050
|
align-items: center;
|
|
1053
1051
|
}
|
|
1054
|
-
.tooltip {
|
|
1052
|
+
.bds014-tooltip {
|
|
1055
1053
|
--tooltip_bg: var(--color_on-bg);
|
|
1056
1054
|
--tooltip_text: var(--color_bg);
|
|
1057
1055
|
position: absolute;
|
|
@@ -1068,33 +1066,33 @@
|
|
|
1068
1066
|
opacity: 0;
|
|
1069
1067
|
transition: opacity var(--animation_transition-duration) var(--animation_easing);
|
|
1070
1068
|
}
|
|
1071
|
-
.wrapper:hover .tooltip,
|
|
1072
|
-
.wrapper:focus-within .tooltip {
|
|
1069
|
+
.bds014-wrapper:hover .bds014-tooltip,
|
|
1070
|
+
.bds014-wrapper:focus-within .bds014-tooltip {
|
|
1073
1071
|
visibility: visible;
|
|
1074
1072
|
opacity: 1;
|
|
1075
1073
|
}
|
|
1076
|
-
|
|
1074
|
+
.bds014---placement_top {
|
|
1077
1075
|
bottom: calc(100% + var(--space_xs));
|
|
1078
1076
|
left: 50%;
|
|
1079
1077
|
transform: translateX(-50%);
|
|
1080
1078
|
}
|
|
1081
|
-
|
|
1079
|
+
.bds014---placement_bottom {
|
|
1082
1080
|
top: calc(100% + var(--space_xs));
|
|
1083
1081
|
left: 50%;
|
|
1084
1082
|
transform: translateX(-50%);
|
|
1085
1083
|
}
|
|
1086
|
-
|
|
1084
|
+
.bds014---placement_left {
|
|
1087
1085
|
right: calc(100% + var(--space_xs));
|
|
1088
1086
|
top: 50%;
|
|
1089
1087
|
transform: translateY(-50%);
|
|
1090
1088
|
}
|
|
1091
|
-
|
|
1089
|
+
.bds014---placement_right {
|
|
1092
1090
|
left: calc(100% + var(--space_xs));
|
|
1093
1091
|
top: 50%;
|
|
1094
1092
|
transform: translateY(-50%);
|
|
1095
1093
|
}
|
|
1096
1094
|
@media (prefers-reduced-motion: reduce) {
|
|
1097
|
-
.tooltip {
|
|
1095
|
+
.bds014-tooltip {
|
|
1098
1096
|
transition: none;
|
|
1099
1097
|
}
|
|
1100
1098
|
}
|
|
@@ -1102,35 +1100,34 @@
|
|
|
1102
1100
|
|
|
1103
1101
|
/* src/components/ui/Typography/Typography.module.css */
|
|
1104
1102
|
@layer component {
|
|
1105
|
-
.typography {
|
|
1106
|
-
--typography_color: var(--color_on-bg);
|
|
1103
|
+
.bds014-typography {
|
|
1107
1104
|
margin: 0;
|
|
1108
1105
|
font-family: var(--font_family--body);
|
|
1109
|
-
color: var(--typography_color);
|
|
1106
|
+
color: var(--typography_color, var(--color_on-bg));
|
|
1110
1107
|
}
|
|
1111
|
-
|
|
1108
|
+
.bds014---h1 {
|
|
1112
1109
|
font-family: var(--font_family--heading);
|
|
1113
1110
|
font-size: var(--font_size--heading-1);
|
|
1114
1111
|
font-weight: var(--font_weight--bold);
|
|
1115
1112
|
line-height: var(--font_line-height--heading);
|
|
1116
1113
|
}
|
|
1117
|
-
|
|
1114
|
+
.bds014---h2 {
|
|
1118
1115
|
font-family: var(--font_family--heading);
|
|
1119
1116
|
font-size: var(--font_size--heading-2);
|
|
1120
1117
|
font-weight: var(--font_weight--semibold);
|
|
1121
1118
|
line-height: var(--font_line-height--heading);
|
|
1122
1119
|
}
|
|
1123
|
-
|
|
1120
|
+
.bds014---h3 {
|
|
1124
1121
|
font-family: var(--font_family--heading);
|
|
1125
1122
|
font-size: var(--font_size--heading-3);
|
|
1126
1123
|
font-weight: var(--font_weight--semibold);
|
|
1127
1124
|
line-height: var(--font_line-height--heading);
|
|
1128
1125
|
}
|
|
1129
|
-
|
|
1126
|
+
.bds014---body {
|
|
1130
1127
|
font-size: var(--font_size--body);
|
|
1131
1128
|
line-height: var(--font_line-height--body);
|
|
1132
1129
|
}
|
|
1133
|
-
|
|
1130
|
+
.bds014---body_s {
|
|
1134
1131
|
font-size: var(--font_size--body--s);
|
|
1135
1132
|
line-height: var(--font_line-height--body);
|
|
1136
1133
|
}
|
|
@@ -1152,8 +1149,8 @@
|
|
|
1152
1149
|
}
|
|
1153
1150
|
}
|
|
1154
1151
|
@layer component {
|
|
1155
|
-
.button,
|
|
1156
|
-
.button[href] {
|
|
1152
|
+
.bds014-button,
|
|
1153
|
+
.bds014-button[href] {
|
|
1157
1154
|
--button_height: 3em;
|
|
1158
1155
|
--button_font-size: inherit;
|
|
1159
1156
|
--button_bg: var(--color_cta);
|
|
@@ -1180,69 +1177,69 @@
|
|
|
1180
1177
|
border: 2px solid var(--button_border-color);
|
|
1181
1178
|
transition: var(--animation_transition);
|
|
1182
1179
|
}
|
|
1183
|
-
.button
|
|
1180
|
+
.bds014-button.bds014---primary {
|
|
1184
1181
|
--button_bg: var(--color_cta);
|
|
1185
1182
|
--button_text: var(--color_on-cta);
|
|
1186
1183
|
--button_border-color: transparent;
|
|
1187
1184
|
}
|
|
1188
|
-
.button
|
|
1185
|
+
.bds014-button.bds014---secondary {
|
|
1189
1186
|
--button_bg: var(--color_bg);
|
|
1190
1187
|
--button_text: var(--color_on-bg);
|
|
1191
1188
|
--button_border-color: var(--button_text);
|
|
1192
1189
|
}
|
|
1193
|
-
.button
|
|
1190
|
+
.bds014-button.bds014---size_small {
|
|
1194
1191
|
--button_height: 2.25em;
|
|
1195
1192
|
--button_font-size: var(--font_size--body--s);
|
|
1196
1193
|
padding-inline: var(--space_m);
|
|
1197
1194
|
}
|
|
1198
|
-
.button
|
|
1195
|
+
.bds014-button.bds014---size_medium {
|
|
1199
1196
|
--button_height: 3em;
|
|
1200
1197
|
padding-inline: var(--space_l);
|
|
1201
1198
|
}
|
|
1202
|
-
.button
|
|
1199
|
+
.bds014-button.bds014---size_large {
|
|
1203
1200
|
--button_height: 3.75em;
|
|
1204
1201
|
--button_font-size: var(--font_size--heading-3);
|
|
1205
1202
|
padding-inline: var(--space_xl);
|
|
1206
1203
|
}
|
|
1207
|
-
.button
|
|
1204
|
+
.bds014-button.bds014---hasPulse {
|
|
1208
1205
|
animation: pulse 3s infinite;
|
|
1209
1206
|
}
|
|
1210
|
-
.button[href] {
|
|
1207
|
+
.bds014-button[href] {
|
|
1211
1208
|
text-decoration: none;
|
|
1212
1209
|
}
|
|
1213
|
-
.button svg {
|
|
1210
|
+
.bds014-button svg {
|
|
1214
1211
|
--icon__stroke: currentcolor;
|
|
1215
1212
|
fill: currentcolor;
|
|
1216
1213
|
color: currentcolor;
|
|
1217
1214
|
flex-shrink: 0;
|
|
1218
1215
|
}
|
|
1219
|
-
.prefix {
|
|
1216
|
+
.bds014-prefix {
|
|
1220
1217
|
display: flex;
|
|
1221
1218
|
align-items: center;
|
|
1222
1219
|
margin-inline-start: calc(var(--space_s) * -1);
|
|
1223
1220
|
transition: var(--animation_transition);
|
|
1224
1221
|
}
|
|
1225
|
-
.suffix {
|
|
1222
|
+
.bds014-suffix {
|
|
1226
1223
|
display: flex;
|
|
1227
1224
|
align-items: center;
|
|
1228
1225
|
margin-inline-end: calc(var(--space_s) * -1);
|
|
1229
1226
|
transition: var(--animation_transition);
|
|
1230
1227
|
}
|
|
1231
1228
|
@media (hover: hover) and (pointer: fine) {
|
|
1232
|
-
.button:hover .prefix svg {
|
|
1229
|
+
.bds014-button:hover .bds014-prefix svg {
|
|
1233
1230
|
animation: 2s infinite fadeZoom ease-out;
|
|
1234
1231
|
}
|
|
1235
|
-
.button:hover .suffix svg {
|
|
1232
|
+
.bds014-button:hover .bds014-suffix svg {
|
|
1236
1233
|
animation: 2s infinite fadeZoom ease-out;
|
|
1237
1234
|
}
|
|
1238
1235
|
}
|
|
1239
|
-
.button:focus-visible {
|
|
1236
|
+
.bds014-button:focus-visible {
|
|
1240
1237
|
outline-offset: var(--outline_offset);
|
|
1241
1238
|
outline: var(--outline_default);
|
|
1242
1239
|
border-radius: var(--border_radius--s);
|
|
1243
1240
|
}
|
|
1244
1241
|
@media (hover: hover) and (pointer: fine) {
|
|
1245
|
-
.button:hover {
|
|
1242
|
+
.bds014-button:hover {
|
|
1246
1243
|
--button_bg: var(--color_bg);
|
|
1247
1244
|
--button_text: var(--color_interactive);
|
|
1248
1245
|
--button_pulse-color: var(--color_interactive);
|
|
@@ -1253,7 +1250,7 @@
|
|
|
1253
1250
|
|
|
1254
1251
|
/* src/components/interaction/Command/Command.module.css */
|
|
1255
1252
|
@layer component {
|
|
1256
|
-
.dialog {
|
|
1253
|
+
.bds014-dialog {
|
|
1257
1254
|
padding: 0;
|
|
1258
1255
|
border: none;
|
|
1259
1256
|
border-radius: var(--border_radius--m);
|
|
@@ -1263,10 +1260,10 @@
|
|
|
1263
1260
|
overflow: visible;
|
|
1264
1261
|
margin-block-start: 10vh;
|
|
1265
1262
|
}
|
|
1266
|
-
.dialog::backdrop {
|
|
1263
|
+
.bds014-dialog::backdrop {
|
|
1267
1264
|
background: rgb(0 0 0 / 50%);
|
|
1268
1265
|
}
|
|
1269
|
-
.palette {
|
|
1266
|
+
.bds014-palette {
|
|
1270
1267
|
display: flex;
|
|
1271
1268
|
flex-direction: column;
|
|
1272
1269
|
background-color: var(--color_bg);
|
|
@@ -1276,7 +1273,7 @@
|
|
|
1276
1273
|
max-height: 70vh;
|
|
1277
1274
|
border: 1px solid var(--color_bg--subtle);
|
|
1278
1275
|
}
|
|
1279
|
-
.searchRow {
|
|
1276
|
+
.bds014-searchRow {
|
|
1280
1277
|
display: flex;
|
|
1281
1278
|
align-items: center;
|
|
1282
1279
|
gap: var(--space_xs);
|
|
@@ -1284,13 +1281,13 @@
|
|
|
1284
1281
|
border-block-end: 1px solid var(--color_bg--subtle);
|
|
1285
1282
|
flex-shrink: 0;
|
|
1286
1283
|
}
|
|
1287
|
-
.searchIcon {
|
|
1284
|
+
.bds014-searchIcon {
|
|
1288
1285
|
width: 1.25rem;
|
|
1289
1286
|
height: 1.25rem;
|
|
1290
1287
|
color: var(--color_on-bg--muted);
|
|
1291
1288
|
flex-shrink: 0;
|
|
1292
1289
|
}
|
|
1293
|
-
.search {
|
|
1290
|
+
.bds014-search {
|
|
1294
1291
|
flex: 1;
|
|
1295
1292
|
border: none;
|
|
1296
1293
|
outline: none;
|
|
@@ -1300,10 +1297,10 @@
|
|
|
1300
1297
|
background: transparent;
|
|
1301
1298
|
min-width: 0;
|
|
1302
1299
|
}
|
|
1303
|
-
.search::placeholder {
|
|
1300
|
+
.bds014-search::placeholder {
|
|
1304
1301
|
color: var(--color_on-bg--muted);
|
|
1305
1302
|
}
|
|
1306
|
-
.escHint {
|
|
1303
|
+
.bds014-escHint {
|
|
1307
1304
|
font-size: var(--font_size--body--s);
|
|
1308
1305
|
color: var(--color_on-bg--muted);
|
|
1309
1306
|
border: 1px solid var(--color_on-bg--muted);
|
|
@@ -1311,18 +1308,18 @@
|
|
|
1311
1308
|
padding: 0.1em 0.4em;
|
|
1312
1309
|
flex-shrink: 0;
|
|
1313
1310
|
}
|
|
1314
|
-
.list {
|
|
1311
|
+
.bds014-list {
|
|
1315
1312
|
overflow-y: auto;
|
|
1316
1313
|
list-style: none;
|
|
1317
1314
|
margin: 0;
|
|
1318
1315
|
padding: var(--space_xs) 0;
|
|
1319
1316
|
}
|
|
1320
|
-
.groupList {
|
|
1317
|
+
.bds014-groupList {
|
|
1321
1318
|
list-style: none;
|
|
1322
1319
|
margin: 0;
|
|
1323
1320
|
padding: 0;
|
|
1324
1321
|
}
|
|
1325
|
-
.group {
|
|
1322
|
+
.bds014-group {
|
|
1326
1323
|
padding: var(--space_xs) var(--space_m);
|
|
1327
1324
|
font-size: var(--font_size--body--s);
|
|
1328
1325
|
font-weight: var(--font_weight--semibold);
|
|
@@ -1330,7 +1327,7 @@
|
|
|
1330
1327
|
text-transform: uppercase;
|
|
1331
1328
|
letter-spacing: 0.05em;
|
|
1332
1329
|
}
|
|
1333
|
-
.item {
|
|
1330
|
+
.bds014-item {
|
|
1334
1331
|
display: flex;
|
|
1335
1332
|
align-items: center;
|
|
1336
1333
|
gap: var(--space_s);
|
|
@@ -1338,26 +1335,26 @@
|
|
|
1338
1335
|
cursor: pointer;
|
|
1339
1336
|
transition: background-color var(--animation_transition-duration) var(--animation_easing);
|
|
1340
1337
|
}
|
|
1341
|
-
.itemActive {
|
|
1338
|
+
.bds014-itemActive {
|
|
1342
1339
|
background-color: var(--color_bg--subtle);
|
|
1343
1340
|
}
|
|
1344
|
-
.itemLabel {
|
|
1341
|
+
.bds014-itemLabel {
|
|
1345
1342
|
flex: 1;
|
|
1346
1343
|
font-size: var(--font_size--body);
|
|
1347
1344
|
color: var(--color_on-bg);
|
|
1348
1345
|
}
|
|
1349
|
-
.itemDesc {
|
|
1346
|
+
.bds014-itemDesc {
|
|
1350
1347
|
font-size: var(--font_size--body--s);
|
|
1351
1348
|
color: var(--color_on-bg--muted);
|
|
1352
1349
|
}
|
|
1353
|
-
.shortcut {
|
|
1350
|
+
.bds014-shortcut {
|
|
1354
1351
|
font-size: var(--font_size--body--s);
|
|
1355
1352
|
color: var(--color_on-bg--muted);
|
|
1356
1353
|
border: 1px solid var(--color_on-bg--muted);
|
|
1357
1354
|
border-radius: var(--border_radius--xs);
|
|
1358
1355
|
padding: 0.1em 0.4em;
|
|
1359
1356
|
}
|
|
1360
|
-
.empty {
|
|
1357
|
+
.bds014-empty {
|
|
1361
1358
|
padding: var(--space_l) var(--space_m);
|
|
1362
1359
|
text-align: center;
|
|
1363
1360
|
color: var(--color_on-bg--muted);
|
|
@@ -1367,7 +1364,7 @@
|
|
|
1367
1364
|
|
|
1368
1365
|
/* src/components/interaction/Dialog/Dialog.module.css */
|
|
1369
1366
|
@layer component {
|
|
1370
|
-
.dialog {
|
|
1367
|
+
.bds014-dialog {
|
|
1371
1368
|
display: grid;
|
|
1372
1369
|
gap: var(--grid_gap);
|
|
1373
1370
|
font-size: var(--font_size--body--s);
|
|
@@ -1379,12 +1376,12 @@
|
|
|
1379
1376
|
overflow: visible;
|
|
1380
1377
|
max-width: 90svw;
|
|
1381
1378
|
}
|
|
1382
|
-
.closeForm {
|
|
1379
|
+
.bds014-closeForm {
|
|
1383
1380
|
position: absolute;
|
|
1384
1381
|
inset-block-start: -1em;
|
|
1385
1382
|
inset-inline-end: -1em;
|
|
1386
1383
|
}
|
|
1387
|
-
.closeButton {
|
|
1384
|
+
.bds014-closeButton {
|
|
1388
1385
|
all: unset;
|
|
1389
1386
|
width: 2em;
|
|
1390
1387
|
height: 2em;
|
|
@@ -1397,7 +1394,7 @@
|
|
|
1397
1394
|
border: 2px solid currentcolor;
|
|
1398
1395
|
cursor: pointer;
|
|
1399
1396
|
}
|
|
1400
|
-
.closeButton svg {
|
|
1397
|
+
.bds014-closeButton svg {
|
|
1401
1398
|
width: 1.25em;
|
|
1402
1399
|
height: 1.25em;
|
|
1403
1400
|
}
|
|
@@ -1405,7 +1402,7 @@
|
|
|
1405
1402
|
|
|
1406
1403
|
/* src/components/interaction/Drawer/Drawer.module.css */
|
|
1407
1404
|
@layer component {
|
|
1408
|
-
.drawer {
|
|
1405
|
+
.bds014-drawer {
|
|
1409
1406
|
position: fixed;
|
|
1410
1407
|
inset: 0;
|
|
1411
1408
|
margin: 0;
|
|
@@ -1418,10 +1415,10 @@
|
|
|
1418
1415
|
background: transparent;
|
|
1419
1416
|
overflow: hidden;
|
|
1420
1417
|
}
|
|
1421
|
-
.drawer::backdrop {
|
|
1418
|
+
.bds014-drawer::backdrop {
|
|
1422
1419
|
background: rgb(0 0 0 / 50%);
|
|
1423
1420
|
}
|
|
1424
|
-
.panel {
|
|
1421
|
+
.bds014-panel {
|
|
1425
1422
|
position: absolute;
|
|
1426
1423
|
inset-block: 0;
|
|
1427
1424
|
display: flex;
|
|
@@ -1434,13 +1431,13 @@
|
|
|
1434
1431
|
overflow: hidden;
|
|
1435
1432
|
transition: transform var(--animation_transition-duration) var(--animation_easing);
|
|
1436
1433
|
}
|
|
1437
|
-
|
|
1434
|
+
.bds014---side_right .bds014-panel {
|
|
1438
1435
|
inset-inline-end: 0;
|
|
1439
1436
|
}
|
|
1440
|
-
|
|
1437
|
+
.bds014---side_left .bds014-panel {
|
|
1441
1438
|
inset-inline-start: 0;
|
|
1442
1439
|
}
|
|
1443
|
-
.header {
|
|
1440
|
+
.bds014-header {
|
|
1444
1441
|
display: flex;
|
|
1445
1442
|
align-items: center;
|
|
1446
1443
|
justify-content: space-between;
|
|
@@ -1448,13 +1445,13 @@
|
|
|
1448
1445
|
border-block-end: 1px solid var(--color_bg--subtle);
|
|
1449
1446
|
flex-shrink: 0;
|
|
1450
1447
|
}
|
|
1451
|
-
.title {
|
|
1448
|
+
.bds014-title {
|
|
1452
1449
|
margin: 0;
|
|
1453
1450
|
font-size: var(--font_size--heading--s);
|
|
1454
1451
|
font-weight: var(--font_weight--semibold);
|
|
1455
1452
|
line-height: var(--font_line-height--heading);
|
|
1456
1453
|
}
|
|
1457
|
-
.closeButton {
|
|
1454
|
+
.bds014-closeButton {
|
|
1458
1455
|
all: unset;
|
|
1459
1456
|
display: flex;
|
|
1460
1457
|
align-items: center;
|
|
@@ -1466,26 +1463,26 @@
|
|
|
1466
1463
|
color: var(--color_on-bg);
|
|
1467
1464
|
transition: var(--animation_transition);
|
|
1468
1465
|
}
|
|
1469
|
-
.closeButton svg {
|
|
1466
|
+
.bds014-closeButton svg {
|
|
1470
1467
|
width: 1.25rem;
|
|
1471
1468
|
height: 1.25rem;
|
|
1472
1469
|
}
|
|
1473
|
-
.closeButton:focus-visible {
|
|
1470
|
+
.bds014-closeButton:focus-visible {
|
|
1474
1471
|
outline: var(--outline_default);
|
|
1475
1472
|
outline-offset: var(--outline_offset);
|
|
1476
1473
|
}
|
|
1477
1474
|
@media (hover: hover) and (pointer: fine) {
|
|
1478
|
-
.closeButton:hover {
|
|
1475
|
+
.bds014-closeButton:hover {
|
|
1479
1476
|
background-color: var(--color_bg--subtle);
|
|
1480
1477
|
}
|
|
1481
1478
|
}
|
|
1482
|
-
.body {
|
|
1479
|
+
.bds014-body {
|
|
1483
1480
|
flex: 1;
|
|
1484
1481
|
overflow-y: auto;
|
|
1485
1482
|
padding: var(--space_l);
|
|
1486
1483
|
}
|
|
1487
1484
|
@media (prefers-reduced-motion: reduce) {
|
|
1488
|
-
.panel {
|
|
1485
|
+
.bds014-panel {
|
|
1489
1486
|
transition: none;
|
|
1490
1487
|
}
|
|
1491
1488
|
}
|
|
@@ -1493,11 +1490,11 @@
|
|
|
1493
1490
|
|
|
1494
1491
|
/* src/components/interaction/DropdownMenu/DropdownMenu.module.css */
|
|
1495
1492
|
@layer component {
|
|
1496
|
-
.wrapper {
|
|
1493
|
+
.bds014-wrapper {
|
|
1497
1494
|
position: relative;
|
|
1498
1495
|
display: inline-flex;
|
|
1499
1496
|
}
|
|
1500
|
-
.menu {
|
|
1497
|
+
.bds014-menu {
|
|
1501
1498
|
position: absolute;
|
|
1502
1499
|
top: calc(100% + var(--space_xxs));
|
|
1503
1500
|
z-index: var(--z-index_dropdown);
|
|
@@ -1510,18 +1507,18 @@
|
|
|
1510
1507
|
list-style: none;
|
|
1511
1508
|
margin: 0;
|
|
1512
1509
|
}
|
|
1513
|
-
|
|
1510
|
+
.bds014---placement_bottom-start {
|
|
1514
1511
|
left: 0;
|
|
1515
1512
|
}
|
|
1516
|
-
|
|
1513
|
+
.bds014---placement_bottom-end {
|
|
1517
1514
|
right: 0;
|
|
1518
1515
|
}
|
|
1519
|
-
.separator {
|
|
1516
|
+
.bds014-separator {
|
|
1520
1517
|
border: none;
|
|
1521
1518
|
border-top: 1px solid var(--color_bg--subtle);
|
|
1522
1519
|
margin: var(--space_xxs) 0;
|
|
1523
1520
|
}
|
|
1524
|
-
.item {
|
|
1521
|
+
.bds014-item {
|
|
1525
1522
|
all: unset;
|
|
1526
1523
|
display: flex;
|
|
1527
1524
|
align-items: center;
|
|
@@ -1535,22 +1532,22 @@
|
|
|
1535
1532
|
box-sizing: border-box;
|
|
1536
1533
|
transition: var(--animation_transition);
|
|
1537
1534
|
}
|
|
1538
|
-
.item:disabled {
|
|
1535
|
+
.bds014-item:disabled {
|
|
1539
1536
|
opacity: 0.4;
|
|
1540
1537
|
cursor: not-allowed;
|
|
1541
1538
|
}
|
|
1542
|
-
.item:focus-visible {
|
|
1539
|
+
.bds014-item:focus-visible {
|
|
1543
1540
|
outline: var(--outline_default);
|
|
1544
1541
|
outline-offset: calc(var(--outline_offset) * -1);
|
|
1545
1542
|
border-radius: var(--border_radius--xs);
|
|
1546
1543
|
}
|
|
1547
1544
|
@media (hover: hover) and (pointer: fine) {
|
|
1548
|
-
.item:not(:disabled):hover {
|
|
1545
|
+
.bds014-item:not(:disabled):hover {
|
|
1549
1546
|
background-color: var(--color_bg--subtle);
|
|
1550
1547
|
color: var(--color_interactive);
|
|
1551
1548
|
}
|
|
1552
1549
|
}
|
|
1553
|
-
.icon {
|
|
1550
|
+
.bds014-icon {
|
|
1554
1551
|
display: flex;
|
|
1555
1552
|
align-items: center;
|
|
1556
1553
|
flex-shrink: 0;
|
|
@@ -1559,11 +1556,11 @@
|
|
|
1559
1556
|
|
|
1560
1557
|
/* src/components/interaction/Popover/Popover.module.css */
|
|
1561
1558
|
@layer component {
|
|
1562
|
-
.wrapper {
|
|
1559
|
+
.bds014-wrapper {
|
|
1563
1560
|
position: relative;
|
|
1564
1561
|
display: inline-flex;
|
|
1565
1562
|
}
|
|
1566
|
-
.panel {
|
|
1563
|
+
.bds014-panel {
|
|
1567
1564
|
position: absolute;
|
|
1568
1565
|
z-index: var(--z-index_popover);
|
|
1569
1566
|
min-width: 12rem;
|
|
@@ -1575,19 +1572,19 @@
|
|
|
1575
1572
|
color: var(--color_on-bg);
|
|
1576
1573
|
font-size: var(--font_size--body);
|
|
1577
1574
|
}
|
|
1578
|
-
|
|
1575
|
+
.bds014---placement_bottom {
|
|
1579
1576
|
top: calc(100% + var(--space_xs));
|
|
1580
1577
|
left: 0;
|
|
1581
1578
|
}
|
|
1582
|
-
|
|
1579
|
+
.bds014---placement_top {
|
|
1583
1580
|
bottom: calc(100% + var(--space_xs));
|
|
1584
1581
|
left: 0;
|
|
1585
1582
|
}
|
|
1586
|
-
|
|
1583
|
+
.bds014---placement_right {
|
|
1587
1584
|
left: calc(100% + var(--space_xs));
|
|
1588
1585
|
top: 0;
|
|
1589
1586
|
}
|
|
1590
|
-
|
|
1587
|
+
.bds014---placement_left {
|
|
1591
1588
|
right: calc(100% + var(--space_xs));
|
|
1592
1589
|
top: 0;
|
|
1593
1590
|
}
|
|
@@ -1595,23 +1592,23 @@
|
|
|
1595
1592
|
|
|
1596
1593
|
/* src/components/interaction/Rating/Rating.module.css */
|
|
1597
1594
|
@layer component {
|
|
1598
|
-
.rating {
|
|
1595
|
+
.bds014-rating {
|
|
1599
1596
|
display: inline-flex;
|
|
1600
1597
|
gap: var(--space_xxxs);
|
|
1601
1598
|
color: var(--color_bg);
|
|
1602
1599
|
}
|
|
1603
|
-
.star {
|
|
1600
|
+
.bds014-star {
|
|
1604
1601
|
width: 1.5em;
|
|
1605
1602
|
height: 1.5em;
|
|
1606
1603
|
}
|
|
1607
|
-
|
|
1604
|
+
.bds014---filled {
|
|
1608
1605
|
color: var(--color_warning);
|
|
1609
1606
|
}
|
|
1610
1607
|
}
|
|
1611
1608
|
|
|
1612
1609
|
/* src/components/interaction/Toast/Toast.module.css */
|
|
1613
1610
|
@layer component {
|
|
1614
|
-
.toastContainer {
|
|
1611
|
+
.bds014-toastContainer {
|
|
1615
1612
|
position: fixed;
|
|
1616
1613
|
bottom: var(--space_xl);
|
|
1617
1614
|
right: var(--space_xl);
|
|
@@ -1620,7 +1617,7 @@
|
|
|
1620
1617
|
gap: var(--space_m);
|
|
1621
1618
|
z-index: var(--z-index_toast);
|
|
1622
1619
|
}
|
|
1623
|
-
.toast {
|
|
1620
|
+
.bds014-toast {
|
|
1624
1621
|
padding: var(--space_m) var(--space_l);
|
|
1625
1622
|
background-color: var(--color_bg);
|
|
1626
1623
|
color: var(--color_on-bg);
|
|
@@ -1632,13 +1629,13 @@
|
|
|
1632
1629
|
min-width: 300px;
|
|
1633
1630
|
animation: slideIn var(--animation_duration--fast) var(--animation_easing);
|
|
1634
1631
|
}
|
|
1635
|
-
|
|
1632
|
+
.bds014---variant_success {
|
|
1636
1633
|
border-left: 4px solid var(--color_success);
|
|
1637
1634
|
}
|
|
1638
|
-
|
|
1635
|
+
.bds014---variant_error {
|
|
1639
1636
|
border-left: 4px solid var(--color_error);
|
|
1640
1637
|
}
|
|
1641
|
-
|
|
1638
|
+
.bds014---variant_info {
|
|
1642
1639
|
border-left: 4px solid var(--color_interactive);
|
|
1643
1640
|
}
|
|
1644
1641
|
}
|
|
@@ -1655,18 +1652,18 @@
|
|
|
1655
1652
|
|
|
1656
1653
|
/* src/components/interaction/form/Checkbox/Checkbox.module.css */
|
|
1657
1654
|
@layer component {
|
|
1658
|
-
.checkboxGroup {
|
|
1655
|
+
.bds014-checkboxGroup {
|
|
1659
1656
|
--inputSize: calc(var(--space_s) * 2);
|
|
1660
1657
|
display: flex;
|
|
1661
1658
|
flex-direction: column;
|
|
1662
1659
|
margin-block-end: var(--space_m);
|
|
1663
1660
|
}
|
|
1664
|
-
.inputWrapper {
|
|
1661
|
+
.bds014-inputWrapper {
|
|
1665
1662
|
display: flex;
|
|
1666
1663
|
align-items: stretch;
|
|
1667
1664
|
gap: var(--space_xs);
|
|
1668
1665
|
}
|
|
1669
|
-
.checkbox {
|
|
1666
|
+
.bds014-checkbox {
|
|
1670
1667
|
margin-block-start: 0.25em;
|
|
1671
1668
|
width: var(--inputSize);
|
|
1672
1669
|
height: var(--inputSize);
|
|
@@ -1678,12 +1675,12 @@
|
|
|
1678
1675
|
position: relative;
|
|
1679
1676
|
transition: background-color 0.3s ease, border-color 0.3s ease;
|
|
1680
1677
|
}
|
|
1681
|
-
.checkbox:checked {
|
|
1678
|
+
.bds014-checkbox:checked {
|
|
1682
1679
|
background-color: var(--color_green);
|
|
1683
1680
|
border-color: var(--color_green);
|
|
1684
1681
|
box-shadow: 0 0 0 2px var(--color_green);
|
|
1685
1682
|
}
|
|
1686
|
-
.checkbox:checked::after {
|
|
1683
|
+
.bds014-checkbox:checked::after {
|
|
1687
1684
|
content: "";
|
|
1688
1685
|
position: absolute;
|
|
1689
1686
|
left: 0.6em;
|
|
@@ -1694,15 +1691,15 @@
|
|
|
1694
1691
|
border-width: 0 2px 2px 0;
|
|
1695
1692
|
transform: rotate(45deg);
|
|
1696
1693
|
}
|
|
1697
|
-
.checkbox:focus {
|
|
1694
|
+
.bds014-checkbox:focus {
|
|
1698
1695
|
outline: none;
|
|
1699
1696
|
border-color: var(--color_interactive);
|
|
1700
1697
|
box-shadow: 0 0 0 2px var(--color_green);
|
|
1701
1698
|
}
|
|
1702
|
-
.checkboxError {
|
|
1699
|
+
.bds014-checkboxError {
|
|
1703
1700
|
border-color: var(--color_error);
|
|
1704
1701
|
}
|
|
1705
|
-
.checkboxError:focus {
|
|
1702
|
+
.bds014-checkboxError:focus {
|
|
1706
1703
|
border-color: var(--color_error);
|
|
1707
1704
|
box-shadow: 0 0 0 2px rgb(from var(--color_error) r g b / 20%);
|
|
1708
1705
|
}
|
|
@@ -1710,19 +1707,19 @@
|
|
|
1710
1707
|
|
|
1711
1708
|
/* src/components/interaction/form/atoms/Message.module.css */
|
|
1712
1709
|
@layer component {
|
|
1713
|
-
.error,
|
|
1714
|
-
.hint {
|
|
1710
|
+
.bds014-error,
|
|
1711
|
+
.bds014-hint {
|
|
1715
1712
|
font-size: var(--font_size--body--s);
|
|
1716
1713
|
margin-inline-start: var(--labelPosition);
|
|
1717
1714
|
}
|
|
1718
|
-
.error {
|
|
1715
|
+
.bds014-error {
|
|
1719
1716
|
color: var(--color_error);
|
|
1720
1717
|
}
|
|
1721
1718
|
}
|
|
1722
1719
|
|
|
1723
1720
|
/* src/components/interaction/form/atoms/Label.module.css */
|
|
1724
1721
|
@layer component {
|
|
1725
|
-
.label {
|
|
1722
|
+
.bds014-label {
|
|
1726
1723
|
display: flex;
|
|
1727
1724
|
align-items: center;
|
|
1728
1725
|
font-family: var(--font_family--body);
|
|
@@ -1734,7 +1731,7 @@
|
|
|
1734
1731
|
|
|
1735
1732
|
/* src/components/interaction/form/atoms/InputContainer.module.css */
|
|
1736
1733
|
@layer component {
|
|
1737
|
-
.container {
|
|
1734
|
+
.bds014-container {
|
|
1738
1735
|
--labelPosition: calc(var(--inputSize) + var(--space_m));
|
|
1739
1736
|
display: flex;
|
|
1740
1737
|
flex-direction: column;
|
|
@@ -1744,16 +1741,16 @@
|
|
|
1744
1741
|
|
|
1745
1742
|
/* src/components/interaction/form/Combobox/Combobox.module.css */
|
|
1746
1743
|
@layer component {
|
|
1747
|
-
.formGroup {
|
|
1744
|
+
.bds014-formGroup {
|
|
1748
1745
|
display: flex;
|
|
1749
1746
|
flex-direction: column;
|
|
1750
1747
|
}
|
|
1751
|
-
.inputWrapper {
|
|
1748
|
+
.bds014-inputWrapper {
|
|
1752
1749
|
position: relative;
|
|
1753
1750
|
display: flex;
|
|
1754
1751
|
align-items: center;
|
|
1755
1752
|
}
|
|
1756
|
-
.input {
|
|
1753
|
+
.bds014-input {
|
|
1757
1754
|
--combobox_border-color: var(--color_on-bg);
|
|
1758
1755
|
--combobox_focus-ring: 0 0 0 2px rgb(from var(--color_interactive) r g b / 20%);
|
|
1759
1756
|
appearance: none;
|
|
@@ -1768,22 +1765,22 @@
|
|
|
1768
1765
|
color: var(--color_on-bg);
|
|
1769
1766
|
transition: var(--animation_transition);
|
|
1770
1767
|
}
|
|
1771
|
-
.input:focus {
|
|
1768
|
+
.bds014-input:focus {
|
|
1772
1769
|
--combobox_border-color: var(--color_interactive);
|
|
1773
1770
|
outline: none;
|
|
1774
1771
|
box-shadow: var(--combobox_focus-ring);
|
|
1775
1772
|
}
|
|
1776
|
-
.input:disabled {
|
|
1773
|
+
.bds014-input:disabled {
|
|
1777
1774
|
opacity: 0.5;
|
|
1778
1775
|
cursor: not-allowed;
|
|
1779
1776
|
}
|
|
1780
|
-
.inputError {
|
|
1777
|
+
.bds014-inputError {
|
|
1781
1778
|
--combobox_border-color: var(--color_error);
|
|
1782
1779
|
}
|
|
1783
|
-
.inputError:focus {
|
|
1780
|
+
.bds014-inputError:focus {
|
|
1784
1781
|
--combobox_focus-ring: 0 0 0 2px rgb(from var(--color_error) r g b / 20%);
|
|
1785
1782
|
}
|
|
1786
|
-
.chevron {
|
|
1783
|
+
.bds014-chevron {
|
|
1787
1784
|
position: absolute;
|
|
1788
1785
|
inset-inline-end: var(--space_s);
|
|
1789
1786
|
display: flex;
|
|
@@ -1791,11 +1788,11 @@
|
|
|
1791
1788
|
pointer-events: none;
|
|
1792
1789
|
color: var(--color_on-bg);
|
|
1793
1790
|
}
|
|
1794
|
-
.chevron svg {
|
|
1791
|
+
.bds014-chevron svg {
|
|
1795
1792
|
width: 1rem;
|
|
1796
1793
|
height: 1rem;
|
|
1797
1794
|
}
|
|
1798
|
-
.listbox {
|
|
1795
|
+
.bds014-listbox {
|
|
1799
1796
|
position: absolute;
|
|
1800
1797
|
top: calc(100% + var(--space_xxs));
|
|
1801
1798
|
left: 0;
|
|
@@ -1811,7 +1808,7 @@
|
|
|
1811
1808
|
background-color: var(--color_bg);
|
|
1812
1809
|
box-shadow: var(--shadow_m);
|
|
1813
1810
|
}
|
|
1814
|
-
.option {
|
|
1811
|
+
.bds014-option {
|
|
1815
1812
|
display: flex;
|
|
1816
1813
|
align-items: center;
|
|
1817
1814
|
padding: var(--space_xs) var(--space_m);
|
|
@@ -1820,14 +1817,14 @@
|
|
|
1820
1817
|
cursor: pointer;
|
|
1821
1818
|
transition: var(--animation_transition);
|
|
1822
1819
|
}
|
|
1823
|
-
.option
|
|
1820
|
+
.bds014-option.bds014---highlighted {
|
|
1824
1821
|
background-color: var(--color_bg--subtle);
|
|
1825
1822
|
color: var(--color_interactive);
|
|
1826
1823
|
}
|
|
1827
|
-
.option
|
|
1824
|
+
.bds014-option.bds014---selected {
|
|
1828
1825
|
font-weight: var(--font_weight--semibold);
|
|
1829
1826
|
}
|
|
1830
|
-
.option
|
|
1827
|
+
.bds014-option.bds014---disabled {
|
|
1831
1828
|
opacity: 0.4;
|
|
1832
1829
|
cursor: not-allowed;
|
|
1833
1830
|
}
|
|
@@ -1835,11 +1832,11 @@
|
|
|
1835
1832
|
|
|
1836
1833
|
/* src/components/interaction/form/FileInput/FileInput.module.css */
|
|
1837
1834
|
@layer component {
|
|
1838
|
-
.formGroup {
|
|
1835
|
+
.bds014-formGroup {
|
|
1839
1836
|
display: flex;
|
|
1840
1837
|
flex-direction: column;
|
|
1841
1838
|
}
|
|
1842
|
-
.dropZone {
|
|
1839
|
+
.bds014-dropZone {
|
|
1843
1840
|
display: flex;
|
|
1844
1841
|
flex-direction: column;
|
|
1845
1842
|
align-items: center;
|
|
@@ -1853,40 +1850,40 @@
|
|
|
1853
1850
|
transition: var(--animation_transition);
|
|
1854
1851
|
color: var(--color_on-bg--muted);
|
|
1855
1852
|
}
|
|
1856
|
-
.dropZone:focus-within {
|
|
1853
|
+
.bds014-dropZone:focus-within {
|
|
1857
1854
|
outline: var(--outline_default);
|
|
1858
1855
|
outline-offset: var(--outline_offset);
|
|
1859
1856
|
border-color: var(--color_interactive);
|
|
1860
1857
|
}
|
|
1861
|
-
.isDragging {
|
|
1858
|
+
.bds014-isDragging {
|
|
1862
1859
|
border-color: var(--color_interactive);
|
|
1863
1860
|
background-color: rgb(from var(--color_interactive) r g b / 8%);
|
|
1864
1861
|
}
|
|
1865
|
-
.hasError {
|
|
1862
|
+
.bds014-hasError {
|
|
1866
1863
|
border-color: var(--color_error);
|
|
1867
1864
|
}
|
|
1868
|
-
.isDisabled {
|
|
1865
|
+
.bds014-isDisabled {
|
|
1869
1866
|
opacity: 0.5;
|
|
1870
1867
|
cursor: not-allowed;
|
|
1871
1868
|
}
|
|
1872
|
-
.icon {
|
|
1869
|
+
.bds014-icon {
|
|
1873
1870
|
width: 2rem;
|
|
1874
1871
|
height: 2rem;
|
|
1875
1872
|
flex-shrink: 0;
|
|
1876
1873
|
}
|
|
1877
|
-
.prompt {
|
|
1874
|
+
.bds014-prompt {
|
|
1878
1875
|
font-size: var(--font_size--body);
|
|
1879
1876
|
color: var(--color_on-bg--muted);
|
|
1880
1877
|
}
|
|
1881
|
-
.prompt strong {
|
|
1878
|
+
.bds014-prompt strong {
|
|
1882
1879
|
color: var(--color_interactive);
|
|
1883
1880
|
font-weight: var(--font_weight--semibold);
|
|
1884
1881
|
}
|
|
1885
|
-
.acceptHint {
|
|
1882
|
+
.bds014-acceptHint {
|
|
1886
1883
|
font-size: var(--font_size--body--s);
|
|
1887
1884
|
color: var(--color_on-bg--muted);
|
|
1888
1885
|
}
|
|
1889
|
-
.hiddenInput {
|
|
1886
|
+
.bds014-hiddenInput {
|
|
1890
1887
|
position: absolute;
|
|
1891
1888
|
width: 1px;
|
|
1892
1889
|
height: 1px;
|
|
@@ -1896,7 +1893,7 @@
|
|
|
1896
1893
|
border: 0;
|
|
1897
1894
|
}
|
|
1898
1895
|
@media (hover: hover) and (pointer: fine) {
|
|
1899
|
-
.dropZone:not(.isDisabled):hover {
|
|
1896
|
+
.bds014-dropZone:not(.bds014-isDisabled):hover {
|
|
1900
1897
|
border-color: var(--color_interactive);
|
|
1901
1898
|
background-color: rgb(from var(--color_interactive) r g b / 4%);
|
|
1902
1899
|
}
|
|
@@ -1905,12 +1902,12 @@
|
|
|
1905
1902
|
|
|
1906
1903
|
/* src/components/interaction/form/FormInput/FormInput.module.css */
|
|
1907
1904
|
@layer component {
|
|
1908
|
-
.formGroup {
|
|
1905
|
+
.bds014-formGroup {
|
|
1909
1906
|
--labelPosition: 0;
|
|
1910
1907
|
display: flex;
|
|
1911
1908
|
flex-direction: column;
|
|
1912
1909
|
}
|
|
1913
|
-
.input {
|
|
1910
|
+
.bds014-input {
|
|
1914
1911
|
--input_border-color: var(--color_on-bg);
|
|
1915
1912
|
--input_radius: var(--border_radius--xs);
|
|
1916
1913
|
--input_focus-ring: 0 0 0 2px rgb(from var(--color_interactive) r g b / 20%);
|
|
@@ -1921,26 +1918,26 @@
|
|
|
1921
1918
|
border-radius: var(--input_radius);
|
|
1922
1919
|
transition: var(--animation_transition);
|
|
1923
1920
|
}
|
|
1924
|
-
.input:focus {
|
|
1921
|
+
.bds014-input:focus {
|
|
1925
1922
|
--input_border-color: var(--color_interactive);
|
|
1926
1923
|
outline: none;
|
|
1927
1924
|
box-shadow: var(--input_focus-ring);
|
|
1928
1925
|
}
|
|
1929
|
-
.inputError {
|
|
1926
|
+
.bds014-inputError {
|
|
1930
1927
|
--input_border-color: var(--color_error);
|
|
1931
1928
|
}
|
|
1932
|
-
.inputError:focus {
|
|
1929
|
+
.bds014-inputError:focus {
|
|
1933
1930
|
--input_focus-ring: 0 0 0 2px rgb(from var(--color_error) r g b / 20%);
|
|
1934
1931
|
}
|
|
1935
1932
|
}
|
|
1936
1933
|
|
|
1937
1934
|
/* src/components/interaction/form/NumberInput/NumberInput.module.css */
|
|
1938
1935
|
@layer component {
|
|
1939
|
-
.formGroup {
|
|
1936
|
+
.bds014-formGroup {
|
|
1940
1937
|
display: flex;
|
|
1941
1938
|
flex-direction: column;
|
|
1942
1939
|
}
|
|
1943
|
-
.inputRow {
|
|
1940
|
+
.bds014-inputRow {
|
|
1944
1941
|
display: flex;
|
|
1945
1942
|
align-items: stretch;
|
|
1946
1943
|
border: 1px solid var(--color_on-bg);
|
|
@@ -1948,11 +1945,11 @@
|
|
|
1948
1945
|
overflow: hidden;
|
|
1949
1946
|
transition: var(--animation_transition);
|
|
1950
1947
|
}
|
|
1951
|
-
.inputRow:focus-within {
|
|
1948
|
+
.bds014-inputRow:focus-within {
|
|
1952
1949
|
border-color: var(--color_interactive);
|
|
1953
1950
|
box-shadow: 0 0 0 2px rgb(from var(--color_interactive) r g b / 20%);
|
|
1954
1951
|
}
|
|
1955
|
-
.input {
|
|
1952
|
+
.bds014-input {
|
|
1956
1953
|
flex: 1;
|
|
1957
1954
|
border: none;
|
|
1958
1955
|
outline: none;
|
|
@@ -1965,18 +1962,18 @@
|
|
|
1965
1962
|
min-width: 0;
|
|
1966
1963
|
appearance: textfield;
|
|
1967
1964
|
}
|
|
1968
|
-
.input::-webkit-inner-spin-button,
|
|
1969
|
-
.input::-webkit-outer-spin-button {
|
|
1965
|
+
.bds014-input::-webkit-inner-spin-button,
|
|
1966
|
+
.bds014-input::-webkit-outer-spin-button {
|
|
1970
1967
|
appearance: none;
|
|
1971
1968
|
}
|
|
1972
|
-
.inputError {
|
|
1969
|
+
.bds014-inputError {
|
|
1973
1970
|
border-color: var(--color_error);
|
|
1974
1971
|
}
|
|
1975
|
-
.inputError:focus-within {
|
|
1972
|
+
.bds014-inputError:focus-within {
|
|
1976
1973
|
border-color: var(--color_error);
|
|
1977
1974
|
box-shadow: 0 0 0 2px rgb(from var(--color_error) r g b / 20%);
|
|
1978
1975
|
}
|
|
1979
|
-
.stepper {
|
|
1976
|
+
.bds014-stepper {
|
|
1980
1977
|
all: unset;
|
|
1981
1978
|
display: flex;
|
|
1982
1979
|
align-items: center;
|
|
@@ -1988,16 +1985,16 @@
|
|
|
1988
1985
|
transition: var(--animation_transition);
|
|
1989
1986
|
flex-shrink: 0;
|
|
1990
1987
|
}
|
|
1991
|
-
.stepper svg {
|
|
1988
|
+
.bds014-stepper svg {
|
|
1992
1989
|
width: 1rem;
|
|
1993
1990
|
height: 1rem;
|
|
1994
1991
|
}
|
|
1995
|
-
.stepper:disabled {
|
|
1992
|
+
.bds014-stepper:disabled {
|
|
1996
1993
|
opacity: 0.4;
|
|
1997
1994
|
cursor: not-allowed;
|
|
1998
1995
|
}
|
|
1999
1996
|
@media (hover: hover) and (pointer: fine) {
|
|
2000
|
-
.stepper:not(:disabled):hover {
|
|
1997
|
+
.bds014-stepper:not(:disabled):hover {
|
|
2001
1998
|
background-color: var(--color_bg--subtle);
|
|
2002
1999
|
opacity: 0.7;
|
|
2003
2000
|
}
|
|
@@ -2006,18 +2003,18 @@
|
|
|
2006
2003
|
|
|
2007
2004
|
/* src/components/interaction/form/Radio/Radio.module.css */
|
|
2008
2005
|
@layer component {
|
|
2009
|
-
.radioGroup {
|
|
2006
|
+
.bds014-radioGroup {
|
|
2010
2007
|
--inputSize: calc(var(--space_s) * 2);
|
|
2011
2008
|
--labelPosition: calc(var(--inputSize) + var(--space_m));
|
|
2012
2009
|
display: flex;
|
|
2013
2010
|
flex-direction: column;
|
|
2014
2011
|
}
|
|
2015
|
-
.inputWrapper {
|
|
2012
|
+
.bds014-inputWrapper {
|
|
2016
2013
|
display: flex;
|
|
2017
2014
|
align-items: stretch;
|
|
2018
2015
|
gap: var(--space_xs);
|
|
2019
2016
|
}
|
|
2020
|
-
.radio {
|
|
2017
|
+
.bds014-radio {
|
|
2021
2018
|
flex-shrink: 0;
|
|
2022
2019
|
margin-block-start: 0.25em;
|
|
2023
2020
|
width: var(--inputSize);
|
|
@@ -2030,12 +2027,12 @@
|
|
|
2030
2027
|
position: relative;
|
|
2031
2028
|
transition: background-color 0.3s ease, border-color 0.3s ease;
|
|
2032
2029
|
}
|
|
2033
|
-
.radio:checked {
|
|
2030
|
+
.bds014-radio:checked {
|
|
2034
2031
|
background-color: var(--color_green);
|
|
2035
2032
|
border-color: var(--color_green);
|
|
2036
2033
|
box-shadow: 0 0 0 2px var(--color_green);
|
|
2037
2034
|
}
|
|
2038
|
-
.radio:checked::after {
|
|
2035
|
+
.bds014-radio:checked::after {
|
|
2039
2036
|
content: "";
|
|
2040
2037
|
position: absolute;
|
|
2041
2038
|
left: 0.6em;
|
|
@@ -2046,15 +2043,15 @@
|
|
|
2046
2043
|
border-width: 0 2px 2px 0;
|
|
2047
2044
|
transform: rotate(45deg);
|
|
2048
2045
|
}
|
|
2049
|
-
.radio:focus {
|
|
2046
|
+
.bds014-radio:focus {
|
|
2050
2047
|
outline: none;
|
|
2051
2048
|
border-color: var(--color_interactive);
|
|
2052
2049
|
box-shadow: 0 0 0 2px var(--color_green);
|
|
2053
2050
|
}
|
|
2054
|
-
.radioError {
|
|
2051
|
+
.bds014-radioError {
|
|
2055
2052
|
border-color: var(--color_error);
|
|
2056
2053
|
}
|
|
2057
|
-
.radioError:focus {
|
|
2054
|
+
.bds014-radioError:focus {
|
|
2058
2055
|
border-color: var(--color_error);
|
|
2059
2056
|
box-shadow: 0 0 0 2px rgb(from var(--color_error) r g b / 20%);
|
|
2060
2057
|
}
|
|
@@ -2062,16 +2059,16 @@
|
|
|
2062
2059
|
|
|
2063
2060
|
/* src/components/interaction/form/Select/Select.module.css */
|
|
2064
2061
|
@layer component {
|
|
2065
|
-
.formGroup {
|
|
2062
|
+
.bds014-formGroup {
|
|
2066
2063
|
display: flex;
|
|
2067
2064
|
flex-direction: column;
|
|
2068
2065
|
}
|
|
2069
|
-
.selectWrapper {
|
|
2066
|
+
.bds014-selectWrapper {
|
|
2070
2067
|
position: relative;
|
|
2071
2068
|
display: flex;
|
|
2072
2069
|
align-items: center;
|
|
2073
2070
|
}
|
|
2074
|
-
.select {
|
|
2071
|
+
.bds014-select {
|
|
2075
2072
|
--select_border-color: var(--color_on-bg);
|
|
2076
2073
|
--select_focus-ring: 0 0 0 2px rgb(from var(--color_interactive) r g b / 20%);
|
|
2077
2074
|
appearance: none;
|
|
@@ -2087,22 +2084,22 @@
|
|
|
2087
2084
|
cursor: pointer;
|
|
2088
2085
|
transition: var(--animation_transition);
|
|
2089
2086
|
}
|
|
2090
|
-
.select:focus {
|
|
2087
|
+
.bds014-select:focus {
|
|
2091
2088
|
--select_border-color: var(--color_interactive);
|
|
2092
2089
|
outline: none;
|
|
2093
2090
|
box-shadow: var(--select_focus-ring);
|
|
2094
2091
|
}
|
|
2095
|
-
.select:disabled {
|
|
2092
|
+
.bds014-select:disabled {
|
|
2096
2093
|
opacity: 0.5;
|
|
2097
2094
|
cursor: not-allowed;
|
|
2098
2095
|
}
|
|
2099
|
-
.selectError {
|
|
2096
|
+
.bds014-selectError {
|
|
2100
2097
|
--select_border-color: var(--color_error);
|
|
2101
2098
|
}
|
|
2102
|
-
.selectError:focus {
|
|
2099
|
+
.bds014-selectError:focus {
|
|
2103
2100
|
--select_focus-ring: 0 0 0 2px rgb(from var(--color_error) r g b / 20%);
|
|
2104
2101
|
}
|
|
2105
|
-
.chevron {
|
|
2102
|
+
.bds014-chevron {
|
|
2106
2103
|
position: absolute;
|
|
2107
2104
|
inset-inline-end: var(--space_s);
|
|
2108
2105
|
display: flex;
|
|
@@ -2110,7 +2107,7 @@
|
|
|
2110
2107
|
pointer-events: none;
|
|
2111
2108
|
color: var(--color_on-bg);
|
|
2112
2109
|
}
|
|
2113
|
-
.chevron svg {
|
|
2110
|
+
.bds014-chevron svg {
|
|
2114
2111
|
width: 1rem;
|
|
2115
2112
|
height: 1rem;
|
|
2116
2113
|
}
|
|
@@ -2118,22 +2115,22 @@
|
|
|
2118
2115
|
|
|
2119
2116
|
/* src/components/interaction/form/Slider/Slider.module.css */
|
|
2120
2117
|
@layer component {
|
|
2121
|
-
.formGroup {
|
|
2118
|
+
.bds014-formGroup {
|
|
2122
2119
|
display: flex;
|
|
2123
2120
|
flex-direction: column;
|
|
2124
2121
|
gap: var(--space_xxs);
|
|
2125
2122
|
}
|
|
2126
|
-
.labelRow {
|
|
2123
|
+
.bds014-labelRow {
|
|
2127
2124
|
display: flex;
|
|
2128
2125
|
justify-content: space-between;
|
|
2129
2126
|
align-items: baseline;
|
|
2130
2127
|
}
|
|
2131
|
-
.value {
|
|
2128
|
+
.bds014-value {
|
|
2132
2129
|
font-size: var(--font_size--body--s);
|
|
2133
2130
|
font-variant-numeric: tabular-nums;
|
|
2134
2131
|
color: var(--color_on-bg--subtle);
|
|
2135
2132
|
}
|
|
2136
|
-
.slider {
|
|
2133
|
+
.bds014-slider {
|
|
2137
2134
|
--slider_fill: 0%;
|
|
2138
2135
|
--slider_track-height: var(--space_xxs);
|
|
2139
2136
|
--slider_thumb-size: calc(var(--space_s) * 2);
|
|
@@ -2151,16 +2148,16 @@
|
|
|
2151
2148
|
cursor: pointer;
|
|
2152
2149
|
transition: var(--animation_transition);
|
|
2153
2150
|
}
|
|
2154
|
-
.slider:focus-visible {
|
|
2151
|
+
.bds014-slider:focus-visible {
|
|
2155
2152
|
outline: var(--outline_default);
|
|
2156
2153
|
outline-offset: var(--outline_offset);
|
|
2157
2154
|
border-radius: 999px;
|
|
2158
2155
|
}
|
|
2159
|
-
.slider:disabled {
|
|
2156
|
+
.bds014-slider:disabled {
|
|
2160
2157
|
opacity: 0.4;
|
|
2161
2158
|
cursor: not-allowed;
|
|
2162
2159
|
}
|
|
2163
|
-
.slider::-webkit-slider-thumb {
|
|
2160
|
+
.bds014-slider::-webkit-slider-thumb {
|
|
2164
2161
|
appearance: none;
|
|
2165
2162
|
width: var(--slider_thumb-size);
|
|
2166
2163
|
height: var(--slider_thumb-size);
|
|
@@ -2170,7 +2167,7 @@
|
|
|
2170
2167
|
transition: var(--animation_transition);
|
|
2171
2168
|
cursor: pointer;
|
|
2172
2169
|
}
|
|
2173
|
-
.slider::-moz-range-thumb {
|
|
2170
|
+
.bds014-slider::-moz-range-thumb {
|
|
2174
2171
|
width: var(--slider_thumb-size);
|
|
2175
2172
|
height: var(--slider_thumb-size);
|
|
2176
2173
|
border: none;
|
|
@@ -2179,7 +2176,7 @@
|
|
|
2179
2176
|
box-shadow: var(--shadow_s);
|
|
2180
2177
|
cursor: pointer;
|
|
2181
2178
|
}
|
|
2182
|
-
.sliderError {
|
|
2179
|
+
.bds014-sliderError {
|
|
2183
2180
|
background:
|
|
2184
2181
|
linear-gradient(
|
|
2185
2182
|
to right,
|
|
@@ -2188,16 +2185,16 @@
|
|
|
2188
2185
|
var(--color_bg--subtle) var(--slider_fill),
|
|
2189
2186
|
var(--color_bg--subtle) 100%);
|
|
2190
2187
|
}
|
|
2191
|
-
.sliderError::-webkit-slider-thumb {
|
|
2188
|
+
.bds014-sliderError::-webkit-slider-thumb {
|
|
2192
2189
|
background-color: var(--color_error);
|
|
2193
2190
|
}
|
|
2194
|
-
.sliderError::-moz-range-thumb {
|
|
2191
|
+
.bds014-sliderError::-moz-range-thumb {
|
|
2195
2192
|
background-color: var(--color_error);
|
|
2196
2193
|
}
|
|
2197
2194
|
@media (prefers-reduced-motion: reduce) {
|
|
2198
|
-
.slider,
|
|
2199
|
-
.slider::-webkit-slider-thumb,
|
|
2200
|
-
.slider::-moz-range-thumb {
|
|
2195
|
+
.bds014-slider,
|
|
2196
|
+
.bds014-slider::-webkit-slider-thumb,
|
|
2197
|
+
.bds014-slider::-moz-range-thumb {
|
|
2201
2198
|
transition: none;
|
|
2202
2199
|
}
|
|
2203
2200
|
}
|
|
@@ -2205,7 +2202,7 @@
|
|
|
2205
2202
|
|
|
2206
2203
|
/* src/components/interaction/form/Switch/Switch.module.css */
|
|
2207
2204
|
@layer component {
|
|
2208
|
-
.switchGroup {
|
|
2205
|
+
.bds014-switchGroup {
|
|
2209
2206
|
--switch_thumb-size: 1.25em;
|
|
2210
2207
|
--switch_track-pad: var(--space_xxxs);
|
|
2211
2208
|
--switch_track-height: calc(var(--switch_thumb-size) + var(--switch_track-pad) * 2);
|
|
@@ -2218,21 +2215,21 @@
|
|
|
2218
2215
|
flex-direction: column;
|
|
2219
2216
|
margin-block-end: var(--space_m);
|
|
2220
2217
|
}
|
|
2221
|
-
.switchGroup
|
|
2218
|
+
.bds014-switchGroup.bds014---size_small {
|
|
2222
2219
|
--switch_thumb-size: 1em;
|
|
2223
2220
|
}
|
|
2224
|
-
.switchGroup
|
|
2221
|
+
.bds014-switchGroup.bds014---size_medium {
|
|
2225
2222
|
--switch_thumb-size: 1.25em;
|
|
2226
2223
|
}
|
|
2227
|
-
.switchGroup
|
|
2224
|
+
.bds014-switchGroup.bds014---size_large {
|
|
2228
2225
|
--switch_thumb-size: 1.5em;
|
|
2229
2226
|
}
|
|
2230
|
-
.inputWrapper {
|
|
2227
|
+
.bds014-inputWrapper {
|
|
2231
2228
|
display: flex;
|
|
2232
2229
|
align-items: center;
|
|
2233
2230
|
gap: var(--space_xs);
|
|
2234
2231
|
}
|
|
2235
|
-
.trackWrapper {
|
|
2232
|
+
.bds014-trackWrapper {
|
|
2236
2233
|
position: relative;
|
|
2237
2234
|
display: inline-flex;
|
|
2238
2235
|
align-items: center;
|
|
@@ -2240,7 +2237,7 @@
|
|
|
2240
2237
|
width: var(--switch_track-width);
|
|
2241
2238
|
height: var(--switch_track-height);
|
|
2242
2239
|
}
|
|
2243
|
-
.switch {
|
|
2240
|
+
.bds014-switch {
|
|
2244
2241
|
position: absolute;
|
|
2245
2242
|
inset: 0;
|
|
2246
2243
|
appearance: none;
|
|
@@ -2251,10 +2248,10 @@
|
|
|
2251
2248
|
cursor: pointer;
|
|
2252
2249
|
z-index: 1;
|
|
2253
2250
|
}
|
|
2254
|
-
.switch:disabled {
|
|
2251
|
+
.bds014-switch:disabled {
|
|
2255
2252
|
cursor: not-allowed;
|
|
2256
2253
|
}
|
|
2257
|
-
.track {
|
|
2254
|
+
.bds014-track {
|
|
2258
2255
|
display: inline-flex;
|
|
2259
2256
|
align-items: center;
|
|
2260
2257
|
width: var(--switch_track-width);
|
|
@@ -2267,7 +2264,7 @@
|
|
|
2267
2264
|
outline: 1px solid var(--thumb_bg);
|
|
2268
2265
|
outline-offset: var(--outline_offset);
|
|
2269
2266
|
}
|
|
2270
|
-
.thumb {
|
|
2267
|
+
.bds014-thumb {
|
|
2271
2268
|
display: block;
|
|
2272
2269
|
width: var(--switch_thumb-size);
|
|
2273
2270
|
height: var(--switch_thumb-size);
|
|
@@ -2277,28 +2274,28 @@
|
|
|
2277
2274
|
transition: var(--animation_transition);
|
|
2278
2275
|
transform: translateX(0);
|
|
2279
2276
|
}
|
|
2280
|
-
.switch.switchError + .track {
|
|
2277
|
+
.bds014-switch.bds014-switchError + .bds014-track {
|
|
2281
2278
|
outline: 1px solid var(--color_error);
|
|
2282
2279
|
}
|
|
2283
|
-
.switch:checked + .track {
|
|
2280
|
+
.bds014-switch:checked + .bds014-track {
|
|
2284
2281
|
background-color: var(--track_active);
|
|
2285
2282
|
outline-color: var(--thumb_bg--active);
|
|
2286
2283
|
}
|
|
2287
|
-
.switch:checked + .track .thumb {
|
|
2284
|
+
.bds014-switch:checked + .bds014-track .bds014-thumb {
|
|
2288
2285
|
background-color: var(--thumb_bg--active);
|
|
2289
2286
|
transform: translateX(var(--switch_thumb-size));
|
|
2290
2287
|
}
|
|
2291
|
-
.switch:focus-visible + .track {
|
|
2288
|
+
.bds014-switch:focus-visible + .bds014-track {
|
|
2292
2289
|
outline: var(--outline_default);
|
|
2293
2290
|
outline-offset: var(--outline_offset);
|
|
2294
2291
|
border-radius: 999px;
|
|
2295
2292
|
}
|
|
2296
|
-
.switch:disabled + .track {
|
|
2293
|
+
.bds014-switch:disabled + .bds014-track {
|
|
2297
2294
|
opacity: 0.4;
|
|
2298
2295
|
}
|
|
2299
2296
|
@media (prefers-reduced-motion: reduce) {
|
|
2300
|
-
.track,
|
|
2301
|
-
.thumb {
|
|
2297
|
+
.bds014-track,
|
|
2298
|
+
.bds014-thumb {
|
|
2302
2299
|
transition: none;
|
|
2303
2300
|
}
|
|
2304
2301
|
}
|
|
@@ -2306,11 +2303,11 @@
|
|
|
2306
2303
|
|
|
2307
2304
|
/* src/components/interaction/form/Textarea/Textarea.module.css */
|
|
2308
2305
|
@layer component {
|
|
2309
|
-
.formGroup {
|
|
2306
|
+
.bds014-formGroup {
|
|
2310
2307
|
display: flex;
|
|
2311
2308
|
flex-direction: column;
|
|
2312
2309
|
}
|
|
2313
|
-
.textarea {
|
|
2310
|
+
.bds014-textarea {
|
|
2314
2311
|
--textarea_border-color: var(--color_on-bg);
|
|
2315
2312
|
--textarea_focus-ring: 0 0 0 2px rgb(from var(--color_interactive) r g b / 20%);
|
|
2316
2313
|
font-family: var(--font_family--body);
|
|
@@ -2325,69 +2322,69 @@
|
|
|
2325
2322
|
min-height: calc(var(--space_m) * 5);
|
|
2326
2323
|
transition: var(--animation_transition);
|
|
2327
2324
|
}
|
|
2328
|
-
.textarea:focus {
|
|
2325
|
+
.bds014-textarea:focus {
|
|
2329
2326
|
--textarea_border-color: var(--color_interactive);
|
|
2330
2327
|
outline: none;
|
|
2331
2328
|
box-shadow: var(--textarea_focus-ring);
|
|
2332
2329
|
}
|
|
2333
|
-
.textarea:disabled {
|
|
2330
|
+
.bds014-textarea:disabled {
|
|
2334
2331
|
opacity: 0.5;
|
|
2335
2332
|
cursor: not-allowed;
|
|
2336
2333
|
resize: none;
|
|
2337
2334
|
}
|
|
2338
|
-
.textareaError {
|
|
2335
|
+
.bds014-textareaError {
|
|
2339
2336
|
--textarea_border-color: var(--color_error);
|
|
2340
2337
|
}
|
|
2341
|
-
.textareaError:focus {
|
|
2338
|
+
.bds014-textareaError:focus {
|
|
2342
2339
|
--textarea_focus-ring: 0 0 0 2px rgb(from var(--color_error) r g b / 20%);
|
|
2343
2340
|
}
|
|
2344
2341
|
}
|
|
2345
2342
|
|
|
2346
2343
|
/* src/components/layout/ButtonGroup/ButtonGroup.module.css */
|
|
2347
2344
|
@layer component {
|
|
2348
|
-
.buttonGroup {
|
|
2345
|
+
.bds014-buttonGroup {
|
|
2349
2346
|
container-type: inline-size;
|
|
2350
2347
|
container-name: button-group;
|
|
2351
2348
|
grid-column: var(--grid_span-100);
|
|
2352
2349
|
}
|
|
2353
|
-
.buttonGroup .container {
|
|
2350
|
+
.bds014-buttonGroup .bds014-container {
|
|
2354
2351
|
position: relative;
|
|
2355
2352
|
display: flex;
|
|
2356
2353
|
flex-direction: column-reverse;
|
|
2357
2354
|
gap: var(--space_l);
|
|
2358
2355
|
align-items: center;
|
|
2359
2356
|
}
|
|
2360
|
-
.buttonGroup
|
|
2357
|
+
.bds014-buttonGroup.bds014---variant__card .bds014-container {
|
|
2361
2358
|
align-items: stretch;
|
|
2362
2359
|
}
|
|
2363
|
-
.buttonGroup
|
|
2364
|
-
.buttonGroup
|
|
2360
|
+
.bds014-buttonGroup.bds014---variant__flow .bds014-container,
|
|
2361
|
+
.bds014-buttonGroup.bds014---variant__modal .bds014-container {
|
|
2365
2362
|
align-items: center;
|
|
2366
2363
|
}
|
|
2367
|
-
.buttonGroup
|
|
2364
|
+
.bds014-buttonGroup.bds014---variant__content .bds014-container {
|
|
2368
2365
|
align-items: flex-start;
|
|
2369
2366
|
}
|
|
2370
2367
|
@supports (contain: inline-size) {
|
|
2371
2368
|
@container button-group (min-width: 30rem) {
|
|
2372
|
-
.buttonGroup .container {
|
|
2369
|
+
.bds014-buttonGroup .bds014-container {
|
|
2373
2370
|
flex-direction: row;
|
|
2374
2371
|
justify-content: space-between;
|
|
2375
2372
|
}
|
|
2376
|
-
.buttonGroup
|
|
2377
|
-
.buttonGroup
|
|
2373
|
+
.bds014-buttonGroup.bds014---variant__modal .bds014-container > :first-child:last-child,
|
|
2374
|
+
.bds014-buttonGroup.bds014---variant__flow .bds014-container > :first-child:last-child {
|
|
2378
2375
|
margin-inline-start: auto;
|
|
2379
2376
|
}
|
|
2380
|
-
.buttonGroup
|
|
2377
|
+
.bds014-buttonGroup.bds014---variant__card .bds014-container {
|
|
2381
2378
|
justify-content: center;
|
|
2382
2379
|
}
|
|
2383
|
-
.buttonGroup
|
|
2380
|
+
.bds014-buttonGroup.bds014---variant__modal .bds014-container {
|
|
2384
2381
|
justify-content: flex-end;
|
|
2385
2382
|
}
|
|
2386
|
-
.buttonGroup
|
|
2383
|
+
.bds014-buttonGroup.bds014---variant__content .bds014-container {
|
|
2387
2384
|
justify-content: flex-start;
|
|
2388
2385
|
align-items: center;
|
|
2389
2386
|
}
|
|
2390
|
-
.buttonGroup
|
|
2387
|
+
.bds014-buttonGroup.bds014---variant__grid .bds014-container {
|
|
2391
2388
|
justify-content: center;
|
|
2392
2389
|
}
|
|
2393
2390
|
}
|
|
@@ -2396,58 +2393,58 @@
|
|
|
2396
2393
|
|
|
2397
2394
|
/* src/components/layout/Card/Card.module.css */
|
|
2398
2395
|
@layer component {
|
|
2399
|
-
.card {
|
|
2396
|
+
.bds014-card {
|
|
2400
2397
|
background-color: var(--color_bg);
|
|
2401
2398
|
border-radius: var(--border_radius--m);
|
|
2402
2399
|
transition: all 0.3s ease;
|
|
2403
2400
|
position: relative;
|
|
2404
2401
|
}
|
|
2405
|
-
.card
|
|
2402
|
+
.bds014-card.bds014---default {
|
|
2406
2403
|
box-shadow: var(--shadow_s);
|
|
2407
2404
|
}
|
|
2408
|
-
.card
|
|
2405
|
+
.bds014-card.bds014---elevated {
|
|
2409
2406
|
box-shadow: var(--shadow_m);
|
|
2410
2407
|
}
|
|
2411
|
-
.card
|
|
2412
|
-
border: 1px solid var(--
|
|
2408
|
+
.bds014-card.bds014---outlined {
|
|
2409
|
+
border: 1px solid var(--color_on-bg);
|
|
2413
2410
|
box-shadow: var(--shadow_s);
|
|
2414
2411
|
}
|
|
2415
|
-
.card
|
|
2412
|
+
.bds014-card.bds014---clickable {
|
|
2416
2413
|
cursor: pointer;
|
|
2417
2414
|
}
|
|
2418
|
-
.card
|
|
2415
|
+
.bds014-card.bds014---padding-none {
|
|
2419
2416
|
padding: 0;
|
|
2420
2417
|
}
|
|
2421
|
-
.card
|
|
2418
|
+
.bds014-card.bds014---padding-small {
|
|
2422
2419
|
padding: var(--space_s);
|
|
2423
2420
|
}
|
|
2424
|
-
.card
|
|
2421
|
+
.bds014-card.bds014---padding-medium {
|
|
2425
2422
|
padding: var(--space_m);
|
|
2426
2423
|
}
|
|
2427
|
-
.card
|
|
2424
|
+
.bds014-card.bds014---padding-large {
|
|
2428
2425
|
padding: var(--space_l);
|
|
2429
2426
|
}
|
|
2430
|
-
.card
|
|
2427
|
+
.bds014-card.bds014---text-start {
|
|
2431
2428
|
text-align: left;
|
|
2432
2429
|
}
|
|
2433
|
-
.card
|
|
2430
|
+
.bds014-card.bds014---text-center {
|
|
2434
2431
|
text-align: center;
|
|
2435
2432
|
}
|
|
2436
|
-
.card
|
|
2433
|
+
.bds014-card.bds014---text-end {
|
|
2437
2434
|
text-align: right;
|
|
2438
2435
|
}
|
|
2439
2436
|
@media (hover: hover) and (pointer: fine) {
|
|
2440
|
-
.card
|
|
2437
|
+
.bds014-card.bds014---clickable:hover {
|
|
2441
2438
|
transform: translateY(-2px);
|
|
2442
2439
|
box-shadow: var(--shadow_xl);
|
|
2443
2440
|
}
|
|
2444
|
-
.card
|
|
2441
|
+
.bds014-card.bds014---default:hover {
|
|
2445
2442
|
box-shadow: var(--shadow_m);
|
|
2446
2443
|
}
|
|
2447
|
-
.card
|
|
2444
|
+
.bds014-card.bds014---elevated:hover {
|
|
2448
2445
|
box-shadow: var(--shadow_2xl);
|
|
2449
2446
|
}
|
|
2450
|
-
.card
|
|
2447
|
+
.bds014-card.bds014---outlined:hover {
|
|
2451
2448
|
box-shadow: var(--shadow_s);
|
|
2452
2449
|
}
|
|
2453
2450
|
}
|
|
@@ -2455,63 +2452,61 @@
|
|
|
2455
2452
|
|
|
2456
2453
|
/* src/components/layout/SectionHeader/SectionHeader.module.css */
|
|
2457
2454
|
@layer component {
|
|
2458
|
-
.sectionHeader {
|
|
2459
|
-
--sectionHeader-title-color: var(--color_on-bg);
|
|
2460
|
-
--sectionHeader_subtitle-color: var(--color_grey--strong);
|
|
2455
|
+
.bds014-sectionHeader {
|
|
2461
2456
|
display: flex;
|
|
2462
2457
|
flex-direction: column;
|
|
2463
2458
|
gap: var(--space_m);
|
|
2464
2459
|
grid-column: var(--grid_span-100);
|
|
2465
2460
|
margin-block-end: var(--space_xl);
|
|
2466
2461
|
}
|
|
2467
|
-
.title {
|
|
2468
|
-
color: var(--sectionHeader-title-color);
|
|
2462
|
+
.bds014-title {
|
|
2463
|
+
color: var(--sectionHeader-title-color, var(--color_on-bg));
|
|
2469
2464
|
margin: 0;
|
|
2470
2465
|
font-family: var(--font_family--body);
|
|
2471
2466
|
}
|
|
2472
|
-
.subtitle {
|
|
2473
|
-
color: var(--sectionHeader_subtitle-color);
|
|
2467
|
+
.bds014-subtitle {
|
|
2468
|
+
color: var(--sectionHeader_subtitle-color, var(--color_grey--strong));
|
|
2474
2469
|
margin: 0;
|
|
2475
2470
|
font-family: var(--font_family--body);
|
|
2476
2471
|
font-weight: var(--font_weight--medium);
|
|
2477
2472
|
}
|
|
2478
|
-
.sectionHeader
|
|
2473
|
+
.bds014-sectionHeader.bds014---start {
|
|
2479
2474
|
align-items: flex-start;
|
|
2480
2475
|
text-align: left;
|
|
2481
2476
|
}
|
|
2482
|
-
.sectionHeader
|
|
2477
|
+
.bds014-sectionHeader.bds014---center {
|
|
2483
2478
|
align-items: center;
|
|
2484
2479
|
text-align: center;
|
|
2485
2480
|
}
|
|
2486
|
-
.sectionHeader
|
|
2481
|
+
.bds014-sectionHeader.bds014---end {
|
|
2487
2482
|
align-items: flex-end;
|
|
2488
2483
|
text-align: right;
|
|
2489
2484
|
}
|
|
2490
|
-
.sectionHeader
|
|
2485
|
+
.bds014-sectionHeader.bds014---small .bds014-title {
|
|
2491
2486
|
font-size: var(--font_size--heading-1);
|
|
2492
2487
|
line-height: var(--font_line-height--heading);
|
|
2493
2488
|
font-weight: var(--font_weight--bold);
|
|
2494
2489
|
}
|
|
2495
|
-
.sectionHeader
|
|
2490
|
+
.bds014-sectionHeader.bds014---small .bds014-subtitle {
|
|
2496
2491
|
font-size: var(--font_size--body);
|
|
2497
2492
|
line-height: 1.4;
|
|
2498
2493
|
}
|
|
2499
|
-
.sectionHeader
|
|
2494
|
+
.bds014-sectionHeader.bds014---medium .bds014-title {
|
|
2500
2495
|
font-size: var(--font_size--display);
|
|
2501
2496
|
line-height: var(--font_line-height--display);
|
|
2502
2497
|
font-weight: var(--font_weight--bold);
|
|
2503
2498
|
}
|
|
2504
|
-
.sectionHeader
|
|
2499
|
+
.bds014-sectionHeader.bds014---medium .bds014-subtitle {
|
|
2505
2500
|
font-size: var(--font_size--heading-3);
|
|
2506
2501
|
line-height: 1.3;
|
|
2507
2502
|
}
|
|
2508
|
-
.sectionHeader
|
|
2503
|
+
.bds014-sectionHeader.bds014---large .bds014-title {
|
|
2509
2504
|
font-size: var(--font_size--display);
|
|
2510
2505
|
line-height: var(--font_line-height--display);
|
|
2511
2506
|
font-weight: var(--font_weight--bold);
|
|
2512
2507
|
letter-spacing: var(--font_tracking--tight);
|
|
2513
2508
|
}
|
|
2514
|
-
.sectionHeader
|
|
2509
|
+
.bds014-sectionHeader.bds014---large .bds014-subtitle {
|
|
2515
2510
|
font-size: var(--font_size--heading-2);
|
|
2516
2511
|
line-height: 1.3;
|
|
2517
2512
|
font-weight: var(--font_weight--medium);
|
|
@@ -2520,9 +2515,7 @@
|
|
|
2520
2515
|
|
|
2521
2516
|
/* src/components/layout/IconWrapper/IconWrapper.module.css */
|
|
2522
2517
|
@layer component {
|
|
2523
|
-
.wrapper {
|
|
2524
|
-
--icon-wrapper-color: var(--color_bg);
|
|
2525
|
-
--color_on-icon-wrapper-color: var(--color_on-bg);
|
|
2518
|
+
.bds014-wrapper {
|
|
2526
2519
|
width: 2em;
|
|
2527
2520
|
height: 2em;
|
|
2528
2521
|
font-size: 3em;
|
|
@@ -2531,13 +2524,13 @@
|
|
|
2531
2524
|
align-items: center;
|
|
2532
2525
|
justify-content: center;
|
|
2533
2526
|
margin: var(--space_l) auto var(--space_m);
|
|
2534
|
-
background: var(--icon-wrapper-color);
|
|
2535
|
-
color: var(--color_on-icon-wrapper-color);
|
|
2536
|
-
fill: var(--color_on-icon-wrapper-color);
|
|
2527
|
+
background: var(--icon-wrapper-color, var(--color_bg));
|
|
2528
|
+
color: var(--color_on-icon-wrapper-color, var(--color_on-bg));
|
|
2529
|
+
fill: var(--color_on-icon-wrapper-color, var(--color_on-bg));
|
|
2537
2530
|
position: relative;
|
|
2538
2531
|
transition: var(--animation_transition);
|
|
2539
2532
|
}
|
|
2540
|
-
.wrapper svg {
|
|
2533
|
+
.bds014-wrapper svg {
|
|
2541
2534
|
fill: currentcolor;
|
|
2542
2535
|
}
|
|
2543
2536
|
}
|