@gtivr4/a1-design-system-react 0.2.4 → 0.3.1
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/package.json +1 -1
- package/src/color-scheme.css +10 -0
- package/src/components/choice-group/ChoiceGroup.jsx +205 -0
- package/src/components/choice-group/choice-group.css +332 -0
- package/src/components/data-table/data-table-filters.css +2 -2
- package/src/components/data-table/data-table.css +2 -2
- package/src/components/section/Section.jsx +1 -1
- package/src/components/section/section.css +11 -0
- package/src/components/token-select/token-select.css +1 -1
- package/src/components/top-header/top-header.css +4 -4
- package/src/index.js +1 -0
- package/src/tokens.css +327 -301
package/src/tokens.css
CHANGED
|
@@ -95,20 +95,20 @@
|
|
|
95
95
|
--base-color-success-800: #00250a;
|
|
96
96
|
--base-color-success-900: #001003;
|
|
97
97
|
--base-color-success-1000: #000100;
|
|
98
|
-
--base-radius-sm:
|
|
99
|
-
--base-radius-md:
|
|
100
|
-
--base-radius-control:
|
|
101
|
-
--base-radius-lg:
|
|
102
|
-
--base-radius-xl:
|
|
103
|
-
--base-space-button-padding-block:
|
|
104
|
-
--base-space-button-padding-inline:
|
|
105
|
-
--base-space-button-min-height:
|
|
98
|
+
--base-radius-sm: 0.25rem;
|
|
99
|
+
--base-radius-md: 0.375rem;
|
|
100
|
+
--base-radius-control: 0.375rem;
|
|
101
|
+
--base-radius-lg: 0.5rem;
|
|
102
|
+
--base-radius-xl: 0.75rem;
|
|
103
|
+
--base-space-button-padding-block: 0.625rem;
|
|
104
|
+
--base-space-button-padding-inline: 0.75rem;
|
|
105
|
+
--base-space-button-min-height: 2.5rem;
|
|
106
106
|
--base-space-button-gap: 0.5rem;
|
|
107
|
-
--base-space-button-border-width:
|
|
108
|
-
--base-space-button-focus-ring-width:
|
|
109
|
-
--base-space-button-focus-ring-offset:
|
|
107
|
+
--base-space-button-border-width: 0;
|
|
108
|
+
--base-space-button-focus-ring-width: 0.1875rem;
|
|
109
|
+
--base-space-button-focus-ring-offset: 0.125rem;
|
|
110
110
|
--base-space-button-disabled-opacity: 0.55;
|
|
111
|
-
--base-space-card-padding:
|
|
111
|
+
--base-space-card-padding: 1.25rem;
|
|
112
112
|
--base-space-card-border-width: 1px;
|
|
113
113
|
--base-shadow-100: 0px 1px 2px 0px rgba(6, 11, 20, 0.05);
|
|
114
114
|
--base-shadow-200: 0px 1px 3px 0px rgba(6, 11, 20, 0.10), 0px 1px 2px -1px rgba(6, 11, 20, 0.06);
|
|
@@ -116,26 +116,26 @@
|
|
|
116
116
|
--base-shadow-400: 0px 10px 15px -3px rgba(6, 11, 20, 0.10), 0px 4px 6px -4px rgba(6, 11, 20, 0.05);
|
|
117
117
|
--base-shadow-500: 0px 20px 25px -5px rgba(6, 11, 20, 0.10), 0px 8px 10px -6px rgba(6, 11, 20, 0.04);
|
|
118
118
|
--base-spacing-1: 1px;
|
|
119
|
-
--base-spacing-2:
|
|
120
|
-
--base-spacing-4:
|
|
121
|
-
--base-spacing-6:
|
|
122
|
-
--base-spacing-8:
|
|
123
|
-
--base-spacing-12:
|
|
124
|
-
--base-spacing-16:
|
|
125
|
-
--base-spacing-20:
|
|
126
|
-
--base-spacing-24:
|
|
127
|
-
--base-spacing-32:
|
|
128
|
-
--base-spacing-40:
|
|
129
|
-
--base-spacing-64:
|
|
130
|
-
--base-spacing-96:
|
|
131
|
-
--base-spacing-128:
|
|
132
|
-
--base-spacing-neg-4: -
|
|
133
|
-
--base-spacing-neg-8: -
|
|
134
|
-
--base-spacing-neg-12: -
|
|
135
|
-
--base-spacing-neg-16: -
|
|
136
|
-
--base-spacing-neg-20: -
|
|
137
|
-
--base-spacing-neg-24: -
|
|
138
|
-
--base-spacing-neg-32: -
|
|
119
|
+
--base-spacing-2: 0.125rem;
|
|
120
|
+
--base-spacing-4: 0.25rem;
|
|
121
|
+
--base-spacing-6: 0.375rem;
|
|
122
|
+
--base-spacing-8: 0.5rem;
|
|
123
|
+
--base-spacing-12: 0.75rem;
|
|
124
|
+
--base-spacing-16: 1rem;
|
|
125
|
+
--base-spacing-20: 1.25rem;
|
|
126
|
+
--base-spacing-24: 1.5rem;
|
|
127
|
+
--base-spacing-32: 2rem;
|
|
128
|
+
--base-spacing-40: 2.5rem;
|
|
129
|
+
--base-spacing-64: 4rem;
|
|
130
|
+
--base-spacing-96: 6rem;
|
|
131
|
+
--base-spacing-128: 8rem;
|
|
132
|
+
--base-spacing-neg-4: -0.25rem;
|
|
133
|
+
--base-spacing-neg-8: -0.5rem;
|
|
134
|
+
--base-spacing-neg-12: -0.75rem;
|
|
135
|
+
--base-spacing-neg-16: -1rem;
|
|
136
|
+
--base-spacing-neg-20: -1.25rem;
|
|
137
|
+
--base-spacing-neg-24: -1.5rem;
|
|
138
|
+
--base-spacing-neg-32: -2rem;
|
|
139
139
|
--base-icon-optical-size: 24;
|
|
140
140
|
--base-font-size-root: 1rem;
|
|
141
141
|
--base-font-size-user-small: 0.875rem;
|
|
@@ -210,7 +210,7 @@
|
|
|
210
210
|
--semantic-color-status-success-surface: #dfffe4;
|
|
211
211
|
--semantic-color-status-success-border: #78c687;
|
|
212
212
|
--semantic-color-status-success-foreground: #f5fff6;
|
|
213
|
-
--semantic-radius-control:
|
|
213
|
+
--semantic-radius-control: 0.375rem;
|
|
214
214
|
--semantic-motion-duration-instant: 0ms;
|
|
215
215
|
--semantic-motion-duration-quick: 100ms;
|
|
216
216
|
--semantic-motion-duration-fast: 150ms;
|
|
@@ -229,10 +229,10 @@
|
|
|
229
229
|
--semantic-shadow-md: 0px 4px 6px -1px rgba(6, 11, 20, 0.10), 0px 2px 4px -2px rgba(6, 11, 20, 0.06);
|
|
230
230
|
--semantic-shadow-lg: 0px 10px 15px -3px rgba(6, 11, 20, 0.10), 0px 4px 6px -4px rgba(6, 11, 20, 0.05);
|
|
231
231
|
--semantic-shadow-xl: 0px 20px 25px -5px rgba(6, 11, 20, 0.10), 0px 8px 10px -6px rgba(6, 11, 20, 0.04);
|
|
232
|
-
--semantic-spacing-gap-xs:
|
|
233
|
-
--semantic-spacing-gap-sm:
|
|
234
|
-
--semantic-spacing-gap-md:
|
|
235
|
-
--semantic-spacing-gap-lg:
|
|
232
|
+
--semantic-spacing-gap-xs: 0.5rem;
|
|
233
|
+
--semantic-spacing-gap-sm: 0.75rem;
|
|
234
|
+
--semantic-spacing-gap-md: 1rem;
|
|
235
|
+
--semantic-spacing-gap-lg: 1.5rem;
|
|
236
236
|
--semantic-font-size-body-xs: 0.75rem;
|
|
237
237
|
--semantic-font-size-body-sm: 0.875rem;
|
|
238
238
|
--semantic-font-size-body-md: 1rem;
|
|
@@ -264,7 +264,7 @@
|
|
|
264
264
|
--component-button-primary-foreground-hover: #f5f3ff;
|
|
265
265
|
--component-button-primary-foreground-pressed: #e8e4ff;
|
|
266
266
|
--component-button-primary-border: #7c3aed;
|
|
267
|
-
--component-button-primary-border-width:
|
|
267
|
+
--component-button-primary-border-width: 0;
|
|
268
268
|
--component-button-secondary-background: #fcfbff;
|
|
269
269
|
--component-button-secondary-background-hover: #f5f3ff;
|
|
270
270
|
--component-button-secondary-background-pressed: #e8e4ff;
|
|
@@ -286,64 +286,64 @@
|
|
|
286
286
|
--component-button-tertiary-border-pressed: #e8e4ff;
|
|
287
287
|
--component-button-tertiary-border-width: 1px;
|
|
288
288
|
--component-button-focus-ring: #b5a0ff;
|
|
289
|
-
--component-button-border-radius:
|
|
290
|
-
--component-button-pill-border-radius:
|
|
291
|
-
--component-button-padding-block:
|
|
292
|
-
--component-button-padding-inline:
|
|
293
|
-
--component-button-min-height:
|
|
289
|
+
--component-button-border-radius: 0.375rem;
|
|
290
|
+
--component-button-pill-border-radius: 624.9375rem;
|
|
291
|
+
--component-button-padding-block: 0.625rem;
|
|
292
|
+
--component-button-padding-inline: 0.75rem;
|
|
293
|
+
--component-button-min-height: 2.5rem;
|
|
294
294
|
--component-button-gap: 0.5rem;
|
|
295
|
-
--component-button-border-width:
|
|
296
|
-
--component-button-focus-ring-width:
|
|
297
|
-
--component-button-focus-ring-offset:
|
|
295
|
+
--component-button-border-width: 0;
|
|
296
|
+
--component-button-focus-ring-width: 0.1875rem;
|
|
297
|
+
--component-button-focus-ring-offset: 0.125rem;
|
|
298
298
|
--component-button-disabled-opacity: 0.55;
|
|
299
|
-
--component-button-icon-size:
|
|
299
|
+
--component-button-icon-size: 1.25rem;
|
|
300
300
|
--component-button-icon-optical-size: 20;
|
|
301
|
-
--component-button-small-height:
|
|
302
|
-
--component-button-small-border-radius:
|
|
303
|
-
--component-button-small-icon-size:
|
|
301
|
+
--component-button-small-height: 1.75rem;
|
|
302
|
+
--component-button-small-border-radius: 0.25rem;
|
|
303
|
+
--component-button-small-icon-size: 1.25rem;
|
|
304
304
|
--component-button-small-icon-optical-size: 20;
|
|
305
|
-
--component-button-medium-icon-size:
|
|
305
|
+
--component-button-medium-icon-size: 1.5rem;
|
|
306
306
|
--component-button-medium-icon-optical-size: 24;
|
|
307
|
-
--component-button-large-height:
|
|
308
|
-
--component-button-large-secondary-border-width:
|
|
309
|
-
--component-button-large-icon-size:
|
|
307
|
+
--component-button-large-height: 3.5rem;
|
|
308
|
+
--component-button-large-secondary-border-width: 0.125rem;
|
|
309
|
+
--component-button-large-icon-size: 2.5rem;
|
|
310
310
|
--component-button-large-icon-optical-size: 40;
|
|
311
311
|
--component-button-font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
|
312
312
|
--component-button-font-size: 1rem;
|
|
313
313
|
--component-button-font-weight: 500;
|
|
314
314
|
--component-button-font-line-height: normal;
|
|
315
|
-
--component-accordion-trigger-height-sm:
|
|
316
|
-
--component-accordion-trigger-height-md:
|
|
317
|
-
--component-accordion-trigger-height-lg:
|
|
318
|
-
--component-accordion-padding-inline-sm:
|
|
319
|
-
--component-accordion-padding-inline-md:
|
|
320
|
-
--component-accordion-padding-inline-lg:
|
|
321
|
-
--component-accordion-icon-size-sm:
|
|
322
|
-
--component-accordion-icon-size-md:
|
|
323
|
-
--component-accordion-icon-size-lg:
|
|
324
|
-
--component-accordion-border-radius:
|
|
325
|
-
--component-accordion-focus-ring-width:
|
|
315
|
+
--component-accordion-trigger-height-sm: 2rem;
|
|
316
|
+
--component-accordion-trigger-height-md: 2.5rem;
|
|
317
|
+
--component-accordion-trigger-height-lg: 3.25rem;
|
|
318
|
+
--component-accordion-padding-inline-sm: 0.5rem;
|
|
319
|
+
--component-accordion-padding-inline-md: 0.75rem;
|
|
320
|
+
--component-accordion-padding-inline-lg: 1rem;
|
|
321
|
+
--component-accordion-icon-size-sm: 1.125rem;
|
|
322
|
+
--component-accordion-icon-size-md: 1.25rem;
|
|
323
|
+
--component-accordion-icon-size-lg: 1.5rem;
|
|
324
|
+
--component-accordion-border-radius: 0.375rem;
|
|
325
|
+
--component-accordion-focus-ring-width: 0.125rem;
|
|
326
326
|
--component-accordion-focus-ring-offset: -2px;
|
|
327
|
-
--component-blockquote-border-width:
|
|
328
|
-
--component-blockquote-border-radius:
|
|
329
|
-
--component-blockquote-padding-block:
|
|
330
|
-
--component-blockquote-padding-inline:
|
|
327
|
+
--component-blockquote-border-width: 0.25rem;
|
|
328
|
+
--component-blockquote-border-radius: 0.5rem;
|
|
329
|
+
--component-blockquote-padding-block: 1.25rem;
|
|
330
|
+
--component-blockquote-padding-inline: 1.5rem;
|
|
331
331
|
--component-blockquote-mark-size: 5rem;
|
|
332
332
|
--component-blockquote-cite-font-weight: 500;
|
|
333
|
-
--component-calendar-month-gap:
|
|
334
|
-
--component-calendar-heading-padding-block:
|
|
335
|
-
--component-calendar-heading-padding-block-compact:
|
|
336
|
-
--component-calendar-heading-gap:
|
|
337
|
-
--component-calendar-cell-padding:
|
|
338
|
-
--component-calendar-cell-padding-compact:
|
|
333
|
+
--component-calendar-month-gap: 2rem;
|
|
334
|
+
--component-calendar-heading-padding-block: 0.75rem;
|
|
335
|
+
--component-calendar-heading-padding-block-compact: 0.5rem;
|
|
336
|
+
--component-calendar-heading-gap: 0.5rem;
|
|
337
|
+
--component-calendar-cell-padding: 0.25rem;
|
|
338
|
+
--component-calendar-cell-padding-compact: 0.125rem;
|
|
339
339
|
--component-calendar-cell-padding-minimal: 1px;
|
|
340
|
-
--component-calendar-cell-size:
|
|
341
|
-
--component-calendar-cell-size-compact:
|
|
342
|
-
--component-calendar-cell-border-radius:
|
|
343
|
-
--component-card-padding:
|
|
344
|
-
--component-card-border-radius:
|
|
340
|
+
--component-calendar-cell-size: 2rem;
|
|
341
|
+
--component-calendar-cell-size-compact: 1.5rem;
|
|
342
|
+
--component-calendar-cell-border-radius: 0.25rem;
|
|
343
|
+
--component-card-padding: 1.25rem;
|
|
344
|
+
--component-card-border-radius: 0.5rem;
|
|
345
345
|
--component-card-border-width: 1px;
|
|
346
|
-
--component-card-icon-size:
|
|
346
|
+
--component-card-icon-size: 1.25rem;
|
|
347
347
|
--component-card-icon-optical-size: 20;
|
|
348
348
|
--component-card-shadow: 0px 1px 3px 0px rgba(6, 11, 20, 0.10), 0px 1px 2px -1px rgba(6, 11, 20, 0.06);
|
|
349
349
|
--component-card-title-font-size: 1.25rem;
|
|
@@ -352,67 +352,93 @@
|
|
|
352
352
|
--component-card-body-font-size: 1rem;
|
|
353
353
|
--component-card-body-font-weight: 400;
|
|
354
354
|
--component-card-body-font-line-height: 1.5em;
|
|
355
|
-
--component-checkbox-group-box-size:
|
|
356
|
-
--component-checkbox-group-gap:
|
|
357
|
-
--component-checkbox-group-item-gap:
|
|
358
|
-
--component-checkbox-group-group-gap:
|
|
359
|
-
--component-checkbox-group-items-top-gap:
|
|
360
|
-
--component-checkbox-group-input-nudge:
|
|
361
|
-
--component-checkbox-group-row-padding-block:
|
|
362
|
-
--component-checkbox-group-row-padding-inline:
|
|
363
|
-
--component-checkbox-group-content-gap:
|
|
355
|
+
--component-checkbox-group-box-size: 1rem;
|
|
356
|
+
--component-checkbox-group-gap: 0.5rem;
|
|
357
|
+
--component-checkbox-group-item-gap: 0.125rem;
|
|
358
|
+
--component-checkbox-group-group-gap: 0.5rem;
|
|
359
|
+
--component-checkbox-group-items-top-gap: 0.75rem;
|
|
360
|
+
--component-checkbox-group-input-nudge: 0.25rem;
|
|
361
|
+
--component-checkbox-group-row-padding-block: 0.25rem;
|
|
362
|
+
--component-checkbox-group-row-padding-inline: 0.375rem;
|
|
363
|
+
--component-checkbox-group-content-gap: 0.125rem;
|
|
364
364
|
--component-checkbox-group-icon-size: 75%;
|
|
365
365
|
--component-checkbox-group-disabled-opacity: 0.6;
|
|
366
|
-
--component-checkbox-group-error-accent-width:
|
|
366
|
+
--component-checkbox-group-error-accent-width: 0.1875rem;
|
|
367
367
|
--component-checkbox-group-error-message-font-weight: 600;
|
|
368
|
-
--component-checkbox-group-comfortable-box-size:
|
|
369
|
-
--component-checkbox-group-comfortable-box-size-md:
|
|
370
|
-
--component-checkbox-group-comfortable-gap:
|
|
371
|
-
--component-checkbox-group-comfortable-item-gap:
|
|
372
|
-
--component-checkbox-group-comfortable-group-gap:
|
|
373
|
-
--component-checkbox-group-comfortable-items-top-gap:
|
|
374
|
-
--component-checkbox-group-comfortable-input-nudge:
|
|
375
|
-
--component-checkbox-group-comfortable-row-padding-block:
|
|
376
|
-
--component-checkbox-group-comfortable-row-padding-inline:
|
|
377
|
-
--component-checkbox-group-compact-box-size:
|
|
378
|
-
--component-checkbox-group-compact-gap:
|
|
379
|
-
--component-checkbox-group-compact-item-gap:
|
|
380
|
-
--component-checkbox-group-compact-group-gap:
|
|
381
|
-
--component-checkbox-group-compact-items-top-gap:
|
|
382
|
-
--component-checkbox-group-compact-input-nudge:
|
|
383
|
-
--component-checkbox-group-compact-row-padding-block:
|
|
384
|
-
--component-checkbox-group-compact-row-padding-inline:
|
|
368
|
+
--component-checkbox-group-comfortable-box-size: 1.25rem;
|
|
369
|
+
--component-checkbox-group-comfortable-box-size-md: 1.375rem;
|
|
370
|
+
--component-checkbox-group-comfortable-gap: 0.625rem;
|
|
371
|
+
--component-checkbox-group-comfortable-item-gap: 0.125rem;
|
|
372
|
+
--component-checkbox-group-comfortable-group-gap: 0.625rem;
|
|
373
|
+
--component-checkbox-group-comfortable-items-top-gap: 1rem;
|
|
374
|
+
--component-checkbox-group-comfortable-input-nudge: 0.125rem;
|
|
375
|
+
--component-checkbox-group-comfortable-row-padding-block: 0.375rem;
|
|
376
|
+
--component-checkbox-group-comfortable-row-padding-inline: 0.5rem;
|
|
377
|
+
--component-checkbox-group-compact-box-size: 0.875rem;
|
|
378
|
+
--component-checkbox-group-compact-gap: 0.375rem;
|
|
379
|
+
--component-checkbox-group-compact-item-gap: 0.125rem;
|
|
380
|
+
--component-checkbox-group-compact-group-gap: 0.25rem;
|
|
381
|
+
--component-checkbox-group-compact-items-top-gap: 0.5rem;
|
|
382
|
+
--component-checkbox-group-compact-input-nudge: 0.1875rem;
|
|
383
|
+
--component-checkbox-group-compact-row-padding-block: 0.125rem;
|
|
384
|
+
--component-checkbox-group-compact-row-padding-inline: 0.25rem;
|
|
385
|
+
--component-choice-group-border-radius: 0.5rem;
|
|
386
|
+
--component-choice-group-border-width: 1px;
|
|
387
|
+
--component-choice-group-gap-sm: 0.5rem;
|
|
388
|
+
--component-choice-group-gap-md: 0.75rem;
|
|
389
|
+
--component-choice-group-gap-lg: 1rem;
|
|
390
|
+
--component-choice-group-compact-padding: 0.5rem;
|
|
391
|
+
--component-choice-group-compact-icon-size: 1.25rem;
|
|
392
|
+
--component-choice-group-compact-indicator-size: 0.75rem;
|
|
393
|
+
--component-choice-group-compact-content-gap: 0.25rem;
|
|
394
|
+
--component-choice-group-compact-min-width: 6.25rem;
|
|
395
|
+
--component-choice-group-compact-group-gap: 0.25rem;
|
|
396
|
+
--component-choice-group-compact-items-top-gap: 0.5rem;
|
|
397
|
+
--component-choice-group-default-padding: 0.75rem;
|
|
398
|
+
--component-choice-group-default-icon-size: 1.5rem;
|
|
399
|
+
--component-choice-group-default-indicator-size: 1rem;
|
|
400
|
+
--component-choice-group-default-content-gap: 0.375rem;
|
|
401
|
+
--component-choice-group-default-min-width: 8.75rem;
|
|
402
|
+
--component-choice-group-default-group-gap: 0.5rem;
|
|
403
|
+
--component-choice-group-default-items-top-gap: 0.75rem;
|
|
404
|
+
--component-choice-group-comfortable-padding: 1rem;
|
|
405
|
+
--component-choice-group-comfortable-icon-size: 2rem;
|
|
406
|
+
--component-choice-group-comfortable-indicator-size: 1.25rem;
|
|
407
|
+
--component-choice-group-comfortable-content-gap: 0.5rem;
|
|
408
|
+
--component-choice-group-comfortable-min-width: 12.5rem;
|
|
409
|
+
--component-choice-group-comfortable-group-gap: 0.5rem;
|
|
410
|
+
--component-choice-group-comfortable-items-top-gap: 1rem;
|
|
385
411
|
--component-data-table-border-width: 1px;
|
|
386
412
|
--component-data-table-header-font-weight: 500;
|
|
387
|
-
--component-data-table-focus-ring-width:
|
|
413
|
+
--component-data-table-focus-ring-width: 0.125rem;
|
|
388
414
|
--component-data-table-focus-ring-offset: -1px;
|
|
389
|
-
--component-data-table-density-compact-cell-padding-block:
|
|
390
|
-
--component-data-table-density-compact-cell-padding-inline:
|
|
415
|
+
--component-data-table-density-compact-cell-padding-block: 0.375rem;
|
|
416
|
+
--component-data-table-density-compact-cell-padding-inline: 0.75rem;
|
|
391
417
|
--component-data-table-density-compact-font-size: 0.75rem;
|
|
392
|
-
--component-data-table-density-default-cell-padding-block:
|
|
393
|
-
--component-data-table-density-default-cell-padding-inline:
|
|
418
|
+
--component-data-table-density-default-cell-padding-block: 0.75rem;
|
|
419
|
+
--component-data-table-density-default-cell-padding-inline: 1rem;
|
|
394
420
|
--component-data-table-density-default-font-size: 0.875rem;
|
|
395
|
-
--component-data-table-density-comfortable-cell-padding-block:
|
|
396
|
-
--component-data-table-density-comfortable-cell-padding-inline:
|
|
421
|
+
--component-data-table-density-comfortable-cell-padding-block: 1.25rem;
|
|
422
|
+
--component-data-table-density-comfortable-cell-padding-inline: 1.25rem;
|
|
397
423
|
--component-data-table-density-comfortable-font-size: 0.875rem;
|
|
398
|
-
--component-dialog-padding:
|
|
399
|
-
--component-dialog-border-radius:
|
|
424
|
+
--component-dialog-padding: 1.5rem;
|
|
425
|
+
--component-dialog-border-radius: 0.75rem;
|
|
400
426
|
--component-dialog-border-width: 1px;
|
|
401
427
|
--component-dialog-shadow: 0px 20px 25px -5px rgba(6, 11, 20, 0.10), 0px 8px 10px -6px rgba(6, 11, 20, 0.04);
|
|
402
428
|
--component-dialog-close-offset: -4px;
|
|
403
429
|
--component-dialog-footer-border-width: 1px;
|
|
404
|
-
--component-dialog-width:
|
|
430
|
+
--component-dialog-width: 35rem;
|
|
405
431
|
--component-divider-size-xs: 1px;
|
|
406
|
-
--component-divider-size-sm:
|
|
407
|
-
--component-divider-size-md:
|
|
408
|
-
--component-divider-size-lg:
|
|
432
|
+
--component-divider-size-sm: 0.125rem;
|
|
433
|
+
--component-divider-size-md: 0.1875rem;
|
|
434
|
+
--component-divider-size-lg: 0.25rem;
|
|
409
435
|
--component-field-border-width: 1px;
|
|
410
|
-
--component-field-required-border-width:
|
|
411
|
-
--component-field-error-border-width:
|
|
436
|
+
--component-field-required-border-width: 0.5rem;
|
|
437
|
+
--component-field-error-border-width: 0.125rem;
|
|
412
438
|
--component-field-label-font-weight: 600;
|
|
413
439
|
--component-field-focus-ring-color: #b5a0ff;
|
|
414
|
-
--component-field-focus-ring-width:
|
|
415
|
-
--component-field-focus-ring-offset:
|
|
440
|
+
--component-field-focus-ring-width: 0.1875rem;
|
|
441
|
+
--component-field-focus-ring-offset: 0.125rem;
|
|
416
442
|
--component-field-hover-background: #f0f6fe;
|
|
417
443
|
--component-field-hover-border-color: #414e61;
|
|
418
444
|
--component-field-active-background: #e1e8f3;
|
|
@@ -420,37 +446,37 @@
|
|
|
420
446
|
--component-field-read-only-background: #f0f5ff;
|
|
421
447
|
--component-field-read-only-border-color: #b9d2ff;
|
|
422
448
|
--component-field-read-only-text: #000003;
|
|
423
|
-
--component-field-comfortable-height:
|
|
424
|
-
--component-field-comfortable-padding-inline:
|
|
425
|
-
--component-field-comfortable-gap:
|
|
426
|
-
--component-field-comfortable-border-radius:
|
|
427
|
-
--component-field-default-height:
|
|
428
|
-
--component-field-default-padding-inline:
|
|
429
|
-
--component-field-default-gap:
|
|
430
|
-
--component-field-default-border-radius:
|
|
431
|
-
--component-field-compact-height:
|
|
432
|
-
--component-field-compact-padding-inline:
|
|
433
|
-
--component-field-compact-gap:
|
|
434
|
-
--component-field-compact-border-radius:
|
|
435
|
-
--component-field-chevron-size:
|
|
436
|
-
--component-field-chevron-size-comfortable:
|
|
437
|
-
--component-field-chevron-size-compact:
|
|
449
|
+
--component-field-comfortable-height: 3.25rem;
|
|
450
|
+
--component-field-comfortable-padding-inline: 1rem;
|
|
451
|
+
--component-field-comfortable-gap: 0.5rem;
|
|
452
|
+
--component-field-comfortable-border-radius: 0.5rem;
|
|
453
|
+
--component-field-default-height: 2.5rem;
|
|
454
|
+
--component-field-default-padding-inline: 0.75rem;
|
|
455
|
+
--component-field-default-gap: 0.375rem;
|
|
456
|
+
--component-field-default-border-radius: 0.375rem;
|
|
457
|
+
--component-field-compact-height: 2rem;
|
|
458
|
+
--component-field-compact-padding-inline: 0.5rem;
|
|
459
|
+
--component-field-compact-gap: 0.25rem;
|
|
460
|
+
--component-field-compact-border-radius: 0.25rem;
|
|
461
|
+
--component-field-chevron-size: 1.25rem;
|
|
462
|
+
--component-field-chevron-size-comfortable: 1.5rem;
|
|
463
|
+
--component-field-chevron-size-compact: 1rem;
|
|
438
464
|
--component-field-side-label-width: minmax(100px, 160px);
|
|
439
465
|
--component-field-side-label-width-comfortable: minmax(120px, 200px);
|
|
440
|
-
--component-field-accent-compensation:
|
|
441
|
-
--component-field-accent-compensation-compact:
|
|
466
|
+
--component-field-accent-compensation: 0.4375rem;
|
|
467
|
+
--component-field-accent-compensation-compact: 0.1875rem;
|
|
442
468
|
--component-field-compact-label-font-weight: 500;
|
|
443
|
-
--component-field-compact-accent-border-width:
|
|
444
|
-
--component-field-textarea-padding-block:
|
|
445
|
-
--component-field-textarea-padding-block-comfortable:
|
|
446
|
-
--component-field-textarea-padding-block-compact:
|
|
469
|
+
--component-field-compact-accent-border-width: 0.25rem;
|
|
470
|
+
--component-field-textarea-padding-block: 0.625rem;
|
|
471
|
+
--component-field-textarea-padding-block-comfortable: 0.875rem;
|
|
472
|
+
--component-field-textarea-padding-block-compact: 0.375rem;
|
|
447
473
|
--component-field-credit-card-badge-font-weight: 600;
|
|
448
474
|
--component-field-credit-card-badge-border-width: 1px;
|
|
449
|
-
--component-field-credit-card-badge-padding-block:
|
|
450
|
-
--component-field-credit-card-badge-padding-inline:
|
|
451
|
-
--component-field-credit-card-badge-min-width:
|
|
475
|
+
--component-field-credit-card-badge-padding-block: 0.125rem;
|
|
476
|
+
--component-field-credit-card-badge-padding-inline: 0.375rem;
|
|
477
|
+
--component-field-credit-card-badge-min-width: 2.5rem;
|
|
452
478
|
--component-field-credit-card-badge-line-height: 1.4;
|
|
453
|
-
--component-field-credit-card-detected-offset:
|
|
479
|
+
--component-field-credit-card-detected-offset: 3.25rem;
|
|
454
480
|
--component-heading-mark-highlight-background-color: #fff066;
|
|
455
481
|
--component-heading-mark-highlight-foreground-color: #060b14;
|
|
456
482
|
--component-heading-mark-highlight-font-weight: 900;
|
|
@@ -466,11 +492,11 @@
|
|
|
466
492
|
--component-heading-font-weight-display: 900;
|
|
467
493
|
--component-heading-font-line-height-heading: 1.25em;
|
|
468
494
|
--component-heading-font-line-height-display: 1.125em;
|
|
469
|
-
--component-icon-button-size:
|
|
470
|
-
--component-icon-button-icon-size:
|
|
471
|
-
--component-icon-button-border-radius:
|
|
495
|
+
--component-icon-button-size: 2.5rem;
|
|
496
|
+
--component-icon-button-icon-size: 1.5rem;
|
|
497
|
+
--component-icon-button-border-radius: 0.375rem;
|
|
472
498
|
--component-icon-button-icon-optical-size: 24;
|
|
473
|
-
--component-icon-button-focus-ring-width:
|
|
499
|
+
--component-icon-button-focus-ring-width: 0.125rem;
|
|
474
500
|
--component-icon-button-focus-ring-offset: 1px;
|
|
475
501
|
--component-inline-padding-block: 0.1em;
|
|
476
502
|
--component-inline-padding-inline: 0.35em;
|
|
@@ -482,106 +508,106 @@
|
|
|
482
508
|
--component-link-color: #2563eb;
|
|
483
509
|
--component-link-color-hover: #0b3fb2;
|
|
484
510
|
--component-link-color-pressed: #002582;
|
|
485
|
-
--component-link-focus-ring-width:
|
|
486
|
-
--component-link-focus-ring-offset:
|
|
487
|
-
--component-link-focus-ring-radius:
|
|
511
|
+
--component-link-focus-ring-width: 0.125rem;
|
|
512
|
+
--component-link-focus-ring-offset: 0.125rem;
|
|
513
|
+
--component-link-focus-ring-radius: 0.125rem;
|
|
488
514
|
--component-link-underline-offset: 0.2em;
|
|
489
515
|
--component-link-icon-gap: 0.25em;
|
|
490
|
-
--component-menu-width:
|
|
491
|
-
--component-menu-viewport-offset:
|
|
516
|
+
--component-menu-width: 16.25rem;
|
|
517
|
+
--component-menu-viewport-offset: 1rem;
|
|
492
518
|
--component-menu-border-width: 1px;
|
|
493
519
|
--component-menu-section-label-font-weight: 700;
|
|
494
520
|
--component-menu-item-font-weight: 400;
|
|
495
521
|
--component-menu-item-line-height: 1.5;
|
|
496
|
-
--component-menu-item-focus-ring-width:
|
|
497
|
-
--component-menu-item-focus-ring-offset: -
|
|
522
|
+
--component-menu-item-focus-ring-width: 0.1875rem;
|
|
523
|
+
--component-menu-item-focus-ring-offset: -0.125rem;
|
|
498
524
|
--component-menu-item-disabled-opacity: 0.4;
|
|
499
|
-
--component-menu-item-icon-size:
|
|
525
|
+
--component-menu-item-icon-size: 1.125rem;
|
|
500
526
|
--component-menu-mobile-max-height: 80dvh;
|
|
501
|
-
--component-message-banner-padding:
|
|
502
|
-
--component-message-banner-border-radius:
|
|
527
|
+
--component-message-banner-padding: 0.75rem;
|
|
528
|
+
--component-message-banner-border-radius: 0.5rem;
|
|
503
529
|
--component-message-banner-border-width: 1px;
|
|
504
|
-
--component-message-banner-icon-size:
|
|
530
|
+
--component-message-banner-icon-size: 1.25rem;
|
|
505
531
|
--component-message-banner-icon-margin-top: 1px;
|
|
506
532
|
--component-message-banner-icon-optical-size: 20;
|
|
507
533
|
--component-message-banner-title-font-weight: 600;
|
|
508
|
-
--component-message-banner-dismiss-size:
|
|
534
|
+
--component-message-banner-dismiss-size: 1.5rem;
|
|
509
535
|
--component-message-banner-dismiss-offset: -2px;
|
|
510
|
-
--component-message-banner-focus-ring-width:
|
|
536
|
+
--component-message-banner-focus-ring-width: 0.125rem;
|
|
511
537
|
--component-message-banner-focus-ring-offset: 1px;
|
|
512
|
-
--component-message-banner-system-max-width:
|
|
513
|
-
--component-message-badge-padding-block:
|
|
514
|
-
--component-message-badge-padding-inline:
|
|
515
|
-
--component-message-badge-border-radius:
|
|
538
|
+
--component-message-banner-system-max-width: 80rem;
|
|
539
|
+
--component-message-badge-padding-block: 0.25rem;
|
|
540
|
+
--component-message-badge-padding-inline: 0.5rem;
|
|
541
|
+
--component-message-badge-border-radius: 0.375rem;
|
|
516
542
|
--component-message-badge-font-weight: 500;
|
|
517
543
|
--component-message-badge-border-width: 1px;
|
|
518
544
|
--component-message-badge-line-height: 1;
|
|
519
545
|
--component-message-badge-icon-size: 1em;
|
|
520
|
-
--component-message-badge-sm-padding-block:
|
|
521
|
-
--component-message-badge-sm-padding-inline:
|
|
522
|
-
--component-message-badge-lg-padding-block:
|
|
523
|
-
--component-message-badge-lg-padding-inline:
|
|
524
|
-
--component-message-empty-state-icon-size-page:
|
|
525
|
-
--component-message-empty-state-icon-size-section:
|
|
526
|
-
--component-message-empty-state-icon-size-card:
|
|
546
|
+
--component-message-badge-sm-padding-block: 0.125rem;
|
|
547
|
+
--component-message-badge-sm-padding-inline: 0.375rem;
|
|
548
|
+
--component-message-badge-lg-padding-block: 0.5rem;
|
|
549
|
+
--component-message-badge-lg-padding-inline: 0.75rem;
|
|
550
|
+
--component-message-empty-state-icon-size-page: 3rem;
|
|
551
|
+
--component-message-empty-state-icon-size-section: 1.75rem;
|
|
552
|
+
--component-message-empty-state-icon-size-card: 1.25rem;
|
|
527
553
|
--component-message-empty-state-icon-optical-size-page: 48;
|
|
528
554
|
--component-message-empty-state-icon-optical-size-section: 28;
|
|
529
555
|
--component-message-empty-state-icon-optical-size-card: 20;
|
|
530
|
-
--component-message-empty-state-wrap-size-page:
|
|
531
|
-
--component-message-empty-state-wrap-size-section:
|
|
532
|
-
--component-message-empty-state-wrap-size-card:
|
|
533
|
-
--component-message-empty-state-max-width-page:
|
|
534
|
-
--component-message-empty-state-max-width-section:
|
|
535
|
-
--component-notification-height:
|
|
536
|
-
--component-notification-dot-size:
|
|
537
|
-
--component-notification-padding-inline:
|
|
538
|
-
--component-notification-font-size:
|
|
556
|
+
--component-message-empty-state-wrap-size-page: 5.5rem;
|
|
557
|
+
--component-message-empty-state-wrap-size-section: 3.5rem;
|
|
558
|
+
--component-message-empty-state-wrap-size-card: 2.25rem;
|
|
559
|
+
--component-message-empty-state-max-width-page: 30rem;
|
|
560
|
+
--component-message-empty-state-max-width-section: 22.5rem;
|
|
561
|
+
--component-notification-height: 1.125rem;
|
|
562
|
+
--component-notification-dot-size: 0.5rem;
|
|
563
|
+
--component-notification-padding-inline: 0.3125rem;
|
|
564
|
+
--component-notification-font-size: 0.6875rem;
|
|
539
565
|
--component-notification-font-weight: 600;
|
|
540
|
-
--component-notification-ring-width:
|
|
541
|
-
--component-page-layout-sidebar-width:
|
|
542
|
-
--component-page-layout-gap:
|
|
543
|
-
--component-pagination-item-size:
|
|
544
|
-
--component-pagination-item-size-sm:
|
|
545
|
-
--component-pagination-gap:
|
|
566
|
+
--component-notification-ring-width: 0.125rem;
|
|
567
|
+
--component-page-layout-sidebar-width: 17.5rem;
|
|
568
|
+
--component-page-layout-gap: 1.5rem;
|
|
569
|
+
--component-pagination-item-size: 2.25rem;
|
|
570
|
+
--component-pagination-item-size-sm: 1.75rem;
|
|
571
|
+
--component-pagination-gap: 0.25rem;
|
|
546
572
|
--component-pagination-border-width: 1px;
|
|
547
573
|
--component-pagination-font-weight-default: 400;
|
|
548
574
|
--component-pagination-font-weight-active: 500;
|
|
549
|
-
--component-pagination-focus-ring-width:
|
|
550
|
-
--component-pagination-focus-ring-offset:
|
|
575
|
+
--component-pagination-focus-ring-width: 0.125rem;
|
|
576
|
+
--component-pagination-focus-ring-offset: 0.125rem;
|
|
551
577
|
--component-pagination-disabled-opacity: 0.35;
|
|
552
|
-
--component-pagination-ellipsis-padding-bottom:
|
|
553
|
-
--component-radio-group-control-size:
|
|
554
|
-
--component-radio-group-gap:
|
|
555
|
-
--component-radio-group-item-gap:
|
|
556
|
-
--component-radio-group-group-gap:
|
|
557
|
-
--component-radio-group-items-top-gap:
|
|
558
|
-
--component-radio-group-input-nudge:
|
|
559
|
-
--component-radio-group-row-padding-block:
|
|
560
|
-
--component-radio-group-row-padding-inline:
|
|
561
|
-
--component-radio-group-content-gap:
|
|
578
|
+
--component-pagination-ellipsis-padding-bottom: 0.25rem;
|
|
579
|
+
--component-radio-group-control-size: 1rem;
|
|
580
|
+
--component-radio-group-gap: 0.5rem;
|
|
581
|
+
--component-radio-group-item-gap: 0.125rem;
|
|
582
|
+
--component-radio-group-group-gap: 0.5rem;
|
|
583
|
+
--component-radio-group-items-top-gap: 0.75rem;
|
|
584
|
+
--component-radio-group-input-nudge: 0.25rem;
|
|
585
|
+
--component-radio-group-row-padding-block: 0.25rem;
|
|
586
|
+
--component-radio-group-row-padding-inline: 0.375rem;
|
|
587
|
+
--component-radio-group-content-gap: 0.125rem;
|
|
562
588
|
--component-radio-group-dot-size: 40%;
|
|
563
|
-
--component-radio-group-error-accent-width:
|
|
589
|
+
--component-radio-group-error-accent-width: 0.1875rem;
|
|
564
590
|
--component-radio-group-error-message-font-weight: 600;
|
|
565
|
-
--component-radio-group-comfortable-control-size:
|
|
566
|
-
--component-radio-group-comfortable-control-size-md:
|
|
567
|
-
--component-radio-group-comfortable-gap:
|
|
568
|
-
--component-radio-group-comfortable-item-gap:
|
|
569
|
-
--component-radio-group-comfortable-group-gap:
|
|
570
|
-
--component-radio-group-comfortable-items-top-gap:
|
|
571
|
-
--component-radio-group-comfortable-input-nudge:
|
|
572
|
-
--component-radio-group-comfortable-row-padding-block:
|
|
573
|
-
--component-radio-group-comfortable-row-padding-inline:
|
|
574
|
-
--component-radio-group-compact-control-size:
|
|
575
|
-
--component-radio-group-compact-gap:
|
|
576
|
-
--component-radio-group-compact-item-gap:
|
|
577
|
-
--component-radio-group-compact-group-gap:
|
|
578
|
-
--component-radio-group-compact-items-top-gap:
|
|
579
|
-
--component-radio-group-compact-input-nudge:
|
|
580
|
-
--component-radio-group-compact-row-padding-block:
|
|
581
|
-
--component-radio-group-compact-row-padding-inline:
|
|
591
|
+
--component-radio-group-comfortable-control-size: 1.25rem;
|
|
592
|
+
--component-radio-group-comfortable-control-size-md: 1.375rem;
|
|
593
|
+
--component-radio-group-comfortable-gap: 0.625rem;
|
|
594
|
+
--component-radio-group-comfortable-item-gap: 0.125rem;
|
|
595
|
+
--component-radio-group-comfortable-group-gap: 0.625rem;
|
|
596
|
+
--component-radio-group-comfortable-items-top-gap: 1rem;
|
|
597
|
+
--component-radio-group-comfortable-input-nudge: 0.125rem;
|
|
598
|
+
--component-radio-group-comfortable-row-padding-block: 0.375rem;
|
|
599
|
+
--component-radio-group-comfortable-row-padding-inline: 0.5rem;
|
|
600
|
+
--component-radio-group-compact-control-size: 0.875rem;
|
|
601
|
+
--component-radio-group-compact-gap: 0.375rem;
|
|
602
|
+
--component-radio-group-compact-item-gap: 0.125rem;
|
|
603
|
+
--component-radio-group-compact-group-gap: 0.25rem;
|
|
604
|
+
--component-radio-group-compact-items-top-gap: 0.5rem;
|
|
605
|
+
--component-radio-group-compact-input-nudge: 0.1875rem;
|
|
606
|
+
--component-radio-group-compact-row-padding-block: 0.125rem;
|
|
607
|
+
--component-radio-group-compact-row-padding-inline: 0.25rem;
|
|
582
608
|
--component-scrim-color: rgba(15, 0, 42, 0.6);
|
|
583
609
|
--component-scrim-color-dark: rgba(181, 160, 255, 0.6);
|
|
584
|
-
--component-scrim-blur:
|
|
610
|
+
--component-scrim-blur: 0.125rem;
|
|
585
611
|
--component-section-gradient-edge-width: 78%;
|
|
586
612
|
--component-section-gradient-edge-height: 62%;
|
|
587
613
|
--component-section-gradient-center-width: 68%;
|
|
@@ -589,99 +615,99 @@
|
|
|
589
615
|
--component-section-gradient-strength: 24;
|
|
590
616
|
--component-section-gradient-strength-inverse: 18;
|
|
591
617
|
--component-section-gradient-fade: 72;
|
|
592
|
-
--component-segmented-padding:
|
|
593
|
-
--component-segmented-gap:
|
|
594
|
-
--component-segmented-segment-padding-block:
|
|
595
|
-
--component-segmented-segment-padding-inline:
|
|
596
|
-
--component-segmented-segment-padding-block-sm:
|
|
597
|
-
--component-segmented-segment-padding-inline-sm:
|
|
618
|
+
--component-segmented-padding: 0.1875rem;
|
|
619
|
+
--component-segmented-gap: 0.125rem;
|
|
620
|
+
--component-segmented-segment-padding-block: 0.25rem;
|
|
621
|
+
--component-segmented-segment-padding-inline: 0.75rem;
|
|
622
|
+
--component-segmented-segment-padding-block-sm: 0.125rem;
|
|
623
|
+
--component-segmented-segment-padding-inline-sm: 0.5rem;
|
|
598
624
|
--component-segmented-border-width: 1px;
|
|
599
625
|
--component-segmented-font-weight-default: 400;
|
|
600
626
|
--component-segmented-font-weight-active: 500;
|
|
601
|
-
--component-segmented-focus-ring-width:
|
|
627
|
+
--component-segmented-focus-ring-width: 0.125rem;
|
|
602
628
|
--component-segmented-focus-ring-offset: -2px;
|
|
603
|
-
--component-side-nav-width:
|
|
604
|
-
--component-side-nav-padding-block:
|
|
605
|
-
--component-side-nav-padding-inline:
|
|
629
|
+
--component-side-nav-width: 17.5rem;
|
|
630
|
+
--component-side-nav-padding-block: 0.5rem;
|
|
631
|
+
--component-side-nav-padding-inline: 0.5rem;
|
|
606
632
|
--component-side-nav-border-width: 1px;
|
|
607
|
-
--component-side-nav-header-min-height:
|
|
608
|
-
--component-side-nav-collapsed-width:
|
|
633
|
+
--component-side-nav-header-min-height: 3.25rem;
|
|
634
|
+
--component-side-nav-collapsed-width: 3.25rem;
|
|
609
635
|
--component-side-nav-overlay-z-index: 200;
|
|
610
636
|
--component-side-nav-overlay-shadow-start: 8px 0 40px rgba(0, 0, 0, 0.18);
|
|
611
637
|
--component-side-nav-overlay-shadow-end: -8px 0 40px rgba(0, 0, 0, 0.18);
|
|
612
|
-
--component-side-nav-item-height:
|
|
613
|
-
--component-side-nav-item-padding-inline:
|
|
614
|
-
--component-side-nav-item-gap:
|
|
615
|
-
--component-side-nav-item-border-radius:
|
|
616
|
-
--component-side-nav-item-icon-size:
|
|
617
|
-
--component-side-nav-item-indent:
|
|
618
|
-
--component-side-nav-item-focus-ring-width:
|
|
619
|
-
--component-side-nav-item-focus-ring-offset: -
|
|
638
|
+
--component-side-nav-item-height: 2.25rem;
|
|
639
|
+
--component-side-nav-item-padding-inline: 0.5rem;
|
|
640
|
+
--component-side-nav-item-gap: 0.5rem;
|
|
641
|
+
--component-side-nav-item-border-radius: 0.375rem;
|
|
642
|
+
--component-side-nav-item-icon-size: 1.25rem;
|
|
643
|
+
--component-side-nav-item-indent: 1.25rem;
|
|
644
|
+
--component-side-nav-item-focus-ring-width: 0.1875rem;
|
|
645
|
+
--component-side-nav-item-focus-ring-offset: -0.125rem;
|
|
620
646
|
--component-side-nav-item-font-line-height: 1.5;
|
|
621
647
|
--component-side-nav-item-active-font-weight: 500;
|
|
622
|
-
--component-side-nav-item-chevron-size:
|
|
623
|
-
--component-switch-track-width:
|
|
624
|
-
--component-switch-track-height:
|
|
625
|
-
--component-switch-thumb-size:
|
|
626
|
-
--component-switch-gap:
|
|
627
|
-
--component-switch-row-gap:
|
|
628
|
-
--component-switch-row-padding-block:
|
|
629
|
-
--component-switch-row-padding-inline:
|
|
648
|
+
--component-side-nav-item-chevron-size: 1.125rem;
|
|
649
|
+
--component-switch-track-width: 2.5rem;
|
|
650
|
+
--component-switch-track-height: 1.375rem;
|
|
651
|
+
--component-switch-thumb-size: 1rem;
|
|
652
|
+
--component-switch-gap: 0.1875rem;
|
|
653
|
+
--component-switch-row-gap: 0.375rem;
|
|
654
|
+
--component-switch-row-padding-block: 0.25rem;
|
|
655
|
+
--component-switch-row-padding-inline: 0.375rem;
|
|
630
656
|
--component-switch-content-gap: 1px;
|
|
631
|
-
--component-switch-group-gap:
|
|
657
|
+
--component-switch-group-gap: 0.25rem;
|
|
632
658
|
--component-switch-thumb-shadow: 0px 1px 3px 0px rgba(6, 11, 20, 0.10), 0px 1px 2px -1px rgba(6, 11, 20, 0.06);
|
|
633
659
|
--component-switch-message-error-font-weight: 600;
|
|
634
660
|
--component-switch-accessible-icon-size: 60%;
|
|
635
|
-
--component-switch-comfortable-track-width:
|
|
636
|
-
--component-switch-comfortable-track-height:
|
|
637
|
-
--component-switch-comfortable-thumb-size:
|
|
638
|
-
--component-switch-comfortable-gap:
|
|
639
|
-
--component-switch-comfortable-row-gap:
|
|
640
|
-
--component-switch-comfortable-row-padding-block:
|
|
641
|
-
--component-switch-comfortable-row-padding-inline:
|
|
642
|
-
--component-switch-comfortable-content-gap:
|
|
643
|
-
--component-switch-comfortable-group-gap:
|
|
644
|
-
--component-switch-compact-track-width:
|
|
645
|
-
--component-switch-compact-track-height:
|
|
646
|
-
--component-switch-compact-thumb-size:
|
|
647
|
-
--component-switch-compact-gap:
|
|
648
|
-
--component-switch-compact-row-gap:
|
|
649
|
-
--component-switch-compact-row-padding-block:
|
|
650
|
-
--component-switch-compact-row-padding-inline:
|
|
661
|
+
--component-switch-comfortable-track-width: 3.5rem;
|
|
662
|
+
--component-switch-comfortable-track-height: 1.75rem;
|
|
663
|
+
--component-switch-comfortable-thumb-size: 1.25rem;
|
|
664
|
+
--component-switch-comfortable-gap: 0.25rem;
|
|
665
|
+
--component-switch-comfortable-row-gap: 0.5rem;
|
|
666
|
+
--component-switch-comfortable-row-padding-block: 0.375rem;
|
|
667
|
+
--component-switch-comfortable-row-padding-inline: 0.5rem;
|
|
668
|
+
--component-switch-comfortable-content-gap: 0.125rem;
|
|
669
|
+
--component-switch-comfortable-group-gap: 0.375rem;
|
|
670
|
+
--component-switch-compact-track-width: 2rem;
|
|
671
|
+
--component-switch-compact-track-height: 1.125rem;
|
|
672
|
+
--component-switch-compact-thumb-size: 0.75rem;
|
|
673
|
+
--component-switch-compact-gap: 0.1875rem;
|
|
674
|
+
--component-switch-compact-row-gap: 0.25rem;
|
|
675
|
+
--component-switch-compact-row-padding-block: 0.125rem;
|
|
676
|
+
--component-switch-compact-row-padding-inline: 0.25rem;
|
|
651
677
|
--component-switch-compact-content-gap: 1px;
|
|
652
|
-
--component-switch-compact-group-gap:
|
|
653
|
-
--component-tab-padding-block:
|
|
654
|
-
--component-tab-padding-inline:
|
|
655
|
-
--component-tab-padding-block-sm:
|
|
656
|
-
--component-tab-padding-inline-sm:
|
|
657
|
-
--component-tab-indicator-size:
|
|
678
|
+
--component-switch-compact-group-gap: 0.125rem;
|
|
679
|
+
--component-tab-padding-block: 0.5rem;
|
|
680
|
+
--component-tab-padding-inline: 1rem;
|
|
681
|
+
--component-tab-padding-block-sm: 0.25rem;
|
|
682
|
+
--component-tab-padding-inline-sm: 0.75rem;
|
|
683
|
+
--component-tab-indicator-size: 0.125rem;
|
|
658
684
|
--component-tab-border-width: 1px;
|
|
659
685
|
--component-tab-font-weight-default: 400;
|
|
660
686
|
--component-tab-font-weight-active: 500;
|
|
661
|
-
--component-tab-focus-ring-width:
|
|
687
|
+
--component-tab-focus-ring-width: 0.125rem;
|
|
662
688
|
--component-tab-focus-ring-offset: -2px;
|
|
663
689
|
--component-tab-z-index-active: 1;
|
|
664
690
|
--component-tab-margin-bottom: -1px;
|
|
665
|
-
--component-tab-scroll-button-width:
|
|
666
|
-
--component-tab-scroll-button-icon-size:
|
|
691
|
+
--component-tab-scroll-button-width: 2rem;
|
|
692
|
+
--component-tab-scroll-button-icon-size: 1.25rem;
|
|
667
693
|
--component-tab-icon-size: 1.1em;
|
|
668
694
|
--component-tab-icon-above-size: 1.5em;
|
|
669
|
-
--component-tab-count-min-width:
|
|
670
|
-
--component-tab-count-height:
|
|
671
|
-
--component-tab-count-padding-inline:
|
|
672
|
-
--component-tab-count-border-radius:
|
|
673
|
-
--component-tab-count-font-size:
|
|
695
|
+
--component-tab-count-min-width: 1.125rem;
|
|
696
|
+
--component-tab-count-height: 1.125rem;
|
|
697
|
+
--component-tab-count-padding-inline: 0.3125rem;
|
|
698
|
+
--component-tab-count-border-radius: 62.4375rem;
|
|
699
|
+
--component-tab-count-font-size: 0.6875rem;
|
|
674
700
|
--component-tab-count-line-height: 1;
|
|
675
|
-
--component-tab-folder-curve-adjustment: 0.
|
|
676
|
-
--component-tab-progress-step-size:
|
|
677
|
-
--component-tab-progress-step-size-md:
|
|
678
|
-
--component-tab-progress-line-height:
|
|
701
|
+
--component-tab-folder-curve-adjustment: 0.03125rem;
|
|
702
|
+
--component-tab-progress-step-size: 1.5rem;
|
|
703
|
+
--component-tab-progress-step-size-md: 2rem;
|
|
704
|
+
--component-tab-progress-line-height: 0.125rem;
|
|
679
705
|
--component-tab-progress-step-font-size: 0.75rem;
|
|
680
|
-
--component-tab-progress-step-border-width:
|
|
681
|
-
--component-tab-progress-completed-icon-size:
|
|
706
|
+
--component-tab-progress-step-border-width: 0.125rem;
|
|
707
|
+
--component-tab-progress-completed-icon-size: 1rem;
|
|
682
708
|
--component-tab-progress-selected-ring: 0 0 0 3px color-mix(in srgb, var(--semantic-color-action-background) 25%, transparent);
|
|
683
709
|
--component-top-header-height: 64px;
|
|
684
|
-
--component-top-header-padding-inline:
|
|
710
|
+
--component-top-header-padding-inline: 1.5rem;
|
|
685
711
|
--component-top-header-border-width: 1px;
|
|
686
712
|
--component-top-header-z-index: 100;
|
|
687
713
|
--component-paragraph-font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
|
@@ -744,10 +770,10 @@
|
|
|
744
770
|
--brand-a1-font-line-height-body: 1.5em;
|
|
745
771
|
--brand-a1-font-line-height-heading: 1.25em;
|
|
746
772
|
--brand-a1-font-line-height-display: 1.125em;
|
|
747
|
-
--container-query-compact-min:
|
|
748
|
-
--container-query-compact-max:
|
|
749
|
-
--container-query-standard-min:
|
|
750
|
-
--theme-a1-light-button-primary-border-width:
|
|
773
|
+
--container-query-compact-min: 0;
|
|
774
|
+
--container-query-compact-max: 30rem;
|
|
775
|
+
--container-query-standard-min: 30rem;
|
|
776
|
+
--theme-a1-light-button-primary-border-width: 0;
|
|
751
777
|
--theme-a1-light-button-primary-background: #7c3aed;
|
|
752
778
|
--theme-a1-light-button-primary-background-hover: #5916b5;
|
|
753
779
|
--theme-a1-light-button-primary-background-pressed: #230051;
|
|
@@ -774,14 +800,14 @@
|
|
|
774
800
|
--theme-a1-light-button-tertiary-border: #fcfbff;
|
|
775
801
|
--theme-a1-light-button-tertiary-border-hover: #f5f3ff;
|
|
776
802
|
--theme-a1-light-button-tertiary-border-pressed: #e8e4ff;
|
|
777
|
-
--theme-a1-light-button-border-radius:
|
|
778
|
-
--theme-a1-light-button-padding-block:
|
|
779
|
-
--theme-a1-light-button-padding-inline:
|
|
780
|
-
--theme-a1-light-button-min-height:
|
|
803
|
+
--theme-a1-light-button-border-radius: 0.375rem;
|
|
804
|
+
--theme-a1-light-button-padding-block: 0.625rem;
|
|
805
|
+
--theme-a1-light-button-padding-inline: 0.75rem;
|
|
806
|
+
--theme-a1-light-button-min-height: 2.5rem;
|
|
781
807
|
--theme-a1-light-button-gap: 0.5rem;
|
|
782
|
-
--theme-a1-light-button-border-width:
|
|
783
|
-
--theme-a1-light-button-focus-ring-width:
|
|
784
|
-
--theme-a1-light-button-focus-ring-offset:
|
|
808
|
+
--theme-a1-light-button-border-width: 0;
|
|
809
|
+
--theme-a1-light-button-focus-ring-width: 0.1875rem;
|
|
810
|
+
--theme-a1-light-button-focus-ring-offset: 0.125rem;
|
|
785
811
|
--theme-a1-light-button-disabled-opacity: 0.55;
|
|
786
812
|
--theme-a1-light-button-focus-ring: #b5a0ff;
|
|
787
813
|
--theme-a1-light-color-text-default: #060b14;
|