@brijbyte/agentic-ui 0.0.3 → 0.0.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/README.md +132 -35
- package/dist/accordion/accordion.d.ts +14 -0
- package/dist/accordion/accordion.d.ts.map +1 -1
- package/dist/accordion/accordion.js +5 -0
- package/dist/accordion/accordion.js.map +1 -1
- package/dist/alert-dialog/alert-dialog.d.ts +11 -0
- package/dist/alert-dialog/alert-dialog.d.ts.map +1 -1
- package/dist/alert-dialog/alert-dialog.js +5 -0
- package/dist/alert-dialog/alert-dialog.js.map +1 -1
- package/dist/badge/badge.d.ts +6 -0
- package/dist/badge/badge.d.ts.map +1 -1
- package/dist/badge/badge.js +4 -0
- package/dist/badge/badge.js.map +1 -1
- package/dist/button/button.d.ts +12 -1
- package/dist/button/button.d.ts.map +1 -1
- package/dist/button/button.js +5 -0
- package/dist/button/button.js.map +1 -1
- package/dist/card/card.d.ts +10 -0
- package/dist/card/card.d.ts.map +1 -1
- package/dist/card/card.js +7 -0
- package/dist/card/card.js.map +1 -1
- package/dist/checkbox/checkbox.d.ts +13 -0
- package/dist/checkbox/checkbox.d.ts.map +1 -1
- package/dist/checkbox/checkbox.js +4 -0
- package/dist/checkbox/checkbox.js.map +1 -1
- package/dist/collapsible/collapsible.d.ts +11 -0
- package/dist/collapsible/collapsible.d.ts.map +1 -1
- package/dist/collapsible/collapsible.js +5 -0
- package/dist/collapsible/collapsible.js.map +1 -1
- package/dist/context-menu/context-menu.d.ts +5 -0
- package/dist/context-menu/context-menu.d.ts.map +1 -1
- package/dist/context-menu/context-menu.js +4 -0
- package/dist/context-menu/context-menu.js.map +1 -1
- package/dist/dialog/dialog.d.ts +13 -1
- package/dist/dialog/dialog.d.ts.map +1 -1
- package/dist/dialog/dialog.js +6 -0
- package/dist/dialog/dialog.js.map +1 -1
- package/dist/drawer/drawer.d.ts +11 -0
- package/dist/drawer/drawer.d.ts.map +1 -1
- package/dist/drawer/drawer.js +5 -0
- package/dist/drawer/drawer.js.map +1 -1
- package/dist/index.css +1681 -1251
- package/dist/index.d.ts +19 -10
- package/dist/index.js +14 -1
- package/dist/input/input.d.ts +8 -0
- package/dist/input/input.d.ts.map +1 -1
- package/dist/input/input.js +5 -0
- package/dist/input/input.js.map +1 -1
- package/dist/menu/menu.css +3 -8
- package/dist/menu/menu.d.ts +11 -4
- package/dist/menu/menu.d.ts.map +1 -1
- package/dist/menu/menu.js +10 -24
- package/dist/menu/menu.js.map +1 -1
- package/dist/menu/menu.module.js +1 -1
- package/dist/menu/menu.module.js.map +1 -1
- package/dist/meter/circular-meter.d.ts +48 -0
- package/dist/meter/circular-meter.d.ts.map +1 -0
- package/dist/meter/circular-meter.js +86 -0
- package/dist/meter/circular-meter.js.map +1 -0
- package/dist/meter/index.d.ts +4 -0
- package/dist/meter/index.js +5 -0
- package/dist/meter/meter.css +152 -0
- package/dist/meter/meter.d.ts +58 -0
- package/dist/meter/meter.d.ts.map +1 -0
- package/dist/meter/meter.js +50 -0
- package/dist/meter/meter.js.map +1 -0
- package/dist/meter/meter.module.css.d.ts +2 -0
- package/dist/meter/meter.module.js +27 -0
- package/dist/meter/meter.module.js.map +1 -0
- package/dist/meter/meterState.js +18 -0
- package/dist/meter/meterState.js.map +1 -0
- package/dist/meter/parts.d.ts +31 -0
- package/dist/meter/parts.d.ts.map +1 -0
- package/dist/meter/parts.js +56 -0
- package/dist/meter/parts.js.map +1 -0
- package/dist/number-field/number-field.d.ts +16 -0
- package/dist/number-field/number-field.d.ts.map +1 -1
- package/dist/number-field/number-field.js +4 -0
- package/dist/number-field/number-field.js.map +1 -1
- package/dist/popover/index.d.ts +3 -0
- package/dist/popover/index.js +4 -0
- package/dist/popover/parts.d.ts +43 -0
- package/dist/popover/parts.d.ts.map +1 -0
- package/dist/popover/parts.js +96 -0
- package/dist/popover/parts.js.map +1 -0
- package/dist/popover/popover.css +173 -0
- package/dist/popover/popover.d.ts +49 -0
- package/dist/popover/popover.d.ts.map +1 -0
- package/dist/popover/popover.js +68 -0
- package/dist/popover/popover.js.map +1 -0
- package/dist/popover/popover.module.css.d.ts +2 -0
- package/dist/popover/popover.module.js +16 -0
- package/dist/popover/popover.module.js.map +1 -0
- package/dist/progress/progress.d.ts +11 -0
- package/dist/progress/progress.d.ts.map +1 -1
- package/dist/progress/progress.js +5 -0
- package/dist/progress/progress.js.map +1 -1
- package/dist/radio/index.d.ts +3 -0
- package/dist/radio/index.js +4 -0
- package/dist/radio/parts.d.ts +18 -0
- package/dist/radio/parts.d.ts.map +1 -0
- package/dist/radio/parts.js +42 -0
- package/dist/radio/parts.js.map +1 -0
- package/dist/radio/radio.css +84 -0
- package/dist/radio/radio.d.ts +31 -0
- package/dist/radio/radio.d.ts.map +1 -0
- package/dist/radio/radio.js +33 -0
- package/dist/radio/radio.js.map +1 -0
- package/dist/radio/radio.module.css.d.ts +2 -0
- package/dist/radio/radio.module.js +11 -0
- package/dist/radio/radio.module.js.map +1 -0
- package/dist/radio-group/index.d.ts +3 -0
- package/dist/radio-group/index.js +4 -0
- package/dist/radio-group/parts.d.ts +13 -0
- package/dist/radio-group/parts.d.ts.map +1 -0
- package/dist/radio-group/parts.js +31 -0
- package/dist/radio-group/parts.js.map +1 -0
- package/dist/radio-group/radio-group.css +17 -0
- package/dist/radio-group/radio-group.d.ts +37 -0
- package/dist/radio-group/radio-group.d.ts.map +1 -0
- package/dist/radio-group/radio-group.js +28 -0
- package/dist/radio-group/radio-group.js.map +1 -0
- package/dist/radio-group/radio-group.module.css.d.ts +2 -0
- package/dist/radio-group/radio-group.module.js +9 -0
- package/dist/radio-group/radio-group.module.js.map +1 -0
- package/dist/select/select.d.ts +14 -1
- package/dist/select/select.d.ts.map +1 -1
- package/dist/select/select.js +4 -0
- package/dist/select/select.js.map +1 -1
- package/dist/separator/separator.d.ts +4 -0
- package/dist/separator/separator.d.ts.map +1 -1
- package/dist/separator/separator.js +4 -0
- package/dist/separator/separator.js.map +1 -1
- package/dist/shared/PopupArrow.js +22 -0
- package/dist/shared/PopupArrow.js.map +1 -0
- package/dist/slider/slider.d.ts +18 -0
- package/dist/slider/slider.d.ts.map +1 -1
- package/dist/slider/slider.js +6 -0
- package/dist/slider/slider.js.map +1 -1
- package/dist/switch/switch.css +11 -2
- package/dist/switch/switch.d.ts +12 -0
- package/dist/switch/switch.d.ts.map +1 -1
- package/dist/switch/switch.js +4 -0
- package/dist/switch/switch.js.map +1 -1
- package/dist/switch/switch.module.js.map +1 -1
- package/dist/tabs/tabs.d.ts +8 -1
- package/dist/tabs/tabs.d.ts.map +1 -1
- package/dist/tabs/tabs.js +4 -0
- package/dist/tabs/tabs.js.map +1 -1
- package/dist/toast/toast.d.ts +11 -0
- package/dist/toast/toast.d.ts.map +1 -1
- package/dist/toast/toast.js +8 -0
- package/dist/toast/toast.js.map +1 -1
- package/dist/tooltip/tooltip.d.ts +9 -0
- package/dist/tooltip/tooltip.d.ts.map +1 -1
- package/dist/tooltip/tooltip.js +4 -0
- package/dist/tooltip/tooltip.js.map +1 -1
- package/package.json +22 -2
- package/src/accordion/accordion.tsx +14 -0
- package/src/alert-dialog/alert-dialog.tsx +11 -0
- package/src/badge/badge.tsx +6 -0
- package/src/button/button.tsx +12 -1
- package/src/card/card.tsx +10 -0
- package/src/checkbox/checkbox.tsx +13 -0
- package/src/collapsible/collapsible.tsx +11 -0
- package/src/context-menu/context-menu.tsx +5 -0
- package/src/dialog/dialog.tsx +13 -1
- package/src/drawer/drawer.tsx +11 -0
- package/src/index.ts +4 -0
- package/src/input/input.tsx +8 -0
- package/src/menu/menu.module.css +3 -10
- package/src/menu/menu.tsx +13 -26
- package/src/meter/circular-meter.tsx +114 -0
- package/src/meter/index.ts +9 -0
- package/src/meter/meter.module.css +162 -0
- package/src/meter/meter.tsx +86 -0
- package/src/meter/meterState.ts +29 -0
- package/src/meter/parts.tsx +72 -0
- package/src/number-field/number-field.tsx +16 -0
- package/src/popover/index.ts +14 -0
- package/src/popover/parts.tsx +120 -0
- package/src/popover/popover.module.css +189 -0
- package/src/popover/popover.tsx +80 -0
- package/src/progress/progress.tsx +11 -0
- package/src/radio/index.ts +6 -0
- package/src/radio/parts.tsx +43 -0
- package/src/radio/radio.module.css +96 -0
- package/src/radio/radio.tsx +37 -0
- package/src/radio-group/index.ts +5 -0
- package/src/radio-group/parts.tsx +32 -0
- package/src/radio-group/radio-group.module.css +17 -0
- package/src/radio-group/radio-group.tsx +63 -0
- package/src/select/select.tsx +14 -1
- package/src/separator/separator.tsx +4 -0
- package/src/shared/PopupArrow.tsx +41 -0
- package/src/slider/slider.tsx +18 -0
- package/src/switch/switch.module.css +11 -2
- package/src/switch/switch.tsx +12 -0
- package/src/tabs/tabs.tsx +8 -1
- package/src/toast/toast.tsx +11 -0
- package/src/tooltip/tooltip.tsx +9 -0
package/dist/index.css
CHANGED
|
@@ -357,69 +357,67 @@
|
|
|
357
357
|
}
|
|
358
358
|
}
|
|
359
359
|
@layer components {
|
|
360
|
-
.
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
font-weight: var(--font-weight-medium);
|
|
366
|
-
letter-spacing: var(--letter-spacing-wide);
|
|
367
|
-
border-radius: var(--radius-sm);
|
|
368
|
-
border: var(--border-width-base) solid transparent;
|
|
369
|
-
padding: 2px var(--space-1-5);
|
|
370
|
-
white-space: nowrap;
|
|
371
|
-
line-height: 1;
|
|
372
|
-
display: inline-flex;
|
|
360
|
+
.root_mD1LSW {
|
|
361
|
+
background-color: var(--color-surface-1);
|
|
362
|
+
border: var(--border-width-base) solid var(--color-line);
|
|
363
|
+
border-radius: var(--radius-xl);
|
|
364
|
+
overflow: hidden;
|
|
373
365
|
}
|
|
374
366
|
|
|
375
|
-
.
|
|
376
|
-
|
|
377
|
-
border-color: var(--color-line);
|
|
378
|
-
color: var(--color-secondary);
|
|
367
|
+
.root-elevated_mD1LSW {
|
|
368
|
+
box-shadow: var(--shadow-sm);
|
|
379
369
|
}
|
|
380
370
|
|
|
381
|
-
.
|
|
382
|
-
|
|
371
|
+
.root-interactive_mD1LSW {
|
|
372
|
+
cursor: pointer;
|
|
373
|
+
transition: border-color var(--duration-fast) var(--easing-standard),
|
|
374
|
+
box-shadow var(--duration-fast) var(--easing-standard),
|
|
375
|
+
transform var(--duration-fast) var(--easing-standard);
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
.root-interactive_mD1LSW:hover {
|
|
383
379
|
border-color: var(--color-accent);
|
|
384
|
-
|
|
380
|
+
box-shadow: var(--shadow-md);
|
|
385
381
|
}
|
|
386
382
|
|
|
387
|
-
.
|
|
388
|
-
|
|
389
|
-
border-color: var(--color-accent-tint-hover);
|
|
390
|
-
color: var(--color-accent);
|
|
383
|
+
.root-interactive_mD1LSW:active {
|
|
384
|
+
transform: scale(.995);
|
|
391
385
|
}
|
|
392
386
|
|
|
393
|
-
.
|
|
394
|
-
|
|
395
|
-
border-
|
|
396
|
-
|
|
387
|
+
.header_mD1LSW {
|
|
388
|
+
padding: var(--space-4) var(--space-5);
|
|
389
|
+
border-bottom: var(--border-width-base) solid var(--color-line-subtle);
|
|
390
|
+
gap: var(--space-0-5);
|
|
391
|
+
flex-direction: column;
|
|
392
|
+
display: flex;
|
|
397
393
|
}
|
|
398
394
|
|
|
399
|
-
.
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
395
|
+
.title_mD1LSW {
|
|
396
|
+
font-family: var(--font-mono);
|
|
397
|
+
font-size: var(--font-size-md);
|
|
398
|
+
font-weight: var(--font-weight-semibold);
|
|
399
|
+
color: var(--color-primary);
|
|
400
|
+
line-height: var(--line-height-tight);
|
|
401
|
+
letter-spacing: var(--letter-spacing-tight);
|
|
403
402
|
}
|
|
404
403
|
|
|
405
|
-
.
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
color: var(--color-
|
|
404
|
+
.description_mD1LSW {
|
|
405
|
+
font-family: var(--font-mono);
|
|
406
|
+
font-size: var(--font-size-sm);
|
|
407
|
+
color: var(--color-secondary);
|
|
408
|
+
line-height: var(--line-height-normal);
|
|
409
409
|
}
|
|
410
410
|
|
|
411
|
-
.
|
|
412
|
-
|
|
413
|
-
border-color: var(--color-info-border);
|
|
414
|
-
color: var(--color-info-text);
|
|
411
|
+
.body_mD1LSW {
|
|
412
|
+
padding: var(--space-4) var(--space-5);
|
|
415
413
|
}
|
|
416
414
|
|
|
417
|
-
.
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
415
|
+
.footer_mD1LSW {
|
|
416
|
+
padding: var(--space-3) var(--space-5);
|
|
417
|
+
border-top: var(--border-width-base) solid var(--color-line-subtle);
|
|
418
|
+
align-items: center;
|
|
419
|
+
gap: var(--space-2);
|
|
420
|
+
display: flex;
|
|
423
421
|
}
|
|
424
422
|
}
|
|
425
423
|
@layer components {
|
|
@@ -439,7 +437,7 @@
|
|
|
439
437
|
font-family: var(--font-mono);
|
|
440
438
|
font-size: var(--font-size-sm);
|
|
441
439
|
min-width: 200px;
|
|
442
|
-
|
|
440
|
+
transition: opacity .15s var(--easing-ease-out);
|
|
443
441
|
outline: none;
|
|
444
442
|
}
|
|
445
443
|
|
|
@@ -451,16 +449,11 @@
|
|
|
451
449
|
|
|
452
450
|
.popup_HVPjPa[data-starting-style] {
|
|
453
451
|
opacity: 0;
|
|
454
|
-
transition: opacity .15s var(--easing-ease-out),
|
|
455
|
-
transform .15s var(--easing-ease-out);
|
|
456
|
-
transform: scale(.95);
|
|
457
452
|
}
|
|
458
453
|
|
|
459
454
|
.popup_HVPjPa[data-ending-style] {
|
|
460
455
|
opacity: 0;
|
|
461
|
-
transition: opacity 75ms var(--easing-ease-in)
|
|
462
|
-
transform 75ms var(--easing-ease-in);
|
|
463
|
-
transform: scale(.98);
|
|
456
|
+
transition: opacity 75ms var(--easing-ease-in);
|
|
464
457
|
}
|
|
465
458
|
|
|
466
459
|
.item_HVPjPa {
|
|
@@ -572,867 +565,805 @@
|
|
|
572
565
|
fill: var(--color-overlay);
|
|
573
566
|
}
|
|
574
567
|
|
|
575
|
-
.arrow-
|
|
568
|
+
.arrow-seam_HVPjPa {
|
|
576
569
|
fill: var(--color-line);
|
|
577
570
|
}
|
|
578
571
|
}
|
|
579
572
|
@layer components {
|
|
580
|
-
.
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
573
|
+
.root_fRZpDq {
|
|
574
|
+
align-items: center;
|
|
575
|
+
gap: var(--space-1);
|
|
576
|
+
font-family: var(--font-mono);
|
|
577
|
+
font-size: var(--font-size-xs);
|
|
578
|
+
font-weight: var(--font-weight-medium);
|
|
579
|
+
letter-spacing: var(--letter-spacing-wide);
|
|
580
|
+
border-radius: var(--radius-sm);
|
|
581
|
+
border: var(--border-width-base) solid transparent;
|
|
582
|
+
padding: 2px var(--space-1-5);
|
|
583
|
+
white-space: nowrap;
|
|
584
|
+
line-height: 1;
|
|
585
|
+
display: inline-flex;
|
|
589
586
|
}
|
|
590
587
|
|
|
591
|
-
.
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
transform var(--duration-fast) var(--easing-standard);
|
|
588
|
+
.variant-default_fRZpDq {
|
|
589
|
+
background-color: var(--color-surface-3);
|
|
590
|
+
border-color: var(--color-line);
|
|
591
|
+
color: var(--color-secondary);
|
|
596
592
|
}
|
|
597
593
|
|
|
598
|
-
.
|
|
594
|
+
.variant-solid_fRZpDq {
|
|
595
|
+
background-color: var(--color-accent);
|
|
599
596
|
border-color: var(--color-accent);
|
|
600
|
-
|
|
597
|
+
color: var(--color-on-accent);
|
|
601
598
|
}
|
|
602
599
|
|
|
603
|
-
.
|
|
604
|
-
|
|
600
|
+
.variant-soft_fRZpDq {
|
|
601
|
+
background-color: var(--color-accent-tint);
|
|
602
|
+
border-color: var(--color-accent-tint-hover);
|
|
603
|
+
color: var(--color-accent);
|
|
605
604
|
}
|
|
606
605
|
|
|
607
|
-
.
|
|
608
|
-
|
|
609
|
-
border-
|
|
610
|
-
|
|
611
|
-
flex-direction: column;
|
|
612
|
-
display: flex;
|
|
606
|
+
.variant-success_fRZpDq {
|
|
607
|
+
background-color: var(--color-success-bg);
|
|
608
|
+
border-color: var(--color-success-border);
|
|
609
|
+
color: var(--color-success-text);
|
|
613
610
|
}
|
|
614
611
|
|
|
615
|
-
.
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
color: var(--color-primary);
|
|
620
|
-
line-height: var(--line-height-tight);
|
|
621
|
-
letter-spacing: var(--letter-spacing-tight);
|
|
612
|
+
.variant-warning_fRZpDq {
|
|
613
|
+
background-color: var(--color-warning-bg);
|
|
614
|
+
border-color: var(--color-warning-border);
|
|
615
|
+
color: var(--color-warning-text);
|
|
622
616
|
}
|
|
623
617
|
|
|
624
|
-
.
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
color: var(--color-
|
|
628
|
-
line-height: var(--line-height-normal);
|
|
618
|
+
.variant-error_fRZpDq {
|
|
619
|
+
background-color: var(--color-error-bg);
|
|
620
|
+
border-color: var(--color-error-border);
|
|
621
|
+
color: var(--color-error-text);
|
|
629
622
|
}
|
|
630
623
|
|
|
631
|
-
.
|
|
632
|
-
|
|
624
|
+
.variant-info_fRZpDq {
|
|
625
|
+
background-color: var(--color-info-bg);
|
|
626
|
+
border-color: var(--color-info-border);
|
|
627
|
+
color: var(--color-info-text);
|
|
633
628
|
}
|
|
634
629
|
|
|
635
|
-
.
|
|
636
|
-
|
|
637
|
-
|
|
630
|
+
.dot_fRZpDq {
|
|
631
|
+
border-radius: var(--radius-full);
|
|
632
|
+
background-color: currentColor;
|
|
633
|
+
flex-shrink: 0;
|
|
634
|
+
width: 5px;
|
|
635
|
+
height: 5px;
|
|
636
|
+
}
|
|
637
|
+
}
|
|
638
|
+
@layer components {
|
|
639
|
+
.root_3hDtBa {
|
|
638
640
|
align-items: center;
|
|
639
641
|
gap: var(--space-2);
|
|
642
|
+
cursor: pointer;
|
|
643
|
+
user-select: none;
|
|
640
644
|
display: flex;
|
|
641
645
|
}
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
z-index: var(--z-dropdown);
|
|
646
|
-
outline: none;
|
|
646
|
+
|
|
647
|
+
.root_3hDtBa:has([data-disabled]) {
|
|
648
|
+
cursor: not-allowed;
|
|
647
649
|
}
|
|
648
650
|
|
|
649
|
-
.
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
651
|
+
.root_3hDtBa:has([data-disabled]) .label_3hDtBa {
|
|
652
|
+
opacity: .44;
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
.thumb-track_3hDtBa {
|
|
656
|
+
border-radius: var(--radius-full);
|
|
657
|
+
background-color: var(--color-surface-3);
|
|
654
658
|
border: var(--border-width-base) solid var(--color-line);
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
transform-origin: var(--transform-origin);
|
|
661
|
-
transition: opacity .15s var(--easing-ease-out),
|
|
662
|
-
transform .15s var(--easing-ease-out);
|
|
659
|
+
width: 36px;
|
|
660
|
+
height: 20px;
|
|
661
|
+
transition: background-color var(--duration-normal) var(--easing-standard),
|
|
662
|
+
border-color var(--duration-normal) var(--easing-standard),
|
|
663
|
+
box-shadow var(--duration-fast) var(--easing-standard);
|
|
663
664
|
outline: none;
|
|
665
|
+
flex-shrink: 0;
|
|
666
|
+
position: relative;
|
|
664
667
|
}
|
|
665
668
|
|
|
666
|
-
|
|
667
|
-
.
|
|
668
|
-
|
|
669
|
-
|
|
669
|
+
.thumb-track_3hDtBa[data-disabled] {
|
|
670
|
+
opacity: .44;
|
|
671
|
+
cursor: not-allowed;
|
|
672
|
+
pointer-events: none;
|
|
670
673
|
}
|
|
671
674
|
|
|
672
|
-
.
|
|
673
|
-
|
|
674
|
-
transform: scale(.97);
|
|
675
|
+
.thumb-track_3hDtBa:focus-visible {
|
|
676
|
+
box-shadow: var(--shadow-focus);
|
|
675
677
|
}
|
|
676
678
|
|
|
677
|
-
.
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
transform 75ms var(--easing-ease-in);
|
|
681
|
-
transform: scale(.99);
|
|
679
|
+
.thumb-track_3hDtBa[data-checked] {
|
|
680
|
+
background-color: var(--color-accent);
|
|
681
|
+
border-color: var(--color-accent);
|
|
682
682
|
}
|
|
683
683
|
|
|
684
|
-
.
|
|
685
|
-
-
|
|
686
|
-
|
|
687
|
-
cursor: default;
|
|
688
|
-
outline: none;
|
|
689
|
-
display: block;
|
|
684
|
+
.thumb-track_3hDtBa[data-checked]:hover {
|
|
685
|
+
background-color: var(--color-accent-hover);
|
|
686
|
+
border-color: var(--color-accent-hover);
|
|
690
687
|
}
|
|
691
688
|
|
|
692
|
-
.
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
color:
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
transition: none;
|
|
703
|
-
display: flex;
|
|
704
|
-
position: relative;
|
|
689
|
+
.thumb_3hDtBa {
|
|
690
|
+
border-radius: var(--radius-full);
|
|
691
|
+
width: 14px;
|
|
692
|
+
height: 14px;
|
|
693
|
+
box-shadow: var(--shadow-xs);
|
|
694
|
+
transition: transform var(--duration-normal) var(--easing-spring);
|
|
695
|
+
background-color: #fff;
|
|
696
|
+
position: absolute;
|
|
697
|
+
top: 2px;
|
|
698
|
+
left: 2px;
|
|
705
699
|
}
|
|
706
700
|
|
|
707
|
-
.
|
|
708
|
-
|
|
709
|
-
color: var(--color-on-accent);
|
|
701
|
+
.thumb-track_3hDtBa[data-checked] .thumb_3hDtBa {
|
|
702
|
+
transform: translateX(16px);
|
|
710
703
|
}
|
|
711
704
|
|
|
712
|
-
.
|
|
713
|
-
|
|
714
|
-
|
|
705
|
+
.label_3hDtBa {
|
|
706
|
+
font-family: var(--font-mono);
|
|
707
|
+
font-size: var(--font-size-sm);
|
|
708
|
+
color: var(--color-primary);
|
|
709
|
+
}
|
|
710
|
+
}
|
|
711
|
+
@layer components {
|
|
712
|
+
.root_eYYE3W {
|
|
713
|
+
gap: var(--space-1-5);
|
|
714
|
+
flex-direction: column;
|
|
715
|
+
width: 100%;
|
|
716
|
+
display: flex;
|
|
715
717
|
}
|
|
716
718
|
|
|
717
|
-
.
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
color:
|
|
721
|
-
|
|
722
|
-
justify-content: center;
|
|
719
|
+
.label-row_eYYE3W {
|
|
720
|
+
font-family: var(--font-mono);
|
|
721
|
+
font-size: var(--font-size-xs);
|
|
722
|
+
color: var(--color-secondary);
|
|
723
|
+
justify-content: space-between;
|
|
723
724
|
align-items: center;
|
|
724
725
|
display: flex;
|
|
725
726
|
}
|
|
726
727
|
|
|
727
|
-
.
|
|
728
|
-
|
|
728
|
+
.track_eYYE3W {
|
|
729
|
+
background-color: var(--color-surface-3);
|
|
730
|
+
border-radius: var(--radius-full);
|
|
731
|
+
width: 100%;
|
|
732
|
+
height: 6px;
|
|
733
|
+
overflow: hidden;
|
|
729
734
|
}
|
|
730
735
|
|
|
731
|
-
.
|
|
732
|
-
|
|
733
|
-
font-size: var(--font-size-sm);
|
|
734
|
-
color: var(--color-tertiary);
|
|
735
|
-
flex-shrink: 0;
|
|
736
|
+
.track-sm_eYYE3W {
|
|
737
|
+
height: 4px;
|
|
736
738
|
}
|
|
737
739
|
|
|
738
|
-
.
|
|
739
|
-
|
|
740
|
+
.track-md_eYYE3W {
|
|
741
|
+
height: 6px;
|
|
740
742
|
}
|
|
741
743
|
|
|
742
|
-
.
|
|
743
|
-
|
|
744
|
-
flex-shrink: 0;
|
|
745
|
-
margin-left: auto;
|
|
744
|
+
.track-lg_eYYE3W {
|
|
745
|
+
height: 8px;
|
|
746
746
|
}
|
|
747
747
|
|
|
748
|
-
.
|
|
749
|
-
|
|
748
|
+
.indicator_eYYE3W {
|
|
749
|
+
border-radius: var(--radius-full);
|
|
750
|
+
background-color: var(--color-accent);
|
|
751
|
+
height: 100%;
|
|
752
|
+
transition: width var(--duration-slower) var(--easing-standard);
|
|
750
753
|
}
|
|
751
754
|
|
|
752
|
-
.
|
|
753
|
-
|
|
754
|
-
gap: var(--space-2);
|
|
755
|
-
padding: var(--space-1) var(--space-4);
|
|
756
|
-
font-family: var(--font-sans);
|
|
757
|
-
font-size: var(--font-size-md);
|
|
758
|
-
color: var(--color-primary);
|
|
759
|
-
cursor: default;
|
|
760
|
-
user-select: none;
|
|
761
|
-
outline: none;
|
|
762
|
-
transition: none;
|
|
763
|
-
display: flex;
|
|
755
|
+
.indicator-success_eYYE3W {
|
|
756
|
+
background-color: var(--color-success-solid);
|
|
764
757
|
}
|
|
765
758
|
|
|
766
|
-
.
|
|
767
|
-
background-color: var(--color-
|
|
768
|
-
color: var(--color-on-accent);
|
|
759
|
+
.indicator-warning_eYYE3W {
|
|
760
|
+
background-color: var(--color-warning-solid);
|
|
769
761
|
}
|
|
770
762
|
|
|
771
|
-
.
|
|
772
|
-
|
|
773
|
-
cursor: not-allowed;
|
|
763
|
+
.indicator-error_eYYE3W {
|
|
764
|
+
background-color: var(--color-error-solid);
|
|
774
765
|
}
|
|
775
766
|
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
cursor: default;
|
|
785
|
-
user-select: none;
|
|
767
|
+
@keyframes progress-indeterminate_eYYE3W {
|
|
768
|
+
0% {
|
|
769
|
+
transform: translateX(-100%);
|
|
770
|
+
}
|
|
771
|
+
|
|
772
|
+
100% {
|
|
773
|
+
transform: translateX(400%);
|
|
774
|
+
}
|
|
786
775
|
}
|
|
787
776
|
|
|
788
|
-
.
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
background-color: var(--color-line-subtle);
|
|
777
|
+
.indicator_eYYE3W[data-value="null"], .indicator-indeterminate_eYYE3W {
|
|
778
|
+
animation: 1.4s linear infinite progress-indeterminate_eYYE3W;
|
|
779
|
+
width: 30% !important;
|
|
792
780
|
}
|
|
793
781
|
}
|
|
794
782
|
@layer components {
|
|
795
|
-
.
|
|
796
|
-
|
|
797
|
-
z-index: var(--z-overlay);
|
|
798
|
-
transition: opacity var(--duration-slow) var(--easing-standard);
|
|
799
|
-
background-color: #0000007a;
|
|
800
|
-
position: fixed;
|
|
801
|
-
inset: 0;
|
|
802
|
-
|
|
803
|
-
@supports (-webkit-touch-callout: none) {
|
|
804
|
-
position: absolute;
|
|
805
|
-
}
|
|
806
|
-
}
|
|
807
|
-
|
|
808
|
-
.backdrop_xocxMW[data-starting-style], .backdrop_xocxMW[data-ending-style] {
|
|
809
|
-
opacity: 0;
|
|
783
|
+
.positioner_yQZxSq {
|
|
784
|
+
z-index: var(--z-tooltip);
|
|
810
785
|
}
|
|
811
786
|
|
|
812
|
-
.
|
|
813
|
-
|
|
814
|
-
background-color: var(--color-elevated);
|
|
787
|
+
.popup_yQZxSq {
|
|
788
|
+
background-color: var(--color-surface-3);
|
|
815
789
|
border: var(--border-width-base) solid var(--color-line);
|
|
816
|
-
border-radius: var(--radius-
|
|
817
|
-
box-shadow: var(--shadow-
|
|
818
|
-
padding: var(--space-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
left: 50%;
|
|
829
|
-
overflow: hidden;
|
|
830
|
-
transform: translate(-50%, -50%);
|
|
790
|
+
border-radius: var(--radius-sm);
|
|
791
|
+
box-shadow: var(--shadow-sm);
|
|
792
|
+
padding: var(--space-1) var(--space-2);
|
|
793
|
+
font-family: var(--font-mono);
|
|
794
|
+
font-size: var(--font-size-xs);
|
|
795
|
+
color: var(--color-primary);
|
|
796
|
+
line-height: var(--line-height-normal);
|
|
797
|
+
word-break: break-word;
|
|
798
|
+
max-width: 240px;
|
|
799
|
+
transform-origin: var(--transform-origin);
|
|
800
|
+
transition: opacity .15s var(--easing-ease-out),
|
|
801
|
+
transform .3s var(--easing-spring);
|
|
831
802
|
}
|
|
832
803
|
|
|
833
|
-
.
|
|
834
|
-
|
|
835
|
-
transform: translate(-50%, -48%) scale(.96);
|
|
804
|
+
.popup_yQZxSq[data-instant] {
|
|
805
|
+
transition-duration: 0s;
|
|
836
806
|
}
|
|
837
807
|
|
|
838
|
-
.
|
|
808
|
+
.popup_yQZxSq[data-starting-style] {
|
|
839
809
|
opacity: 0;
|
|
840
|
-
|
|
841
|
-
transform .15s var(--easing-ease-in);
|
|
842
|
-
transform: translate(-50%, -50%) scale(.98);
|
|
810
|
+
transform: scale(.85);
|
|
843
811
|
}
|
|
844
812
|
|
|
845
|
-
.
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
813
|
+
.popup_yQZxSq[data-ending-style] {
|
|
814
|
+
opacity: 0;
|
|
815
|
+
transition: opacity 75ms var(--easing-ease-in),
|
|
816
|
+
transform 75ms var(--easing-ease-in);
|
|
817
|
+
transform: scale(.95);
|
|
849
818
|
}
|
|
850
819
|
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
820
|
+
@media (prefers-reduced-motion: reduce) {
|
|
821
|
+
.popup_yQZxSq {
|
|
822
|
+
transition: opacity .125s var(--easing-ease-out);
|
|
823
|
+
}
|
|
854
824
|
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
font-weight: var(--font-weight-bold);
|
|
859
|
-
color: var(--color-primary);
|
|
860
|
-
line-height: var(--line-height-tight);
|
|
861
|
-
}
|
|
825
|
+
.popup_yQZxSq[data-ending-style] {
|
|
826
|
+
transition: opacity 75ms var(--easing-ease-in);
|
|
827
|
+
}
|
|
862
828
|
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
color: var(--color-secondary);
|
|
867
|
-
line-height: var(--line-height-relaxed);
|
|
829
|
+
.popup_yQZxSq[data-starting-style], .popup_yQZxSq[data-ending-style] {
|
|
830
|
+
transform: none;
|
|
831
|
+
}
|
|
868
832
|
}
|
|
869
833
|
|
|
870
|
-
.
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
834
|
+
.arrow_yQZxSq {
|
|
835
|
+
width: 8px;
|
|
836
|
+
height: 8px;
|
|
837
|
+
fill: var(--color-surface-3);
|
|
838
|
+
stroke: var(--color-line);
|
|
839
|
+
stroke-width: 1px;
|
|
876
840
|
}
|
|
877
841
|
}
|
|
878
842
|
@layer components {
|
|
879
|
-
.
|
|
880
|
-
border: var(--border-width-base) solid var(--color-line);
|
|
881
|
-
border-radius: var(--radius-lg);
|
|
843
|
+
.root_prqJ8a {
|
|
882
844
|
flex-direction: column;
|
|
883
845
|
gap: 0;
|
|
884
846
|
display: flex;
|
|
885
|
-
overflow: hidden;
|
|
886
847
|
}
|
|
887
848
|
|
|
888
|
-
.
|
|
889
|
-
|
|
849
|
+
.list_prqJ8a {
|
|
850
|
+
align-items: center;
|
|
851
|
+
gap: var(--space-px);
|
|
852
|
+
border-bottom: var(--border-width-base) solid var(--color-line);
|
|
853
|
+
scrollbar-width: none;
|
|
854
|
+
display: flex;
|
|
855
|
+
overflow-x: auto;
|
|
890
856
|
}
|
|
891
857
|
|
|
892
|
-
.
|
|
893
|
-
|
|
858
|
+
.list_prqJ8a::-webkit-scrollbar {
|
|
859
|
+
display: none;
|
|
894
860
|
}
|
|
895
861
|
|
|
896
|
-
.
|
|
897
|
-
align-items: center;
|
|
898
|
-
display: flex;
|
|
899
|
-
}
|
|
900
|
-
|
|
901
|
-
.trigger_XcG3ua {
|
|
902
|
-
justify-content: space-between;
|
|
862
|
+
.tab_prqJ8a {
|
|
903
863
|
align-items: center;
|
|
904
|
-
gap: var(--space-
|
|
905
|
-
padding: var(--space-
|
|
864
|
+
gap: var(--space-1-5);
|
|
865
|
+
padding: var(--space-1-5) var(--space-3);
|
|
906
866
|
font-family: var(--font-mono);
|
|
907
867
|
font-size: var(--font-size-sm);
|
|
908
|
-
font-weight: var(--font-weight-
|
|
909
|
-
color: var(--color-
|
|
868
|
+
font-weight: var(--font-weight-regular);
|
|
869
|
+
color: var(--color-tertiary);
|
|
910
870
|
cursor: pointer;
|
|
911
|
-
|
|
912
|
-
transition:
|
|
913
|
-
color var(--duration-fast) var(--easing-standard);
|
|
871
|
+
white-space: nowrap;
|
|
872
|
+
transition: color var(--duration-fast) var(--easing-standard),
|
|
873
|
+
border-color var(--duration-fast) var(--easing-standard);
|
|
914
874
|
user-select: none;
|
|
915
875
|
background: none;
|
|
916
876
|
border: none;
|
|
877
|
+
border-bottom: 3px solid #0000;
|
|
917
878
|
outline: none;
|
|
918
|
-
|
|
919
|
-
display: flex;
|
|
879
|
+
margin-bottom: -1px;
|
|
880
|
+
display: inline-flex;
|
|
881
|
+
position: relative;
|
|
920
882
|
}
|
|
921
883
|
|
|
922
|
-
.
|
|
923
|
-
|
|
884
|
+
.tab_prqJ8a:hover:not([data-disabled]) {
|
|
885
|
+
color: var(--color-primary);
|
|
886
|
+
border-bottom-color: var(--color-line-strong);
|
|
924
887
|
}
|
|
925
888
|
|
|
926
|
-
.
|
|
927
|
-
|
|
889
|
+
.tab_prqJ8a:focus-visible {
|
|
890
|
+
outline: none;
|
|
928
891
|
}
|
|
929
892
|
|
|
930
|
-
.
|
|
893
|
+
.tab_prqJ8a:focus-visible:after {
|
|
894
|
+
content: "";
|
|
895
|
+
border-radius: var(--radius-sm);
|
|
896
|
+
box-shadow: var(--shadow-focus);
|
|
897
|
+
pointer-events: none;
|
|
898
|
+
position: absolute;
|
|
899
|
+
inset: 2px 2px 8px;
|
|
900
|
+
}
|
|
901
|
+
|
|
902
|
+
.tab_prqJ8a[data-active] {
|
|
903
|
+
color: var(--color-primary);
|
|
904
|
+
font-weight: var(--font-weight-medium);
|
|
905
|
+
border-bottom-color: var(--color-accent);
|
|
906
|
+
}
|
|
907
|
+
|
|
908
|
+
.tab_prqJ8a[data-disabled] {
|
|
931
909
|
opacity: .44;
|
|
932
910
|
cursor: not-allowed;
|
|
933
911
|
}
|
|
934
912
|
|
|
935
|
-
.
|
|
936
|
-
|
|
937
|
-
transition:
|
|
938
|
-
|
|
913
|
+
.panel_prqJ8a {
|
|
914
|
+
padding-top: var(--space-4);
|
|
915
|
+
transition: opacity .15s var(--easing-ease-out);
|
|
916
|
+
outline: none;
|
|
939
917
|
}
|
|
940
918
|
|
|
941
|
-
.
|
|
942
|
-
|
|
919
|
+
.panel_prqJ8a[data-starting-style] {
|
|
920
|
+
opacity: 0;
|
|
943
921
|
}
|
|
944
922
|
|
|
945
|
-
.
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
923
|
+
.panel_prqJ8a:focus-visible {
|
|
924
|
+
box-shadow: var(--shadow-focus);
|
|
925
|
+
border-radius: var(--radius-sm);
|
|
926
|
+
}
|
|
927
|
+
}
|
|
928
|
+
@layer components {
|
|
929
|
+
.separator_027UfG {
|
|
930
|
+
background-color: var(--color-line);
|
|
931
|
+
flex-shrink: 0;
|
|
949
932
|
}
|
|
950
933
|
|
|
951
|
-
.
|
|
952
|
-
|
|
934
|
+
.separator_027UfG[data-orientation="horizontal"] {
|
|
935
|
+
width: 100%;
|
|
936
|
+
height: var(--border-width-base, 1px);
|
|
953
937
|
}
|
|
954
938
|
|
|
955
|
-
.
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
font-size: var(--font-size-sm);
|
|
959
|
-
color: var(--color-secondary);
|
|
960
|
-
line-height: var(--line-height-relaxed);
|
|
939
|
+
.separator_027UfG[data-orientation="vertical"] {
|
|
940
|
+
width: var(--border-width-base, 1px);
|
|
941
|
+
align-self: stretch;
|
|
961
942
|
}
|
|
962
943
|
}
|
|
963
944
|
@layer components {
|
|
964
|
-
.
|
|
965
|
-
|
|
945
|
+
.viewport_QXnIWW {
|
|
946
|
+
bottom: var(--space-4);
|
|
947
|
+
right: var(--space-4);
|
|
948
|
+
z-index: var(--z-toast);
|
|
949
|
+
width: 360px;
|
|
950
|
+
max-width: calc(100vw - var(--space-8));
|
|
951
|
+
pointer-events: none;
|
|
952
|
+
outline: none;
|
|
966
953
|
flex-direction: column;
|
|
967
|
-
|
|
954
|
+
list-style: none;
|
|
968
955
|
display: flex;
|
|
956
|
+
position: fixed;
|
|
969
957
|
}
|
|
970
958
|
|
|
971
|
-
.
|
|
972
|
-
|
|
973
|
-
font-size: var(--font-size-xs);
|
|
974
|
-
color: var(--color-secondary);
|
|
975
|
-
justify-content: space-between;
|
|
976
|
-
align-items: center;
|
|
977
|
-
display: flex;
|
|
959
|
+
.viewport-list_QXnIWW {
|
|
960
|
+
gap: var(--space-2);
|
|
978
961
|
}
|
|
979
962
|
|
|
980
|
-
.
|
|
981
|
-
|
|
982
|
-
|
|
963
|
+
.viewport-stacked_QXnIWW {
|
|
964
|
+
gap: 0;
|
|
965
|
+
}
|
|
966
|
+
|
|
967
|
+
.toast_QXnIWW {
|
|
968
|
+
align-items: flex-start;
|
|
969
|
+
gap: var(--space-3);
|
|
970
|
+
padding: var(--space-3) var(--space-4);
|
|
971
|
+
background-color: var(--color-overlay);
|
|
972
|
+
border: var(--border-width-base) solid var(--color-line);
|
|
973
|
+
border-radius: var(--radius-xl);
|
|
974
|
+
box-shadow: var(--shadow-popover);
|
|
975
|
+
pointer-events: auto;
|
|
976
|
+
cursor: default;
|
|
983
977
|
width: 100%;
|
|
984
|
-
|
|
985
|
-
overflow: hidden;
|
|
978
|
+
display: flex;
|
|
986
979
|
}
|
|
987
980
|
|
|
988
|
-
|
|
989
|
-
|
|
981
|
+
@supports (backdrop-filter: blur(12px)) {
|
|
982
|
+
.toast_QXnIWW {
|
|
983
|
+
-webkit-backdrop-filter: blur(12px) saturate(1.5);
|
|
984
|
+
}
|
|
990
985
|
}
|
|
991
986
|
|
|
992
|
-
.
|
|
993
|
-
|
|
987
|
+
.viewport-list_QXnIWW .toast_QXnIWW {
|
|
988
|
+
transform-origin: 100% 100%;
|
|
989
|
+
opacity: 1;
|
|
990
|
+
transition: opacity .3s var(--easing-ease-out),
|
|
991
|
+
transform .3s var(--easing-spring);
|
|
992
|
+
transform: translateX(0);
|
|
993
|
+
|
|
994
|
+
@starting-style {
|
|
995
|
+
opacity: 0;
|
|
996
|
+
transform: translateX(calc(100% + var(--space-4)));
|
|
997
|
+
}
|
|
994
998
|
}
|
|
995
999
|
|
|
996
|
-
.
|
|
997
|
-
|
|
1000
|
+
.viewport-list_QXnIWW .toast_QXnIWW[data-ending-style] {
|
|
1001
|
+
opacity: 0;
|
|
1002
|
+
transform: translateX(calc(100% + var(--space-4)));
|
|
1003
|
+
transition: opacity .2s var(--easing-ease-in),
|
|
1004
|
+
transform .2s var(--easing-ease-in);
|
|
998
1005
|
}
|
|
999
1006
|
|
|
1000
|
-
.
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
transition:
|
|
1007
|
+
.viewport-stacked_QXnIWW {
|
|
1008
|
+
height: calc(var(--toast-frontmost-height, 64px) + 20px);
|
|
1009
|
+
box-sizing: content-box;
|
|
1010
|
+
clip-path: inset(0 0 0 0 round var(--radius-xl));
|
|
1011
|
+
transition: clip-path .2s var(--easing-ease-out),
|
|
1012
|
+
height .2s var(--easing-ease-out);
|
|
1013
|
+
padding-top: 20px;
|
|
1005
1014
|
}
|
|
1006
1015
|
|
|
1007
|
-
.
|
|
1008
|
-
|
|
1016
|
+
.viewport-stacked_QXnIWW[data-expanded] {
|
|
1017
|
+
clip-path: inset(-9999px 0 0 0 round var(--radius-xl));
|
|
1018
|
+
height: calc(var(--toast-frontmost-height, 64px) + 20px);
|
|
1009
1019
|
}
|
|
1010
1020
|
|
|
1011
|
-
.
|
|
1012
|
-
|
|
1021
|
+
.viewport-stacked_QXnIWW[data-expanded]:after {
|
|
1022
|
+
content: "";
|
|
1023
|
+
pointer-events: auto;
|
|
1024
|
+
z-index: 0;
|
|
1025
|
+
position: absolute;
|
|
1026
|
+
inset: -9999px 0 0;
|
|
1013
1027
|
}
|
|
1014
1028
|
|
|
1015
|
-
.
|
|
1016
|
-
|
|
1029
|
+
.toast-stacked_QXnIWW {
|
|
1030
|
+
z-index: calc(50 - var(--toast-index));
|
|
1031
|
+
transform: translateY(calc(var(--toast-index) * -8px)) scale(calc(1 - var(--toast-index) * .04));
|
|
1032
|
+
transform-origin: bottom;
|
|
1033
|
+
opacity: calc(1 - var(--toast-index) * .15);
|
|
1034
|
+
transition: transform .2s var(--easing-ease-out),
|
|
1035
|
+
opacity .2s var(--easing-ease-out);
|
|
1036
|
+
position: absolute;
|
|
1037
|
+
bottom: 0;
|
|
1038
|
+
left: 0;
|
|
1039
|
+
right: 0;
|
|
1017
1040
|
}
|
|
1018
1041
|
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1042
|
+
.viewport-stacked_QXnIWW[data-expanded] .toast-stacked_QXnIWW {
|
|
1043
|
+
transform: translateY(calc((var(--toast-offset-y) + var(--toast-index) * 8px) * -1));
|
|
1044
|
+
opacity: 1;
|
|
1045
|
+
pointer-events: auto;
|
|
1046
|
+
}
|
|
1023
1047
|
|
|
1024
|
-
|
|
1025
|
-
|
|
1048
|
+
.viewport-stacked_QXnIWW .toast-stacked_QXnIWW {
|
|
1049
|
+
@starting-style {
|
|
1050
|
+
opacity: 0;
|
|
1051
|
+
transform: translateY(16px) scale(calc(1 - var(--toast-index) * .04));
|
|
1026
1052
|
}
|
|
1027
1053
|
}
|
|
1028
1054
|
|
|
1029
|
-
.
|
|
1030
|
-
|
|
1031
|
-
|
|
1055
|
+
.viewport-stacked_QXnIWW .toast-stacked_QXnIWW[data-ending-style] {
|
|
1056
|
+
opacity: 0;
|
|
1057
|
+
transform: translateX(calc(100% + var(--space-4)));
|
|
1058
|
+
transition: opacity .15s var(--easing-ease-in),
|
|
1059
|
+
transform .15s var(--easing-ease-in);
|
|
1032
1060
|
}
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
justify-content: space-between;
|
|
1037
|
-
align-items: center;
|
|
1038
|
-
gap: var(--space-2);
|
|
1039
|
-
width: 100%;
|
|
1040
|
-
font-family: var(--font-mono);
|
|
1041
|
-
font-size: var(--font-size-sm);
|
|
1042
|
-
color: var(--color-primary);
|
|
1043
|
-
background-color: var(--color-surface-1);
|
|
1044
|
-
border: var(--border-width-base) solid var(--color-line);
|
|
1045
|
-
border-radius: var(--radius-md);
|
|
1046
|
-
cursor: pointer;
|
|
1047
|
-
transition: border-color var(--duration-fast) var(--easing-standard),
|
|
1048
|
-
box-shadow var(--duration-fast) var(--easing-standard);
|
|
1049
|
-
-webkit-appearance: none;
|
|
1050
|
-
appearance: none;
|
|
1051
|
-
height: 30px;
|
|
1052
|
-
padding-inline: var(--space-2-5);
|
|
1053
|
-
text-align: left;
|
|
1054
|
-
white-space: nowrap;
|
|
1055
|
-
text-overflow: ellipsis;
|
|
1056
|
-
outline: none;
|
|
1057
|
-
display: inline-flex;
|
|
1058
|
-
overflow: hidden;
|
|
1061
|
+
|
|
1062
|
+
.toast-success_QXnIWW {
|
|
1063
|
+
background-color: color-mix(in srgb, var(--color-success-solid) 6%, var(--color-overlay));
|
|
1059
1064
|
}
|
|
1060
1065
|
|
|
1061
|
-
.
|
|
1062
|
-
|
|
1066
|
+
.toast-error_QXnIWW {
|
|
1067
|
+
background-color: color-mix(in srgb, var(--color-error-solid) 6%, var(--color-overlay));
|
|
1063
1068
|
}
|
|
1064
1069
|
|
|
1065
|
-
.
|
|
1066
|
-
|
|
1067
|
-
box-shadow: var(--shadow-focus);
|
|
1068
|
-
}
|
|
1069
|
-
|
|
1070
|
-
.trigger_Vd2Aoq[data-disabled] {
|
|
1071
|
-
opacity: .44;
|
|
1072
|
-
cursor: not-allowed;
|
|
1070
|
+
.toast-warning_QXnIWW {
|
|
1071
|
+
background-color: color-mix(in srgb, var(--color-warning-solid) 6%, var(--color-overlay));
|
|
1073
1072
|
}
|
|
1074
1073
|
|
|
1075
|
-
.
|
|
1076
|
-
|
|
1077
|
-
flex: 1;
|
|
1078
|
-
overflow: hidden;
|
|
1074
|
+
.toast-info_QXnIWW {
|
|
1075
|
+
background-color: color-mix(in srgb, var(--color-info-solid) 6%, var(--color-overlay));
|
|
1079
1076
|
}
|
|
1080
1077
|
|
|
1081
|
-
.
|
|
1082
|
-
color: var(--color-tertiary);
|
|
1083
|
-
transition: transform var(--duration-normal) var(--easing-standard);
|
|
1078
|
+
.icon_QXnIWW {
|
|
1084
1079
|
flex-shrink: 0;
|
|
1080
|
+
width: 16px;
|
|
1081
|
+
height: 16px;
|
|
1082
|
+
margin-top: 1px;
|
|
1085
1083
|
}
|
|
1086
1084
|
|
|
1087
|
-
.
|
|
1088
|
-
|
|
1089
|
-
}
|
|
1090
|
-
|
|
1091
|
-
.positioner_Vd2Aoq {
|
|
1092
|
-
z-index: var(--z-dropdown);
|
|
1085
|
+
.icon-success_QXnIWW {
|
|
1086
|
+
color: var(--color-success-solid);
|
|
1093
1087
|
}
|
|
1094
1088
|
|
|
1095
|
-
.
|
|
1096
|
-
|
|
1097
|
-
border: var(--border-width-base) solid var(--color-line);
|
|
1098
|
-
border-radius: var(--radius-lg);
|
|
1099
|
-
box-shadow: var(--shadow-popover);
|
|
1100
|
-
padding: var(--space-1);
|
|
1101
|
-
min-width: var(--anchor-width);
|
|
1102
|
-
max-width: var(--available-width);
|
|
1103
|
-
width: fit-content;
|
|
1104
|
-
max-height: 280px;
|
|
1105
|
-
transform-origin: var(--transform-origin);
|
|
1106
|
-
transition: opacity .15s var(--easing-ease-out),
|
|
1107
|
-
transform .15s var(--easing-ease-out);
|
|
1108
|
-
outline: none;
|
|
1109
|
-
overflow-y: auto;
|
|
1089
|
+
.icon-warning_QXnIWW {
|
|
1090
|
+
color: var(--color-warning-solid);
|
|
1110
1091
|
}
|
|
1111
1092
|
|
|
1112
|
-
.
|
|
1113
|
-
|
|
1114
|
-
transform: scale(.95);
|
|
1093
|
+
.icon-error_QXnIWW {
|
|
1094
|
+
color: var(--color-error-solid);
|
|
1115
1095
|
}
|
|
1116
1096
|
|
|
1117
|
-
.
|
|
1118
|
-
|
|
1119
|
-
transition: opacity 75ms var(--easing-ease-in),
|
|
1120
|
-
transform 75ms var(--easing-ease-in);
|
|
1121
|
-
transform: scale(.98);
|
|
1097
|
+
.icon-info_QXnIWW {
|
|
1098
|
+
color: var(--color-info-solid);
|
|
1122
1099
|
}
|
|
1123
1100
|
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1101
|
+
.content_QXnIWW {
|
|
1102
|
+
gap: var(--space-0-5);
|
|
1103
|
+
flex-direction: column;
|
|
1104
|
+
flex: 1;
|
|
1105
|
+
min-width: 0;
|
|
1106
|
+
display: flex;
|
|
1128
1107
|
}
|
|
1129
1108
|
|
|
1130
|
-
.
|
|
1131
|
-
align-items: center;
|
|
1132
|
-
gap: var(--space-2);
|
|
1133
|
-
padding: var(--space-1-5) var(--space-2-5);
|
|
1109
|
+
.title_QXnIWW {
|
|
1134
1110
|
font-family: var(--font-mono);
|
|
1135
1111
|
font-size: var(--font-size-sm);
|
|
1112
|
+
font-weight: var(--font-weight-medium);
|
|
1136
1113
|
color: var(--color-primary);
|
|
1137
|
-
|
|
1138
|
-
cursor: default;
|
|
1139
|
-
transition: background-color var(--duration-fast) var(--easing-standard);
|
|
1140
|
-
user-select: none;
|
|
1141
|
-
outline: none;
|
|
1142
|
-
display: flex;
|
|
1114
|
+
line-height: var(--line-height-normal);
|
|
1143
1115
|
}
|
|
1144
1116
|
|
|
1145
|
-
.
|
|
1146
|
-
|
|
1147
|
-
|
|
1117
|
+
.description_QXnIWW {
|
|
1118
|
+
font-family: var(--font-mono);
|
|
1119
|
+
font-size: var(--font-size-xs);
|
|
1120
|
+
color: var(--color-secondary);
|
|
1121
|
+
line-height: var(--line-height-relaxed);
|
|
1148
1122
|
}
|
|
1149
1123
|
|
|
1150
|
-
.
|
|
1151
|
-
|
|
1124
|
+
.close_QXnIWW {
|
|
1125
|
+
border-radius: var(--radius-sm);
|
|
1126
|
+
width: 20px;
|
|
1127
|
+
height: 20px;
|
|
1128
|
+
color: var(--color-tertiary);
|
|
1129
|
+
cursor: pointer;
|
|
1130
|
+
transition: background-color var(--duration-fast) var(--easing-standard),
|
|
1131
|
+
color var(--duration-fast) var(--easing-standard);
|
|
1132
|
+
background: none;
|
|
1133
|
+
border: none;
|
|
1134
|
+
outline: none;
|
|
1135
|
+
flex-shrink: 0;
|
|
1136
|
+
justify-content: center;
|
|
1137
|
+
align-items: center;
|
|
1138
|
+
margin-top: 1px;
|
|
1139
|
+
display: flex;
|
|
1152
1140
|
}
|
|
1153
1141
|
|
|
1154
|
-
.
|
|
1155
|
-
|
|
1156
|
-
|
|
1142
|
+
.close_QXnIWW:hover {
|
|
1143
|
+
background-color: var(--color-hover);
|
|
1144
|
+
color: var(--color-primary);
|
|
1157
1145
|
}
|
|
1158
1146
|
|
|
1159
|
-
.
|
|
1160
|
-
|
|
1161
|
-
align-items: center;
|
|
1162
|
-
margin-left: auto;
|
|
1163
|
-
display: flex;
|
|
1147
|
+
.close_QXnIWW:focus-visible {
|
|
1148
|
+
box-shadow: var(--shadow-focus);
|
|
1164
1149
|
}
|
|
1150
|
+
}
|
|
1151
|
+
@layer components {
|
|
1152
|
+
.backdrop_JNKGQq {
|
|
1153
|
+
--backdrop-opacity: .48;
|
|
1154
|
+
min-height: 100dvh;
|
|
1155
|
+
opacity: calc(var(--backdrop-opacity) * (1 - var(--drawer-swipe-progress)));
|
|
1156
|
+
z-index: var(--z-overlay);
|
|
1157
|
+
background-color: #000;
|
|
1158
|
+
transition-property: opacity;
|
|
1159
|
+
transition-duration: .45s;
|
|
1160
|
+
transition-timing-function: cubic-bezier(.32, .72, 0, 1);
|
|
1161
|
+
position: fixed;
|
|
1162
|
+
inset: 0;
|
|
1165
1163
|
|
|
1166
|
-
|
|
1167
|
-
|
|
1164
|
+
@supports (-webkit-touch-callout: none) {
|
|
1165
|
+
position: absolute;
|
|
1166
|
+
}
|
|
1168
1167
|
}
|
|
1169
1168
|
|
|
1170
|
-
.
|
|
1171
|
-
|
|
1172
|
-
font-size: var(--font-size-xs);
|
|
1173
|
-
font-weight: var(--font-weight-semibold);
|
|
1174
|
-
color: var(--color-tertiary);
|
|
1175
|
-
letter-spacing: var(--letter-spacing-wider);
|
|
1176
|
-
text-transform: uppercase;
|
|
1169
|
+
.backdrop_JNKGQq[data-starting-style], .backdrop_JNKGQq[data-ending-style] {
|
|
1170
|
+
opacity: 0;
|
|
1177
1171
|
}
|
|
1178
1172
|
|
|
1179
|
-
.
|
|
1180
|
-
|
|
1181
|
-
background-color: var(--color-line-subtle);
|
|
1182
|
-
margin: var(--space-1) 0;
|
|
1173
|
+
.backdrop_JNKGQq[data-swiping] {
|
|
1174
|
+
transition-duration: 0s;
|
|
1183
1175
|
}
|
|
1184
1176
|
|
|
1185
|
-
.
|
|
1186
|
-
|
|
1187
|
-
gap: 0;
|
|
1188
|
-
display: flex;
|
|
1189
|
-
}
|
|
1190
|
-
}
|
|
1191
|
-
@layer components {
|
|
1192
|
-
.root_prqJ8a {
|
|
1193
|
-
flex-direction: column;
|
|
1194
|
-
gap: 0;
|
|
1195
|
-
display: flex;
|
|
1177
|
+
.backdrop_JNKGQq[data-ending-style] {
|
|
1178
|
+
transition-duration: calc(var(--drawer-swipe-strength) * .4s);
|
|
1196
1179
|
}
|
|
1197
1180
|
|
|
1198
|
-
.
|
|
1199
|
-
|
|
1200
|
-
gap: var(--space-px);
|
|
1201
|
-
border-bottom: var(--border-width-base) solid var(--color-line);
|
|
1202
|
-
scrollbar-width: none;
|
|
1181
|
+
.viewport_JNKGQq {
|
|
1182
|
+
z-index: var(--z-modal);
|
|
1203
1183
|
display: flex;
|
|
1204
|
-
|
|
1184
|
+
position: fixed;
|
|
1185
|
+
inset: 0;
|
|
1205
1186
|
}
|
|
1206
1187
|
|
|
1207
|
-
.
|
|
1208
|
-
|
|
1188
|
+
.viewport_JNKGQq[data-side="left"] {
|
|
1189
|
+
justify-content: flex-start;
|
|
1190
|
+
align-items: stretch;
|
|
1209
1191
|
}
|
|
1210
1192
|
|
|
1211
|
-
.
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
padding: var(--space-1-5) var(--space-3);
|
|
1215
|
-
font-family: var(--font-mono);
|
|
1216
|
-
font-size: var(--font-size-sm);
|
|
1217
|
-
font-weight: var(--font-weight-regular);
|
|
1218
|
-
color: var(--color-tertiary);
|
|
1219
|
-
cursor: pointer;
|
|
1220
|
-
white-space: nowrap;
|
|
1221
|
-
transition: color var(--duration-fast) var(--easing-standard),
|
|
1222
|
-
border-color var(--duration-fast) var(--easing-standard);
|
|
1223
|
-
user-select: none;
|
|
1224
|
-
background: none;
|
|
1225
|
-
border: none;
|
|
1226
|
-
border-bottom: 3px solid #0000;
|
|
1227
|
-
outline: none;
|
|
1228
|
-
margin-bottom: -1px;
|
|
1229
|
-
display: inline-flex;
|
|
1230
|
-
position: relative;
|
|
1193
|
+
.viewport_JNKGQq[data-side="right"] {
|
|
1194
|
+
justify-content: flex-end;
|
|
1195
|
+
align-items: stretch;
|
|
1231
1196
|
}
|
|
1232
1197
|
|
|
1233
|
-
.
|
|
1234
|
-
|
|
1235
|
-
|
|
1198
|
+
.viewport_JNKGQq[data-side="bottom"] {
|
|
1199
|
+
justify-content: center;
|
|
1200
|
+
align-items: flex-end;
|
|
1236
1201
|
}
|
|
1237
1202
|
|
|
1238
|
-
.
|
|
1239
|
-
|
|
1203
|
+
.viewport_JNKGQq[data-side="top"] {
|
|
1204
|
+
justify-content: center;
|
|
1205
|
+
align-items: flex-start;
|
|
1240
1206
|
}
|
|
1241
1207
|
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
pointer-events: none;
|
|
1247
|
-
position: absolute;
|
|
1248
|
-
inset: 2px 2px 8px;
|
|
1249
|
-
}
|
|
1208
|
+
@supports (-webkit-touch-callout: none) {
|
|
1209
|
+
.viewport_JNKGQq[data-side="left"], .viewport_JNKGQq[data-side="right"] {
|
|
1210
|
+
padding: .625rem;
|
|
1211
|
+
}
|
|
1250
1212
|
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
border-bottom-color: var(--color-accent);
|
|
1255
|
-
}
|
|
1213
|
+
.viewport_JNKGQq[data-side="bottom"] {
|
|
1214
|
+
padding: 0 .625rem .625rem;
|
|
1215
|
+
}
|
|
1256
1216
|
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1217
|
+
.viewport_JNKGQq[data-side="top"] {
|
|
1218
|
+
padding: .625rem .625rem 0;
|
|
1219
|
+
}
|
|
1260
1220
|
}
|
|
1261
1221
|
|
|
1262
|
-
.
|
|
1263
|
-
|
|
1264
|
-
|
|
1222
|
+
.popup_JNKGQq {
|
|
1223
|
+
box-sizing: border-box;
|
|
1224
|
+
background-color: var(--color-elevated);
|
|
1225
|
+
border: var(--border-width-base) solid var(--color-line);
|
|
1226
|
+
overscroll-behavior: contain;
|
|
1227
|
+
touch-action: auto;
|
|
1228
|
+
will-change: transform;
|
|
1265
1229
|
outline: none;
|
|
1230
|
+
transition-duration: .45s;
|
|
1231
|
+
transition-timing-function: cubic-bezier(.32, .72, 0, 1);
|
|
1232
|
+
overflow-y: auto;
|
|
1266
1233
|
}
|
|
1267
1234
|
|
|
1268
|
-
.
|
|
1269
|
-
opacity: 0;
|
|
1270
|
-
}
|
|
1271
|
-
|
|
1272
|
-
.panel_prqJ8a:focus-visible {
|
|
1273
|
-
box-shadow: var(--shadow-focus);
|
|
1274
|
-
border-radius: var(--radius-sm);
|
|
1275
|
-
}
|
|
1276
|
-
}
|
|
1277
|
-
@layer components {
|
|
1278
|
-
.root_rWN60G {
|
|
1279
|
-
flex-direction: column;
|
|
1280
|
-
gap: 0;
|
|
1281
|
-
display: flex;
|
|
1282
|
-
}
|
|
1283
|
-
|
|
1284
|
-
.trigger_rWN60G {
|
|
1285
|
-
align-items: center;
|
|
1286
|
-
gap: var(--space-2);
|
|
1287
|
-
padding: var(--space-2) var(--space-3);
|
|
1288
|
-
font-family: var(--font-mono);
|
|
1289
|
-
font-size: var(--font-size-sm);
|
|
1290
|
-
font-weight: var(--font-weight-medium);
|
|
1291
|
-
color: var(--color-primary);
|
|
1292
|
-
background: var(--color-surface-1);
|
|
1293
|
-
border: var(--border-width-base) solid var(--color-line);
|
|
1294
|
-
border-radius: var(--radius-md);
|
|
1295
|
-
cursor: pointer;
|
|
1296
|
-
text-align: left;
|
|
1235
|
+
.popup_JNKGQq[data-swiping] {
|
|
1297
1236
|
user-select: none;
|
|
1298
|
-
transition
|
|
1299
|
-
border-bottom-left-radius var(--duration-normal) var(--easing-standard) var(--duration-normal),
|
|
1300
|
-
border-bottom-right-radius var(--duration-normal) var(--easing-standard) var(--duration-normal),
|
|
1301
|
-
border-bottom-color var(--duration-normal) var(--easing-standard) var(--duration-normal);
|
|
1302
|
-
outline: none;
|
|
1303
|
-
display: flex;
|
|
1237
|
+
transition-duration: 0s;
|
|
1304
1238
|
}
|
|
1305
1239
|
|
|
1306
|
-
.
|
|
1307
|
-
transition:
|
|
1308
|
-
border-bottom-left-radius var(--duration-normal) var(--easing-standard),
|
|
1309
|
-
border-bottom-right-radius var(--duration-normal) var(--easing-standard),
|
|
1310
|
-
border-bottom-color var(--duration-normal) var(--easing-standard);
|
|
1311
|
-
border-bottom-color: #0000;
|
|
1312
|
-
border-bottom-right-radius: 0;
|
|
1313
|
-
border-bottom-left-radius: 0;
|
|
1240
|
+
.popup_JNKGQq[data-ending-style] {
|
|
1241
|
+
transition-duration: calc(var(--drawer-swipe-strength) * .4s);
|
|
1314
1242
|
}
|
|
1315
1243
|
|
|
1316
|
-
.
|
|
1317
|
-
|
|
1318
|
-
|
|
1244
|
+
.popup-right_JNKGQq {
|
|
1245
|
+
--bleed: 3rem;
|
|
1246
|
+
height: 100%;
|
|
1247
|
+
width: calc(var(--drawer-width, 20rem) + var(--bleed));
|
|
1248
|
+
max-width: calc(100vw - 3rem + var(--bleed));
|
|
1249
|
+
padding: var(--space-6);
|
|
1250
|
+
padding-right: calc(var(--space-6) + var(--bleed));
|
|
1251
|
+
margin-right: calc(-1 * var(--bleed));
|
|
1252
|
+
transform: translateX(var(--drawer-swipe-movement-x));
|
|
1253
|
+
transition-property: transform;
|
|
1319
1254
|
|
|
1320
|
-
|
|
1321
|
-
|
|
1255
|
+
@supports (-webkit-touch-callout: none) {
|
|
1256
|
+
--bleed: 0px;
|
|
1257
|
+
border-radius: var(--radius-xl);
|
|
1258
|
+
margin-right: 0;
|
|
1259
|
+
}
|
|
1322
1260
|
}
|
|
1323
1261
|
|
|
1324
|
-
.
|
|
1325
|
-
|
|
1326
|
-
cursor: not-allowed;
|
|
1262
|
+
.popup-right_JNKGQq[data-starting-style], .popup-right_JNKGQq[data-ending-style] {
|
|
1263
|
+
transform: translateX(calc(100% - var(--bleed) + 2px));
|
|
1327
1264
|
}
|
|
1328
1265
|
|
|
1329
|
-
.
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1266
|
+
.popup-left_JNKGQq {
|
|
1267
|
+
--bleed: 3rem;
|
|
1268
|
+
height: 100%;
|
|
1269
|
+
width: calc(var(--drawer-width, 20rem) + var(--bleed));
|
|
1270
|
+
max-width: calc(100vw - 3rem + var(--bleed));
|
|
1271
|
+
padding: var(--space-6);
|
|
1272
|
+
padding-left: calc(var(--space-6) + var(--bleed));
|
|
1273
|
+
margin-left: calc(-1 * var(--bleed));
|
|
1274
|
+
transform: translateX(var(--drawer-swipe-movement-x));
|
|
1275
|
+
transition-property: transform;
|
|
1334
1276
|
|
|
1335
|
-
|
|
1336
|
-
|
|
1277
|
+
@supports (-webkit-touch-callout: none) {
|
|
1278
|
+
--bleed: 0px;
|
|
1279
|
+
border-radius: var(--radius-xl);
|
|
1280
|
+
margin-left: 0;
|
|
1281
|
+
}
|
|
1337
1282
|
}
|
|
1338
1283
|
|
|
1339
|
-
.
|
|
1340
|
-
|
|
1341
|
-
transition: height var(--duration-normal) var(--easing-standard);
|
|
1342
|
-
overflow: hidden;
|
|
1284
|
+
.popup-left_JNKGQq[data-starting-style], .popup-left_JNKGQq[data-ending-style] {
|
|
1285
|
+
transform: translateX(calc(-100% + var(--bleed) - 2px));
|
|
1343
1286
|
}
|
|
1344
1287
|
|
|
1345
|
-
.
|
|
1346
|
-
|
|
1288
|
+
.popup-bottom_JNKGQq {
|
|
1289
|
+
width: 100%;
|
|
1290
|
+
max-width: var(--drawer-max-width, 480px);
|
|
1291
|
+
max-height: 90dvh;
|
|
1292
|
+
padding: var(--space-5) var(--space-5) calc(var(--space-5) + env(safe-area-inset-bottom, 0px));
|
|
1293
|
+
border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
|
|
1294
|
+
transform: translateY(var(--drawer-swipe-movement-y));
|
|
1295
|
+
border-bottom: none;
|
|
1296
|
+
transition-property: transform;
|
|
1297
|
+
|
|
1298
|
+
@supports (-webkit-touch-callout: none) {
|
|
1299
|
+
border-radius: var(--radius-2xl);
|
|
1300
|
+
}
|
|
1347
1301
|
}
|
|
1348
1302
|
|
|
1349
|
-
.
|
|
1350
|
-
|
|
1303
|
+
.popup-bottom_JNKGQq[data-starting-style], .popup-bottom_JNKGQq[data-ending-style] {
|
|
1304
|
+
transform: translateY(calc(100% + 2px));
|
|
1351
1305
|
}
|
|
1352
1306
|
|
|
1353
|
-
.
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
border-radius: 0 0 var(--radius-md) var(--radius-md);
|
|
1361
|
-
background: var(--color-elevated);
|
|
1307
|
+
.popup-top_JNKGQq {
|
|
1308
|
+
width: 100%;
|
|
1309
|
+
max-width: var(--drawer-max-width, 480px);
|
|
1310
|
+
max-height: 90dvh;
|
|
1311
|
+
padding: calc(var(--space-5) + env(safe-area-inset-top, 0px)) var(--space-5) var(--space-5);
|
|
1312
|
+
border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
|
|
1313
|
+
transform: translateY(var(--drawer-swipe-movement-y));
|
|
1362
1314
|
border-top: none;
|
|
1363
|
-
|
|
1364
|
-
}
|
|
1365
|
-
@layer components {
|
|
1366
|
-
.backdrop_VsZA5W {
|
|
1367
|
-
z-index: var(--z-overlay);
|
|
1368
|
-
transition: opacity var(--duration-slow) var(--easing-standard);
|
|
1369
|
-
background-color: #0000007a;
|
|
1370
|
-
position: fixed;
|
|
1371
|
-
inset: 0;
|
|
1372
|
-
}
|
|
1315
|
+
transition-property: transform;
|
|
1373
1316
|
|
|
1374
|
-
|
|
1375
|
-
|
|
1317
|
+
@supports (-webkit-touch-callout: none) {
|
|
1318
|
+
border-radius: var(--radius-2xl);
|
|
1319
|
+
}
|
|
1376
1320
|
}
|
|
1377
1321
|
|
|
1378
|
-
.
|
|
1379
|
-
|
|
1380
|
-
background-color: var(--color-elevated);
|
|
1381
|
-
border: var(--border-width-base) solid var(--color-line);
|
|
1382
|
-
border-radius: var(--radius-2xl);
|
|
1383
|
-
box-shadow: var(--shadow-xl);
|
|
1384
|
-
padding: var(--space-5) var(--space-6) var(--space-5);
|
|
1385
|
-
width: min(440px, calc(100vw - var(--space-8)));
|
|
1386
|
-
max-height: min(640px, calc(100vh - var(--space-8)));
|
|
1387
|
-
gap: var(--space-3);
|
|
1388
|
-
transition: opacity .2s var(--easing-ease-out),
|
|
1389
|
-
transform .2s var(--easing-spring);
|
|
1390
|
-
outline: none;
|
|
1391
|
-
flex-direction: column;
|
|
1392
|
-
display: flex;
|
|
1393
|
-
position: fixed;
|
|
1394
|
-
top: 50%;
|
|
1395
|
-
left: 50%;
|
|
1396
|
-
overflow: hidden;
|
|
1397
|
-
transform: translate(-50%, -50%);
|
|
1322
|
+
.popup-top_JNKGQq[data-starting-style], .popup-top_JNKGQq[data-ending-style] {
|
|
1323
|
+
transform: translateY(calc(-100% - 2px));
|
|
1398
1324
|
}
|
|
1399
1325
|
|
|
1400
|
-
.
|
|
1401
|
-
|
|
1402
|
-
|
|
1326
|
+
.handle-bar_JNKGQq {
|
|
1327
|
+
background-color: var(--color-line-strong);
|
|
1328
|
+
width: 2.5rem;
|
|
1329
|
+
height: 4px;
|
|
1330
|
+
margin: 0 auto var(--space-4);
|
|
1331
|
+
border-radius: 9999px;
|
|
1332
|
+
flex-shrink: 0;
|
|
1403
1333
|
}
|
|
1404
1334
|
|
|
1405
|
-
.
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
transform .15s var(--easing-ease-in);
|
|
1409
|
-
transform: translate(-50%, -50%) scale(.98);
|
|
1335
|
+
.popup-top_JNKGQq .handle-bar_JNKGQq {
|
|
1336
|
+
margin: var(--space-4) auto 0;
|
|
1337
|
+
order: 1;
|
|
1410
1338
|
}
|
|
1411
1339
|
|
|
1412
|
-
.
|
|
1413
|
-
gap: var(--space-
|
|
1414
|
-
text-align: center;
|
|
1340
|
+
.content_JNKGQq {
|
|
1341
|
+
gap: var(--space-4);
|
|
1415
1342
|
flex-direction: column;
|
|
1343
|
+
height: 100%;
|
|
1416
1344
|
display: flex;
|
|
1417
1345
|
}
|
|
1418
1346
|
|
|
1419
|
-
.
|
|
1420
|
-
font-family: var(--font-
|
|
1347
|
+
.title_JNKGQq {
|
|
1348
|
+
font-family: var(--font-mono);
|
|
1421
1349
|
font-size: var(--font-size-lg);
|
|
1422
|
-
font-weight: var(--font-weight-
|
|
1350
|
+
font-weight: var(--font-weight-semibold);
|
|
1423
1351
|
color: var(--color-primary);
|
|
1424
1352
|
line-height: var(--line-height-tight);
|
|
1425
1353
|
letter-spacing: var(--letter-spacing-tight);
|
|
1354
|
+
padding-right: var(--space-6);
|
|
1355
|
+
margin: 0;
|
|
1426
1356
|
}
|
|
1427
1357
|
|
|
1428
|
-
.
|
|
1429
|
-
font-family: var(--font-
|
|
1430
|
-
font-size: var(--font-size-
|
|
1358
|
+
.description_JNKGQq {
|
|
1359
|
+
font-family: var(--font-mono);
|
|
1360
|
+
font-size: var(--font-size-sm);
|
|
1431
1361
|
color: var(--color-secondary);
|
|
1432
1362
|
line-height: var(--line-height-relaxed);
|
|
1363
|
+
margin: 0;
|
|
1433
1364
|
}
|
|
1434
1365
|
|
|
1435
|
-
.
|
|
1366
|
+
.close_JNKGQq {
|
|
1436
1367
|
top: var(--space-4);
|
|
1437
1368
|
right: var(--space-4);
|
|
1438
1369
|
border-radius: var(--radius-sm);
|
|
@@ -1451,56 +1382,124 @@
|
|
|
1451
1382
|
position: absolute;
|
|
1452
1383
|
}
|
|
1453
1384
|
|
|
1454
|
-
.
|
|
1385
|
+
.close_JNKGQq:hover {
|
|
1455
1386
|
background-color: var(--color-hover);
|
|
1456
1387
|
color: var(--color-primary);
|
|
1457
1388
|
}
|
|
1458
1389
|
|
|
1459
|
-
.
|
|
1390
|
+
.close_JNKGQq:focus-visible {
|
|
1460
1391
|
box-shadow: var(--shadow-focus);
|
|
1461
1392
|
}
|
|
1462
1393
|
|
|
1463
|
-
.
|
|
1464
|
-
font-family: var(--font-mono);
|
|
1465
|
-
font-size: var(--font-size-sm);
|
|
1466
|
-
color: var(--color-secondary);
|
|
1467
|
-
line-height: var(--line-height-relaxed);
|
|
1468
|
-
flex: 1;
|
|
1469
|
-
overflow-y: auto;
|
|
1470
|
-
}
|
|
1471
|
-
|
|
1472
|
-
.footer_VsZA5W {
|
|
1394
|
+
.footer_JNKGQq {
|
|
1473
1395
|
justify-content: flex-end;
|
|
1474
1396
|
align-items: center;
|
|
1475
1397
|
gap: var(--space-2);
|
|
1476
|
-
padding-top: var(--space-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
.footer-split_VsZA5W {
|
|
1481
|
-
justify-content: space-between;
|
|
1482
|
-
}
|
|
1483
|
-
|
|
1484
|
-
.footer-end_VsZA5W {
|
|
1485
|
-
align-items: center;
|
|
1486
|
-
gap: var(--space-2);
|
|
1398
|
+
padding-top: var(--space-4);
|
|
1399
|
+
border-top: var(--border-width-base) solid var(--color-line-subtle);
|
|
1400
|
+
margin-top: auto;
|
|
1487
1401
|
display: flex;
|
|
1488
1402
|
}
|
|
1489
1403
|
}
|
|
1490
1404
|
@layer components {
|
|
1491
|
-
.
|
|
1492
|
-
|
|
1405
|
+
.root_XcG3ua {
|
|
1406
|
+
border: var(--border-width-base) solid var(--color-line);
|
|
1407
|
+
border-radius: var(--radius-lg);
|
|
1493
1408
|
flex-direction: column;
|
|
1494
|
-
|
|
1409
|
+
gap: 0;
|
|
1495
1410
|
display: flex;
|
|
1411
|
+
overflow: hidden;
|
|
1496
1412
|
}
|
|
1497
1413
|
|
|
1498
|
-
.
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
1503
|
-
|
|
1414
|
+
.item_XcG3ua {
|
|
1415
|
+
border-bottom: var(--border-width-base) solid var(--color-line-subtle);
|
|
1416
|
+
}
|
|
1417
|
+
|
|
1418
|
+
.item_XcG3ua:last-child {
|
|
1419
|
+
border-bottom: none;
|
|
1420
|
+
}
|
|
1421
|
+
|
|
1422
|
+
.header_XcG3ua {
|
|
1423
|
+
align-items: center;
|
|
1424
|
+
display: flex;
|
|
1425
|
+
}
|
|
1426
|
+
|
|
1427
|
+
.trigger_XcG3ua {
|
|
1428
|
+
justify-content: space-between;
|
|
1429
|
+
align-items: center;
|
|
1430
|
+
gap: var(--space-2);
|
|
1431
|
+
padding: var(--space-3) var(--space-4);
|
|
1432
|
+
font-family: var(--font-mono);
|
|
1433
|
+
font-size: var(--font-size-sm);
|
|
1434
|
+
font-weight: var(--font-weight-medium);
|
|
1435
|
+
color: var(--color-primary);
|
|
1436
|
+
cursor: pointer;
|
|
1437
|
+
text-align: left;
|
|
1438
|
+
transition: background-color var(--duration-fast) var(--easing-standard),
|
|
1439
|
+
color var(--duration-fast) var(--easing-standard);
|
|
1440
|
+
user-select: none;
|
|
1441
|
+
background: none;
|
|
1442
|
+
border: none;
|
|
1443
|
+
outline: none;
|
|
1444
|
+
flex: 1;
|
|
1445
|
+
display: flex;
|
|
1446
|
+
}
|
|
1447
|
+
|
|
1448
|
+
.trigger_XcG3ua:hover {
|
|
1449
|
+
background-color: var(--color-hover);
|
|
1450
|
+
}
|
|
1451
|
+
|
|
1452
|
+
.trigger_XcG3ua:focus-visible {
|
|
1453
|
+
box-shadow: inset var(--shadow-focus);
|
|
1454
|
+
}
|
|
1455
|
+
|
|
1456
|
+
.trigger_XcG3ua[data-disabled] {
|
|
1457
|
+
opacity: .44;
|
|
1458
|
+
cursor: not-allowed;
|
|
1459
|
+
}
|
|
1460
|
+
|
|
1461
|
+
.trigger-icon_XcG3ua {
|
|
1462
|
+
color: var(--color-tertiary);
|
|
1463
|
+
transition: transform var(--duration-normal) var(--easing-standard);
|
|
1464
|
+
flex-shrink: 0;
|
|
1465
|
+
}
|
|
1466
|
+
|
|
1467
|
+
.trigger_XcG3ua[data-panel-open] .trigger-icon_XcG3ua {
|
|
1468
|
+
transform: rotate(180deg);
|
|
1469
|
+
}
|
|
1470
|
+
|
|
1471
|
+
.panel_XcG3ua {
|
|
1472
|
+
height: var(--accordion-panel-height);
|
|
1473
|
+
transition: height var(--duration-normal) var(--easing-standard);
|
|
1474
|
+
overflow: hidden;
|
|
1475
|
+
}
|
|
1476
|
+
|
|
1477
|
+
.panel_XcG3ua[data-starting-style], .panel_XcG3ua[data-ending-style] {
|
|
1478
|
+
height: 0;
|
|
1479
|
+
}
|
|
1480
|
+
|
|
1481
|
+
.panel-content_XcG3ua {
|
|
1482
|
+
padding: var(--space-2) var(--space-4) var(--space-4);
|
|
1483
|
+
font-family: var(--font-mono);
|
|
1484
|
+
font-size: var(--font-size-sm);
|
|
1485
|
+
color: var(--color-secondary);
|
|
1486
|
+
line-height: var(--line-height-relaxed);
|
|
1487
|
+
}
|
|
1488
|
+
}
|
|
1489
|
+
@layer components {
|
|
1490
|
+
.root_Lvfi-a {
|
|
1491
|
+
gap: var(--space-2);
|
|
1492
|
+
flex-direction: column;
|
|
1493
|
+
width: 100%;
|
|
1494
|
+
display: flex;
|
|
1495
|
+
}
|
|
1496
|
+
|
|
1497
|
+
.header_Lvfi-a {
|
|
1498
|
+
justify-content: space-between;
|
|
1499
|
+
align-items: center;
|
|
1500
|
+
gap: var(--space-2);
|
|
1501
|
+
display: flex;
|
|
1502
|
+
}
|
|
1504
1503
|
|
|
1505
1504
|
.label_Lvfi-a {
|
|
1506
1505
|
font-family: var(--font-mono);
|
|
@@ -1585,465 +1584,544 @@
|
|
|
1585
1584
|
}
|
|
1586
1585
|
}
|
|
1587
1586
|
@layer components {
|
|
1588
|
-
.
|
|
1589
|
-
|
|
1590
|
-
|
|
1587
|
+
.root_msdI1W {
|
|
1588
|
+
align-items: flex-start;
|
|
1589
|
+
gap: var(--space-1);
|
|
1590
|
+
flex-direction: column;
|
|
1591
|
+
display: flex;
|
|
1591
1592
|
}
|
|
1592
1593
|
|
|
1593
|
-
.
|
|
1594
|
-
|
|
1595
|
-
|
|
1594
|
+
.scrub-area_msdI1W {
|
|
1595
|
+
cursor: ew-resize;
|
|
1596
|
+
user-select: none;
|
|
1596
1597
|
}
|
|
1597
1598
|
|
|
1598
|
-
.
|
|
1599
|
-
|
|
1600
|
-
align-self: stretch;
|
|
1599
|
+
.scrub-area-cursor_msdI1W {
|
|
1600
|
+
filter: drop-shadow(0 1px 1px #00000080);
|
|
1601
1601
|
}
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1611
|
-
|
|
1612
|
-
|
|
1613
|
-
|
|
1602
|
+
|
|
1603
|
+
.label_msdI1W {
|
|
1604
|
+
cursor: ew-resize;
|
|
1605
|
+
font-family: var(--font-mono);
|
|
1606
|
+
font-size: var(--font-size-xs);
|
|
1607
|
+
font-weight: var(--font-weight-medium);
|
|
1608
|
+
color: var(--color-secondary);
|
|
1609
|
+
letter-spacing: var(--letter-spacing-wide);
|
|
1610
|
+
text-transform: uppercase;
|
|
1611
|
+
}
|
|
1612
|
+
|
|
1613
|
+
.group_msdI1W {
|
|
1614
1614
|
display: flex;
|
|
1615
|
-
position: fixed;
|
|
1616
1615
|
}
|
|
1617
1616
|
|
|
1618
|
-
.
|
|
1619
|
-
|
|
1617
|
+
.input_msdI1W {
|
|
1618
|
+
box-sizing: border-box;
|
|
1619
|
+
width: 6rem;
|
|
1620
|
+
height: 2rem;
|
|
1621
|
+
font-family: var(--font-mono);
|
|
1622
|
+
font-size: var(--font-size-sm);
|
|
1623
|
+
text-align: center;
|
|
1624
|
+
font-variant-numeric: tabular-nums;
|
|
1625
|
+
color: var(--color-primary);
|
|
1626
|
+
background-color: var(--color-elevated);
|
|
1627
|
+
border-top: var(--border-width-base) solid var(--color-line);
|
|
1628
|
+
border-bottom: var(--border-width-base) solid var(--color-line);
|
|
1629
|
+
transition: box-shadow var(--duration-fast) var(--easing-standard);
|
|
1630
|
+
border-left: none;
|
|
1631
|
+
border-right: none;
|
|
1632
|
+
border-radius: 0;
|
|
1633
|
+
outline: none;
|
|
1634
|
+
margin: 0;
|
|
1635
|
+
padding: 0;
|
|
1636
|
+
font-weight: normal;
|
|
1620
1637
|
}
|
|
1621
1638
|
|
|
1622
|
-
.
|
|
1623
|
-
|
|
1639
|
+
.input_msdI1W:focus {
|
|
1640
|
+
z-index: 1;
|
|
1641
|
+
box-shadow: inset 0 0 0 1.5px var(--color-accent);
|
|
1624
1642
|
}
|
|
1625
1643
|
|
|
1626
|
-
.
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
|
|
1644
|
+
.input_msdI1W[data-disabled] {
|
|
1645
|
+
opacity: .44;
|
|
1646
|
+
cursor: not-allowed;
|
|
1647
|
+
}
|
|
1648
|
+
|
|
1649
|
+
.step-button_msdI1W {
|
|
1650
|
+
box-sizing: border-box;
|
|
1631
1651
|
border: var(--border-width-base) solid var(--color-line);
|
|
1632
|
-
|
|
1633
|
-
|
|
1634
|
-
|
|
1635
|
-
|
|
1636
|
-
|
|
1652
|
+
background-color: var(--color-surface-1);
|
|
1653
|
+
width: 2rem;
|
|
1654
|
+
height: 2rem;
|
|
1655
|
+
color: var(--color-secondary);
|
|
1656
|
+
cursor: pointer;
|
|
1657
|
+
user-select: none;
|
|
1658
|
+
transition: background-color var(--duration-fast) var(--easing-standard),
|
|
1659
|
+
color var(--duration-fast) var(--easing-standard),
|
|
1660
|
+
transform .1s var(--easing-ease-out);
|
|
1661
|
+
outline: none;
|
|
1662
|
+
justify-content: center;
|
|
1663
|
+
align-items: center;
|
|
1664
|
+
margin: 0;
|
|
1665
|
+
padding: 0;
|
|
1637
1666
|
display: flex;
|
|
1638
1667
|
}
|
|
1639
1668
|
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
}
|
|
1669
|
+
.step-button_msdI1W:hover {
|
|
1670
|
+
background-color: var(--color-hover);
|
|
1671
|
+
color: var(--color-primary);
|
|
1644
1672
|
}
|
|
1645
1673
|
|
|
1646
|
-
.
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
transition: opacity .3s var(--easing-ease-out),
|
|
1650
|
-
transform .3s var(--easing-spring);
|
|
1651
|
-
transform: translateX(0);
|
|
1652
|
-
|
|
1653
|
-
@starting-style {
|
|
1654
|
-
opacity: 0;
|
|
1655
|
-
transform: translateX(calc(100% + var(--space-4)));
|
|
1656
|
-
}
|
|
1674
|
+
.step-button_msdI1W:active:not([data-disabled]) {
|
|
1675
|
+
background-color: var(--color-active);
|
|
1676
|
+
transform: scale(.93);
|
|
1657
1677
|
}
|
|
1658
1678
|
|
|
1659
|
-
.
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
transition: opacity .2s var(--easing-ease-in),
|
|
1663
|
-
transform .2s var(--easing-ease-in);
|
|
1679
|
+
.step-button_msdI1W:focus-visible {
|
|
1680
|
+
z-index: 1;
|
|
1681
|
+
box-shadow: inset 0 0 0 1.5px var(--color-accent);
|
|
1664
1682
|
}
|
|
1665
1683
|
|
|
1666
|
-
.
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
clip-path: inset(0 0 0 0 round var(--radius-xl));
|
|
1670
|
-
transition: clip-path .2s var(--easing-ease-out),
|
|
1671
|
-
height .2s var(--easing-ease-out);
|
|
1672
|
-
padding-top: 20px;
|
|
1684
|
+
.step-button_msdI1W[data-disabled] {
|
|
1685
|
+
opacity: .44;
|
|
1686
|
+
cursor: not-allowed;
|
|
1673
1687
|
}
|
|
1674
1688
|
|
|
1675
|
-
.
|
|
1676
|
-
|
|
1677
|
-
height: calc(var(--toast-frontmost-height, 64px) + 20px);
|
|
1689
|
+
.decrement_msdI1W {
|
|
1690
|
+
border-radius: var(--radius-md) 0 0 var(--radius-md);
|
|
1678
1691
|
}
|
|
1679
1692
|
|
|
1680
|
-
.
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
|
|
1693
|
+
.increment_msdI1W {
|
|
1694
|
+
border-radius: 0 var(--radius-md) var(--radius-md) 0;
|
|
1695
|
+
}
|
|
1696
|
+
}
|
|
1697
|
+
@layer components {
|
|
1698
|
+
.root_rWN60G {
|
|
1699
|
+
flex-direction: column;
|
|
1700
|
+
gap: 0;
|
|
1701
|
+
display: flex;
|
|
1686
1702
|
}
|
|
1687
1703
|
|
|
1688
|
-
.
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
|
|
1704
|
+
.trigger_rWN60G {
|
|
1705
|
+
align-items: center;
|
|
1706
|
+
gap: var(--space-2);
|
|
1707
|
+
padding: var(--space-2) var(--space-3);
|
|
1708
|
+
font-family: var(--font-mono);
|
|
1709
|
+
font-size: var(--font-size-sm);
|
|
1710
|
+
font-weight: var(--font-weight-medium);
|
|
1711
|
+
color: var(--color-primary);
|
|
1712
|
+
background: var(--color-surface-1);
|
|
1713
|
+
border: var(--border-width-base) solid var(--color-line);
|
|
1714
|
+
border-radius: var(--radius-md);
|
|
1715
|
+
cursor: pointer;
|
|
1716
|
+
text-align: left;
|
|
1717
|
+
user-select: none;
|
|
1718
|
+
transition: background-color var(--duration-fast) var(--easing-standard),
|
|
1719
|
+
border-bottom-left-radius var(--duration-normal) var(--easing-standard) var(--duration-normal),
|
|
1720
|
+
border-bottom-right-radius var(--duration-normal) var(--easing-standard) var(--duration-normal),
|
|
1721
|
+
border-bottom-color var(--duration-normal) var(--easing-standard) var(--duration-normal);
|
|
1722
|
+
outline: none;
|
|
1723
|
+
display: flex;
|
|
1699
1724
|
}
|
|
1700
1725
|
|
|
1701
|
-
.
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
1726
|
+
.trigger_rWN60G[data-panel-open] {
|
|
1727
|
+
transition: background-color var(--duration-fast) var(--easing-standard),
|
|
1728
|
+
border-bottom-left-radius var(--duration-normal) var(--easing-standard),
|
|
1729
|
+
border-bottom-right-radius var(--duration-normal) var(--easing-standard),
|
|
1730
|
+
border-bottom-color var(--duration-normal) var(--easing-standard);
|
|
1731
|
+
border-bottom-color: #0000;
|
|
1732
|
+
border-bottom-right-radius: 0;
|
|
1733
|
+
border-bottom-left-radius: 0;
|
|
1705
1734
|
}
|
|
1706
1735
|
|
|
1707
|
-
.
|
|
1708
|
-
|
|
1709
|
-
opacity: 0;
|
|
1710
|
-
transform: translateY(16px) scale(calc(1 - var(--toast-index) * .04));
|
|
1711
|
-
}
|
|
1736
|
+
.trigger_rWN60G:hover {
|
|
1737
|
+
background-color: var(--color-hover);
|
|
1712
1738
|
}
|
|
1713
1739
|
|
|
1714
|
-
.
|
|
1715
|
-
|
|
1716
|
-
transform: translateX(calc(100% + var(--space-4)));
|
|
1717
|
-
transition: opacity .15s var(--easing-ease-in),
|
|
1718
|
-
transform .15s var(--easing-ease-in);
|
|
1740
|
+
.trigger_rWN60G:focus-visible {
|
|
1741
|
+
box-shadow: var(--shadow-focus);
|
|
1719
1742
|
}
|
|
1720
1743
|
|
|
1721
|
-
.
|
|
1722
|
-
|
|
1744
|
+
.trigger_rWN60G[data-disabled] {
|
|
1745
|
+
opacity: .44;
|
|
1746
|
+
cursor: not-allowed;
|
|
1723
1747
|
}
|
|
1724
1748
|
|
|
1725
|
-
.
|
|
1726
|
-
|
|
1749
|
+
.trigger-icon_rWN60G {
|
|
1750
|
+
color: var(--color-tertiary);
|
|
1751
|
+
transition: transform var(--duration-normal) var(--easing-standard);
|
|
1752
|
+
flex-shrink: 0;
|
|
1727
1753
|
}
|
|
1728
1754
|
|
|
1729
|
-
.
|
|
1730
|
-
|
|
1755
|
+
.trigger_rWN60G[data-panel-open] .trigger-icon_rWN60G {
|
|
1756
|
+
transform: rotate(90deg);
|
|
1731
1757
|
}
|
|
1732
1758
|
|
|
1733
|
-
.
|
|
1734
|
-
|
|
1759
|
+
.panel_rWN60G {
|
|
1760
|
+
height: var(--collapsible-panel-height);
|
|
1761
|
+
transition: height var(--duration-normal) var(--easing-standard);
|
|
1762
|
+
overflow: hidden;
|
|
1735
1763
|
}
|
|
1736
1764
|
|
|
1737
|
-
.
|
|
1738
|
-
|
|
1739
|
-
width: 16px;
|
|
1740
|
-
height: 16px;
|
|
1741
|
-
margin-top: 1px;
|
|
1765
|
+
.panel_rWN60G[hidden]:not([hidden="until-found"]) {
|
|
1766
|
+
display: none;
|
|
1742
1767
|
}
|
|
1743
1768
|
|
|
1744
|
-
.
|
|
1745
|
-
|
|
1769
|
+
.panel_rWN60G[data-starting-style], .panel_rWN60G[data-ending-style] {
|
|
1770
|
+
height: 0;
|
|
1746
1771
|
}
|
|
1747
1772
|
|
|
1748
|
-
.
|
|
1749
|
-
|
|
1773
|
+
.panel-content_rWN60G {
|
|
1774
|
+
padding: var(--space-3) var(--space-3) var(--space-3) var(--space-3);
|
|
1775
|
+
font-family: var(--font-mono);
|
|
1776
|
+
font-size: var(--font-size-sm);
|
|
1777
|
+
color: var(--color-secondary);
|
|
1778
|
+
line-height: var(--line-height-relaxed);
|
|
1779
|
+
border: var(--border-width-base) solid var(--color-line);
|
|
1780
|
+
border-radius: 0 0 var(--radius-md) var(--radius-md);
|
|
1781
|
+
background: var(--color-elevated);
|
|
1782
|
+
border-top: none;
|
|
1783
|
+
}
|
|
1784
|
+
}
|
|
1785
|
+
@layer components {
|
|
1786
|
+
.positioner_fGG_sa {
|
|
1787
|
+
z-index: var(--z-popover);
|
|
1750
1788
|
}
|
|
1751
1789
|
|
|
1752
|
-
.
|
|
1753
|
-
|
|
1790
|
+
.popup_fGG_sa {
|
|
1791
|
+
--arrow-fill: var(--color-elevated);
|
|
1792
|
+
--arrow-stroke: var(--color-line);
|
|
1793
|
+
background-color: var(--color-elevated);
|
|
1794
|
+
border: var(--border-width-base) solid var(--color-line);
|
|
1795
|
+
border-radius: var(--radius-xl);
|
|
1796
|
+
box-shadow: var(--shadow-popover);
|
|
1797
|
+
padding: var(--space-4);
|
|
1798
|
+
min-width: 220px;
|
|
1799
|
+
max-width: 320px;
|
|
1800
|
+
transition: opacity .2s var(--easing-ease-out);
|
|
1801
|
+
outline: none;
|
|
1754
1802
|
}
|
|
1755
1803
|
|
|
1756
|
-
.
|
|
1757
|
-
|
|
1804
|
+
.popup_fGG_sa[data-starting-style] {
|
|
1805
|
+
opacity: 0;
|
|
1758
1806
|
}
|
|
1759
1807
|
|
|
1760
|
-
.
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
flex: 1;
|
|
1764
|
-
min-width: 0;
|
|
1765
|
-
display: flex;
|
|
1808
|
+
.popup_fGG_sa[data-ending-style] {
|
|
1809
|
+
opacity: 0;
|
|
1810
|
+
transition: opacity .1s var(--easing-ease-in);
|
|
1766
1811
|
}
|
|
1767
1812
|
|
|
1768
|
-
.
|
|
1813
|
+
.popup_fGG_sa[data-instant] {
|
|
1814
|
+
transition-duration: 0s;
|
|
1815
|
+
}
|
|
1816
|
+
|
|
1817
|
+
@media (prefers-reduced-motion: reduce) {
|
|
1818
|
+
.popup_fGG_sa[data-starting-style], .popup_fGG_sa[data-ending-style] {
|
|
1819
|
+
transition: none;
|
|
1820
|
+
}
|
|
1821
|
+
}
|
|
1822
|
+
|
|
1823
|
+
.title_fGG_sa {
|
|
1769
1824
|
font-family: var(--font-mono);
|
|
1770
|
-
font-size: var(--font-size-
|
|
1771
|
-
font-weight: var(--font-weight-
|
|
1825
|
+
font-size: var(--font-size-md);
|
|
1826
|
+
font-weight: var(--font-weight-semibold);
|
|
1772
1827
|
color: var(--color-primary);
|
|
1773
|
-
line-height: var(--line-height-
|
|
1828
|
+
line-height: var(--line-height-tight);
|
|
1829
|
+
margin: 0;
|
|
1774
1830
|
}
|
|
1775
1831
|
|
|
1776
|
-
.
|
|
1832
|
+
.description_fGG_sa {
|
|
1777
1833
|
font-family: var(--font-mono);
|
|
1778
|
-
font-size: var(--font-size-
|
|
1834
|
+
font-size: var(--font-size-sm);
|
|
1779
1835
|
color: var(--color-secondary);
|
|
1780
1836
|
line-height: var(--line-height-relaxed);
|
|
1837
|
+
margin: 0;
|
|
1838
|
+
margin-top: var(--space-1);
|
|
1781
1839
|
}
|
|
1782
1840
|
|
|
1783
|
-
.
|
|
1841
|
+
.close_fGG_sa {
|
|
1842
|
+
top: var(--space-3);
|
|
1843
|
+
right: var(--space-3);
|
|
1784
1844
|
border-radius: var(--radius-sm);
|
|
1785
|
-
width:
|
|
1786
|
-
height:
|
|
1845
|
+
width: 22px;
|
|
1846
|
+
height: 22px;
|
|
1787
1847
|
color: var(--color-tertiary);
|
|
1788
1848
|
cursor: pointer;
|
|
1789
1849
|
transition: background-color var(--duration-fast) var(--easing-standard),
|
|
1790
|
-
color var(--duration-fast) var(--easing-standard)
|
|
1850
|
+
color var(--duration-fast) var(--easing-standard),
|
|
1851
|
+
transform .1s var(--easing-ease-out);
|
|
1791
1852
|
background: none;
|
|
1792
1853
|
border: none;
|
|
1793
1854
|
outline: none;
|
|
1794
1855
|
flex-shrink: 0;
|
|
1795
1856
|
justify-content: center;
|
|
1796
1857
|
align-items: center;
|
|
1797
|
-
margin-top: 1px;
|
|
1798
1858
|
display: flex;
|
|
1859
|
+
position: absolute;
|
|
1799
1860
|
}
|
|
1800
1861
|
|
|
1801
|
-
.
|
|
1862
|
+
.close_fGG_sa:hover {
|
|
1802
1863
|
background-color: var(--color-hover);
|
|
1803
1864
|
color: var(--color-primary);
|
|
1804
1865
|
}
|
|
1805
1866
|
|
|
1806
|
-
.
|
|
1807
|
-
|
|
1808
|
-
}
|
|
1809
|
-
}
|
|
1810
|
-
@layer components {
|
|
1811
|
-
.root_3hDtBa {
|
|
1812
|
-
align-items: center;
|
|
1813
|
-
gap: var(--space-2);
|
|
1814
|
-
cursor: pointer;
|
|
1815
|
-
user-select: none;
|
|
1816
|
-
display: flex;
|
|
1867
|
+
.close_fGG_sa:active {
|
|
1868
|
+
transform: scale(.94);
|
|
1817
1869
|
}
|
|
1818
1870
|
|
|
1819
|
-
.
|
|
1820
|
-
|
|
1821
|
-
cursor: not-allowed;
|
|
1871
|
+
.close_fGG_sa:focus-visible {
|
|
1872
|
+
box-shadow: var(--shadow-focus);
|
|
1822
1873
|
}
|
|
1823
1874
|
|
|
1824
|
-
.
|
|
1825
|
-
border-radius: var(--radius-full);
|
|
1826
|
-
background-color: var(--color-surface-3);
|
|
1827
|
-
border: var(--border-width-base) solid var(--color-line);
|
|
1828
|
-
width: 36px;
|
|
1829
|
-
height: 20px;
|
|
1830
|
-
transition: background-color var(--duration-normal) var(--easing-standard),
|
|
1831
|
-
border-color var(--duration-normal) var(--easing-standard),
|
|
1832
|
-
box-shadow var(--duration-fast) var(--easing-standard);
|
|
1833
|
-
outline: none;
|
|
1834
|
-
flex-shrink: 0;
|
|
1875
|
+
.viewport_fGG_sa {
|
|
1835
1876
|
position: relative;
|
|
1877
|
+
overflow: clip;
|
|
1836
1878
|
}
|
|
1837
1879
|
|
|
1838
|
-
.
|
|
1839
|
-
|
|
1880
|
+
.viewport_fGG_sa [data-current], .viewport_fGG_sa [data-previous] {
|
|
1881
|
+
transition: transform .2s var(--easing-ease-out),
|
|
1882
|
+
opacity .15s var(--easing-ease-out);
|
|
1840
1883
|
}
|
|
1841
1884
|
|
|
1842
|
-
.
|
|
1843
|
-
|
|
1844
|
-
border-color: var(--color-accent);
|
|
1885
|
+
.viewport_fGG_sa [data-current][data-starting-style] {
|
|
1886
|
+
opacity: 0;
|
|
1845
1887
|
}
|
|
1846
1888
|
|
|
1847
|
-
.
|
|
1848
|
-
|
|
1849
|
-
|
|
1889
|
+
.viewport_fGG_sa [data-previous][data-ending-style] {
|
|
1890
|
+
opacity: 0;
|
|
1891
|
+
transition: transform .2s var(--easing-ease-in),
|
|
1892
|
+
opacity .15s var(--easing-ease-in);
|
|
1850
1893
|
}
|
|
1851
1894
|
|
|
1852
|
-
.
|
|
1853
|
-
|
|
1854
|
-
width: 14px;
|
|
1855
|
-
height: 14px;
|
|
1856
|
-
box-shadow: var(--shadow-xs);
|
|
1857
|
-
transition: transform var(--duration-normal) var(--easing-spring);
|
|
1858
|
-
background-color: #fff;
|
|
1859
|
-
position: absolute;
|
|
1860
|
-
top: 2px;
|
|
1861
|
-
left: 2px;
|
|
1895
|
+
.viewport_fGG_sa[data-activation-direction~="down"] [data-current][data-starting-style] {
|
|
1896
|
+
transform: translateY(-6px);
|
|
1862
1897
|
}
|
|
1863
1898
|
|
|
1864
|
-
.
|
|
1865
|
-
transform:
|
|
1899
|
+
.viewport_fGG_sa[data-activation-direction~="down"] [data-previous][data-ending-style], .viewport_fGG_sa[data-activation-direction~="up"] [data-current][data-starting-style] {
|
|
1900
|
+
transform: translateY(6px);
|
|
1866
1901
|
}
|
|
1867
1902
|
|
|
1868
|
-
.
|
|
1869
|
-
|
|
1870
|
-
font-size: var(--font-size-sm);
|
|
1871
|
-
color: var(--color-primary);
|
|
1903
|
+
.viewport_fGG_sa[data-activation-direction~="up"] [data-previous][data-ending-style] {
|
|
1904
|
+
transform: translateY(-6px);
|
|
1872
1905
|
}
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
gap: var(--space-1);
|
|
1877
|
-
flex-direction: column;
|
|
1878
|
-
width: 100%;
|
|
1879
|
-
display: flex;
|
|
1906
|
+
|
|
1907
|
+
.viewport_fGG_sa[data-activation-direction~="right"] [data-current][data-starting-style] {
|
|
1908
|
+
transform: translateX(-6px);
|
|
1880
1909
|
}
|
|
1881
1910
|
|
|
1882
|
-
.
|
|
1883
|
-
|
|
1884
|
-
display: flex;
|
|
1885
|
-
position: relative;
|
|
1911
|
+
.viewport_fGG_sa[data-activation-direction~="right"] [data-previous][data-ending-style], .viewport_fGG_sa[data-activation-direction~="left"] [data-current][data-starting-style] {
|
|
1912
|
+
transform: translateX(6px);
|
|
1886
1913
|
}
|
|
1887
1914
|
|
|
1888
|
-
.
|
|
1889
|
-
|
|
1890
|
-
font-family: var(--font-mono);
|
|
1891
|
-
font-size: var(--font-size-sm);
|
|
1892
|
-
color: var(--color-primary);
|
|
1893
|
-
background-color: var(--color-surface-1);
|
|
1894
|
-
border: var(--border-width-base) solid var(--color-line);
|
|
1895
|
-
border-radius: var(--radius-md);
|
|
1896
|
-
transition: border-color var(--duration-fast) var(--easing-standard),
|
|
1897
|
-
box-shadow var(--duration-fast) var(--easing-standard),
|
|
1898
|
-
background-color var(--duration-fast) var(--easing-standard);
|
|
1899
|
-
-webkit-appearance: none;
|
|
1900
|
-
appearance: none;
|
|
1901
|
-
outline: none;
|
|
1915
|
+
.viewport_fGG_sa[data-activation-direction~="left"] [data-previous][data-ending-style] {
|
|
1916
|
+
transform: translateX(-6px);
|
|
1902
1917
|
}
|
|
1903
1918
|
|
|
1904
|
-
|
|
1905
|
-
|
|
1906
|
-
|
|
1919
|
+
@media (prefers-reduced-motion: reduce) {
|
|
1920
|
+
.viewport_fGG_sa [data-current], .viewport_fGG_sa [data-previous] {
|
|
1921
|
+
transition: opacity .15s var(--easing-ease-out);
|
|
1922
|
+
transform: none !important;
|
|
1923
|
+
}
|
|
1907
1924
|
}
|
|
1908
1925
|
|
|
1909
|
-
.
|
|
1910
|
-
|
|
1926
|
+
.arrow_fGG_sa {
|
|
1927
|
+
display: flex;
|
|
1911
1928
|
}
|
|
1912
1929
|
|
|
1913
|
-
.
|
|
1914
|
-
|
|
1915
|
-
|
|
1930
|
+
.arrow_fGG_sa[data-side="top"] {
|
|
1931
|
+
bottom: -8px;
|
|
1932
|
+
rotate: 180deg;
|
|
1916
1933
|
}
|
|
1917
1934
|
|
|
1918
|
-
.
|
|
1919
|
-
|
|
1920
|
-
|
|
1921
|
-
background-color: var(--color-surface-2);
|
|
1935
|
+
.arrow_fGG_sa[data-side="bottom"] {
|
|
1936
|
+
top: -8px;
|
|
1937
|
+
rotate: 0deg;
|
|
1922
1938
|
}
|
|
1923
1939
|
|
|
1924
|
-
.
|
|
1925
|
-
|
|
1940
|
+
.arrow_fGG_sa[data-side="left"] {
|
|
1941
|
+
right: -13px;
|
|
1942
|
+
rotate: 90deg;
|
|
1926
1943
|
}
|
|
1927
1944
|
|
|
1928
|
-
.
|
|
1929
|
-
|
|
1945
|
+
.arrow_fGG_sa[data-side="right"] {
|
|
1946
|
+
left: -13px;
|
|
1947
|
+
rotate: -90deg;
|
|
1930
1948
|
}
|
|
1931
1949
|
|
|
1932
|
-
.
|
|
1933
|
-
|
|
1934
|
-
padding-inline: var(--space-2);
|
|
1935
|
-
font-size: var(--font-size-xs);
|
|
1950
|
+
.arrow-fill_fGG_sa {
|
|
1951
|
+
fill: var(--color-elevated);
|
|
1936
1952
|
}
|
|
1937
1953
|
|
|
1938
|
-
.
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1954
|
+
.arrow-seam_fGG_sa {
|
|
1955
|
+
fill: var(--color-line);
|
|
1956
|
+
}
|
|
1957
|
+
}
|
|
1958
|
+
@layer components {
|
|
1959
|
+
.root_vOHIVq {
|
|
1960
|
+
gap: var(--space-1-5);
|
|
1961
|
+
flex-direction: column;
|
|
1962
|
+
width: 100%;
|
|
1963
|
+
display: flex;
|
|
1942
1964
|
}
|
|
1943
1965
|
|
|
1944
|
-
.
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1966
|
+
.label-row_vOHIVq {
|
|
1967
|
+
font-family: var(--font-mono);
|
|
1968
|
+
font-size: var(--font-size-xs);
|
|
1969
|
+
color: var(--color-secondary);
|
|
1970
|
+
justify-content: space-between;
|
|
1971
|
+
align-items: center;
|
|
1972
|
+
display: flex;
|
|
1949
1973
|
}
|
|
1950
1974
|
|
|
1951
|
-
.
|
|
1952
|
-
|
|
1975
|
+
.label_vOHIVq, .value_vOHIVq {
|
|
1976
|
+
font-family: var(--font-mono);
|
|
1977
|
+
font-size: var(--font-size-xs);
|
|
1978
|
+
color: var(--color-secondary);
|
|
1953
1979
|
}
|
|
1954
1980
|
|
|
1955
|
-
.
|
|
1956
|
-
|
|
1981
|
+
.track_vOHIVq {
|
|
1982
|
+
background-color: var(--color-surface-3);
|
|
1983
|
+
border-radius: var(--radius-full);
|
|
1984
|
+
width: 100%;
|
|
1985
|
+
position: relative;
|
|
1986
|
+
overflow: hidden;
|
|
1957
1987
|
}
|
|
1958
1988
|
|
|
1959
|
-
.
|
|
1960
|
-
|
|
1989
|
+
.track-sm_vOHIVq {
|
|
1990
|
+
height: 4px;
|
|
1991
|
+
}
|
|
1992
|
+
|
|
1993
|
+
.track-md_vOHIVq {
|
|
1994
|
+
height: 6px;
|
|
1995
|
+
}
|
|
1996
|
+
|
|
1997
|
+
.track-lg_vOHIVq {
|
|
1998
|
+
height: 8px;
|
|
1999
|
+
}
|
|
2000
|
+
|
|
2001
|
+
.indicator_vOHIVq {
|
|
2002
|
+
border-radius: var(--radius-full);
|
|
2003
|
+
background-color: var(--color-accent);
|
|
2004
|
+
height: 100%;
|
|
2005
|
+
transition: width var(--duration-slower) var(--easing-standard);
|
|
2006
|
+
}
|
|
2007
|
+
|
|
2008
|
+
.indicator_vOHIVq[data-meter-state="optimum"] {
|
|
2009
|
+
background-color: var(--color-success-solid);
|
|
2010
|
+
}
|
|
2011
|
+
|
|
2012
|
+
.indicator_vOHIVq[data-meter-state="suboptimal"] {
|
|
2013
|
+
background-color: var(--color-warning-solid);
|
|
2014
|
+
}
|
|
2015
|
+
|
|
2016
|
+
.indicator_vOHIVq[data-meter-state="critical"] {
|
|
2017
|
+
background-color: var(--color-error-solid);
|
|
2018
|
+
}
|
|
2019
|
+
|
|
2020
|
+
.tick_vOHIVq {
|
|
2021
|
+
background-color: var(--color-canvas);
|
|
2022
|
+
opacity: .6;
|
|
1961
2023
|
pointer-events: none;
|
|
1962
|
-
width:
|
|
1963
|
-
justify-content: center;
|
|
1964
|
-
align-items: center;
|
|
1965
|
-
display: flex;
|
|
2024
|
+
width: 1px;
|
|
1966
2025
|
position: absolute;
|
|
2026
|
+
top: 0;
|
|
2027
|
+
bottom: 0;
|
|
1967
2028
|
}
|
|
1968
2029
|
|
|
1969
|
-
.
|
|
1970
|
-
|
|
2030
|
+
.circular-root_vOHIVq {
|
|
2031
|
+
align-items: center;
|
|
2032
|
+
gap: var(--space-1-5);
|
|
2033
|
+
flex-direction: column;
|
|
2034
|
+
display: inline-flex;
|
|
1971
2035
|
}
|
|
1972
2036
|
|
|
1973
|
-
.
|
|
1974
|
-
|
|
2037
|
+
.circular-svg_vOHIVq {
|
|
2038
|
+
overflow: visible;
|
|
1975
2039
|
}
|
|
1976
|
-
|
|
1977
|
-
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
gap: var(--space-2);
|
|
1981
|
-
cursor: pointer;
|
|
1982
|
-
user-select: none;
|
|
1983
|
-
display: flex;
|
|
2040
|
+
|
|
2041
|
+
.circular-track_vOHIVq {
|
|
2042
|
+
fill: none;
|
|
2043
|
+
stroke: var(--color-surface-3);
|
|
1984
2044
|
}
|
|
1985
2045
|
|
|
1986
|
-
.
|
|
1987
|
-
|
|
1988
|
-
|
|
2046
|
+
.circular-indicator_vOHIVq {
|
|
2047
|
+
fill: none;
|
|
2048
|
+
stroke: var(--color-accent);
|
|
2049
|
+
stroke-linecap: round;
|
|
2050
|
+
transition: stroke-dashoffset var(--duration-slower) var(--easing-standard);
|
|
1989
2051
|
}
|
|
1990
2052
|
|
|
1991
|
-
.
|
|
1992
|
-
|
|
1993
|
-
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
|
|
1998
|
-
|
|
1999
|
-
|
|
2000
|
-
|
|
2001
|
-
|
|
2053
|
+
.circular-indicator_vOHIVq[data-meter-state="optimum"] {
|
|
2054
|
+
stroke: var(--color-success-solid);
|
|
2055
|
+
}
|
|
2056
|
+
|
|
2057
|
+
.circular-indicator_vOHIVq[data-meter-state="suboptimal"] {
|
|
2058
|
+
stroke: var(--color-warning-solid);
|
|
2059
|
+
}
|
|
2060
|
+
|
|
2061
|
+
.circular-indicator_vOHIVq[data-meter-state="critical"] {
|
|
2062
|
+
stroke: var(--color-error-solid);
|
|
2063
|
+
}
|
|
2064
|
+
|
|
2065
|
+
.circular-center_vOHIVq {
|
|
2002
2066
|
justify-content: center;
|
|
2003
2067
|
align-items: center;
|
|
2068
|
+
gap: var(--space-0-5);
|
|
2069
|
+
flex-direction: column;
|
|
2004
2070
|
display: flex;
|
|
2005
|
-
position: relative;
|
|
2006
2071
|
}
|
|
2007
2072
|
|
|
2008
|
-
.
|
|
2009
|
-
|
|
2010
|
-
|
|
2073
|
+
.circular-value_vOHIVq {
|
|
2074
|
+
font-family: var(--font-mono);
|
|
2075
|
+
font-weight: var(--font-weight-semibold);
|
|
2076
|
+
color: var(--color-primary);
|
|
2077
|
+
line-height: 1;
|
|
2011
2078
|
}
|
|
2012
2079
|
|
|
2013
|
-
.
|
|
2014
|
-
|
|
2080
|
+
.circular-label_vOHIVq {
|
|
2081
|
+
font-family: var(--font-mono);
|
|
2082
|
+
color: var(--color-secondary);
|
|
2083
|
+
line-height: 1;
|
|
2015
2084
|
}
|
|
2016
2085
|
|
|
2017
|
-
.
|
|
2018
|
-
|
|
2019
|
-
border-color: var(--color-accent);
|
|
2086
|
+
.circular-sm_vOHIVq .circular-value_vOHIVq {
|
|
2087
|
+
font-size: var(--font-size-sm);
|
|
2020
2088
|
}
|
|
2021
2089
|
|
|
2022
|
-
.
|
|
2023
|
-
|
|
2024
|
-
border-color: var(--color-accent-hover);
|
|
2090
|
+
.circular-sm_vOHIVq .circular-label_vOHIVq {
|
|
2091
|
+
font-size: var(--font-size-xs);
|
|
2025
2092
|
}
|
|
2026
2093
|
|
|
2027
|
-
.
|
|
2028
|
-
|
|
2029
|
-
height: 10px;
|
|
2030
|
-
color: var(--color-on-accent);
|
|
2031
|
-
opacity: 0;
|
|
2032
|
-
transition: opacity var(--duration-fast) var(--easing-standard),
|
|
2033
|
-
transform var(--duration-fast) var(--easing-spring);
|
|
2034
|
-
transform: scale(.9);
|
|
2094
|
+
.circular-md_vOHIVq .circular-value_vOHIVq {
|
|
2095
|
+
font-size: var(--font-size-xl);
|
|
2035
2096
|
}
|
|
2036
2097
|
|
|
2037
|
-
.
|
|
2038
|
-
|
|
2039
|
-
transform: scale(1);
|
|
2098
|
+
.circular-md_vOHIVq .circular-label_vOHIVq {
|
|
2099
|
+
font-size: var(--font-size-xs);
|
|
2040
2100
|
}
|
|
2041
2101
|
|
|
2042
|
-
.
|
|
2043
|
-
font-
|
|
2102
|
+
.circular-lg_vOHIVq .circular-value_vOHIVq {
|
|
2103
|
+
font-size: var(--font-size-2xl);
|
|
2104
|
+
}
|
|
2105
|
+
|
|
2106
|
+
.circular-lg_vOHIVq .circular-label_vOHIVq {
|
|
2044
2107
|
font-size: var(--font-size-sm);
|
|
2045
|
-
|
|
2046
|
-
|
|
2108
|
+
}
|
|
2109
|
+
}
|
|
2110
|
+
@layer components {
|
|
2111
|
+
.group_Ps7OCW {
|
|
2112
|
+
gap: var(--space-2);
|
|
2113
|
+
flex-direction: column;
|
|
2114
|
+
display: flex;
|
|
2115
|
+
}
|
|
2116
|
+
|
|
2117
|
+
.group-label_Ps7OCW {
|
|
2118
|
+
font-family: var(--font-mono);
|
|
2119
|
+
font-size: var(--font-size-xs);
|
|
2120
|
+
font-weight: var(--font-weight-semibold);
|
|
2121
|
+
color: var(--color-tertiary);
|
|
2122
|
+
text-transform: uppercase;
|
|
2123
|
+
letter-spacing: var(--letter-spacing-wide);
|
|
2124
|
+
margin-bottom: var(--space-1);
|
|
2047
2125
|
}
|
|
2048
2126
|
}
|
|
2049
2127
|
@layer components {
|
|
@@ -2303,332 +2381,552 @@
|
|
|
2303
2381
|
}
|
|
2304
2382
|
}
|
|
2305
2383
|
@layer components {
|
|
2306
|
-
.
|
|
2307
|
-
|
|
2308
|
-
|
|
2309
|
-
flex-direction: column;
|
|
2310
|
-
display: flex;
|
|
2384
|
+
.positioner_U19WMG {
|
|
2385
|
+
z-index: var(--z-dropdown);
|
|
2386
|
+
outline: none;
|
|
2311
2387
|
}
|
|
2312
2388
|
|
|
2313
|
-
.
|
|
2314
|
-
|
|
2315
|
-
|
|
2389
|
+
.popup_U19WMG {
|
|
2390
|
+
box-sizing: border-box;
|
|
2391
|
+
padding: var(--space-1) 0;
|
|
2392
|
+
border-radius: var(--radius-lg);
|
|
2393
|
+
background-color: var(--color-overlay);
|
|
2394
|
+
border: var(--border-width-base) solid var(--color-line);
|
|
2395
|
+
box-shadow: var(--shadow-popover);
|
|
2396
|
+
color: var(--color-primary);
|
|
2397
|
+
font-family: var(--font-sans);
|
|
2398
|
+
font-size: var(--font-size-md);
|
|
2399
|
+
min-width: 220px;
|
|
2400
|
+
transform-origin: var(--transform-origin);
|
|
2401
|
+
transition: opacity .15s var(--easing-ease-out),
|
|
2402
|
+
transform .15s var(--easing-ease-out);
|
|
2403
|
+
outline: none;
|
|
2316
2404
|
}
|
|
2317
2405
|
|
|
2318
|
-
|
|
2319
|
-
|
|
2406
|
+
@supports (backdrop-filter: blur(20px)) {
|
|
2407
|
+
.popup_U19WMG {
|
|
2408
|
+
-webkit-backdrop-filter: blur(20px) saturate(1.8);
|
|
2409
|
+
}
|
|
2320
2410
|
}
|
|
2321
2411
|
|
|
2322
|
-
.
|
|
2323
|
-
|
|
2324
|
-
|
|
2325
|
-
font-size: var(--font-size-xs);
|
|
2326
|
-
font-weight: var(--font-weight-medium);
|
|
2327
|
-
color: var(--color-secondary);
|
|
2328
|
-
letter-spacing: var(--letter-spacing-wide);
|
|
2329
|
-
text-transform: uppercase;
|
|
2412
|
+
.popup_U19WMG[data-starting-style] {
|
|
2413
|
+
opacity: 0;
|
|
2414
|
+
transform: scale(.97);
|
|
2330
2415
|
}
|
|
2331
2416
|
|
|
2332
|
-
.
|
|
2333
|
-
|
|
2417
|
+
.popup_U19WMG[data-ending-style] {
|
|
2418
|
+
opacity: 0;
|
|
2419
|
+
transition: opacity 75ms var(--easing-ease-in),
|
|
2420
|
+
transform 75ms var(--easing-ease-in);
|
|
2421
|
+
transform: scale(.99);
|
|
2334
2422
|
}
|
|
2335
2423
|
|
|
2336
|
-
.
|
|
2337
|
-
|
|
2338
|
-
|
|
2339
|
-
|
|
2340
|
-
|
|
2341
|
-
|
|
2342
|
-
|
|
2343
|
-
|
|
2424
|
+
.trigger_U19WMG {
|
|
2425
|
+
-webkit-user-select: none;
|
|
2426
|
+
user-select: none;
|
|
2427
|
+
cursor: default;
|
|
2428
|
+
outline: none;
|
|
2429
|
+
display: block;
|
|
2430
|
+
}
|
|
2431
|
+
|
|
2432
|
+
.item_U19WMG {
|
|
2433
|
+
align-items: center;
|
|
2434
|
+
gap: var(--space-2);
|
|
2435
|
+
padding: var(--space-1) var(--space-4);
|
|
2436
|
+
font-family: var(--font-sans);
|
|
2437
|
+
font-size: var(--font-size-md);
|
|
2344
2438
|
color: var(--color-primary);
|
|
2345
|
-
|
|
2346
|
-
|
|
2347
|
-
border-bottom: var(--border-width-base) solid var(--color-line);
|
|
2348
|
-
transition: box-shadow var(--duration-fast) var(--easing-standard);
|
|
2349
|
-
border-left: none;
|
|
2350
|
-
border-right: none;
|
|
2351
|
-
border-radius: 0;
|
|
2439
|
+
cursor: default;
|
|
2440
|
+
user-select: none;
|
|
2352
2441
|
outline: none;
|
|
2353
|
-
|
|
2354
|
-
|
|
2355
|
-
|
|
2442
|
+
transition: none;
|
|
2443
|
+
display: flex;
|
|
2444
|
+
position: relative;
|
|
2356
2445
|
}
|
|
2357
2446
|
|
|
2358
|
-
.
|
|
2359
|
-
|
|
2360
|
-
|
|
2447
|
+
.item_U19WMG[data-highlighted] {
|
|
2448
|
+
background-color: var(--color-accent);
|
|
2449
|
+
color: var(--color-on-accent);
|
|
2361
2450
|
}
|
|
2362
2451
|
|
|
2363
|
-
.
|
|
2364
|
-
opacity: .
|
|
2452
|
+
.item_U19WMG[data-disabled] {
|
|
2453
|
+
opacity: .36;
|
|
2365
2454
|
cursor: not-allowed;
|
|
2366
2455
|
}
|
|
2367
2456
|
|
|
2368
|
-
.
|
|
2369
|
-
|
|
2370
|
-
|
|
2371
|
-
|
|
2372
|
-
|
|
2373
|
-
height: 2rem;
|
|
2374
|
-
color: var(--color-secondary);
|
|
2375
|
-
cursor: pointer;
|
|
2376
|
-
user-select: none;
|
|
2377
|
-
transition: background-color var(--duration-fast) var(--easing-standard),
|
|
2378
|
-
color var(--duration-fast) var(--easing-standard),
|
|
2379
|
-
transform .1s var(--easing-ease-out);
|
|
2380
|
-
outline: none;
|
|
2457
|
+
.item-icon_U19WMG {
|
|
2458
|
+
width: 16px;
|
|
2459
|
+
height: 16px;
|
|
2460
|
+
color: inherit;
|
|
2461
|
+
flex-shrink: 0;
|
|
2381
2462
|
justify-content: center;
|
|
2382
2463
|
align-items: center;
|
|
2383
|
-
margin: 0;
|
|
2384
|
-
padding: 0;
|
|
2385
2464
|
display: flex;
|
|
2386
2465
|
}
|
|
2387
2466
|
|
|
2388
|
-
.
|
|
2389
|
-
|
|
2390
|
-
color: var(--color-primary);
|
|
2467
|
+
.item-label_U19WMG {
|
|
2468
|
+
flex: 1;
|
|
2391
2469
|
}
|
|
2392
2470
|
|
|
2393
|
-
.
|
|
2394
|
-
|
|
2395
|
-
|
|
2471
|
+
.item-shortcut_U19WMG {
|
|
2472
|
+
margin-left: var(--space-8);
|
|
2473
|
+
font-size: var(--font-size-sm);
|
|
2474
|
+
color: var(--color-tertiary);
|
|
2475
|
+
flex-shrink: 0;
|
|
2396
2476
|
}
|
|
2397
2477
|
|
|
2398
|
-
.
|
|
2399
|
-
|
|
2400
|
-
box-shadow: inset 0 0 0 1.5px var(--color-accent);
|
|
2478
|
+
.item_U19WMG[data-highlighted] .item-shortcut_U19WMG {
|
|
2479
|
+
color: color-mix(in srgb, var(--color-on-accent) 60%, transparent);
|
|
2401
2480
|
}
|
|
2402
2481
|
|
|
2403
|
-
.
|
|
2404
|
-
|
|
2482
|
+
.submenu-icon_U19WMG {
|
|
2483
|
+
color: var(--color-tertiary);
|
|
2484
|
+
flex-shrink: 0;
|
|
2485
|
+
margin-left: auto;
|
|
2486
|
+
}
|
|
2487
|
+
|
|
2488
|
+
.item_U19WMG[data-highlighted] .submenu-icon_U19WMG, .submenu-trigger_U19WMG[data-highlighted] .submenu-icon_U19WMG {
|
|
2489
|
+
color: color-mix(in srgb, var(--color-on-accent) 70%, transparent);
|
|
2490
|
+
}
|
|
2491
|
+
|
|
2492
|
+
.submenu-trigger_U19WMG {
|
|
2493
|
+
align-items: center;
|
|
2494
|
+
gap: var(--space-2);
|
|
2495
|
+
padding: var(--space-1) var(--space-4);
|
|
2496
|
+
font-family: var(--font-sans);
|
|
2497
|
+
font-size: var(--font-size-md);
|
|
2498
|
+
color: var(--color-primary);
|
|
2499
|
+
cursor: default;
|
|
2500
|
+
user-select: none;
|
|
2501
|
+
outline: none;
|
|
2502
|
+
transition: none;
|
|
2503
|
+
display: flex;
|
|
2504
|
+
}
|
|
2505
|
+
|
|
2506
|
+
.submenu-trigger_U19WMG[data-highlighted], .submenu-trigger_U19WMG[data-popup-open] {
|
|
2507
|
+
background-color: var(--color-accent);
|
|
2508
|
+
color: var(--color-on-accent);
|
|
2509
|
+
}
|
|
2510
|
+
|
|
2511
|
+
.submenu-trigger_U19WMG[data-disabled] {
|
|
2512
|
+
opacity: .36;
|
|
2405
2513
|
cursor: not-allowed;
|
|
2406
2514
|
}
|
|
2407
2515
|
|
|
2408
|
-
.
|
|
2409
|
-
|
|
2516
|
+
.group-label_U19WMG {
|
|
2517
|
+
padding: var(--space-1) var(--space-4) var(--space-0-5);
|
|
2518
|
+
font-family: var(--font-sans);
|
|
2519
|
+
font-size: var(--font-size-xs);
|
|
2520
|
+
font-weight: var(--font-weight-semibold);
|
|
2521
|
+
color: var(--color-tertiary);
|
|
2522
|
+
text-transform: uppercase;
|
|
2523
|
+
letter-spacing: var(--letter-spacing-wide);
|
|
2524
|
+
cursor: default;
|
|
2525
|
+
user-select: none;
|
|
2410
2526
|
}
|
|
2411
2527
|
|
|
2412
|
-
.
|
|
2413
|
-
|
|
2528
|
+
.separator_U19WMG {
|
|
2529
|
+
margin: var(--space-1) var(--space-4);
|
|
2530
|
+
height: var(--border-width-base);
|
|
2531
|
+
background-color: var(--color-line-subtle);
|
|
2414
2532
|
}
|
|
2415
2533
|
}
|
|
2416
2534
|
@layer components {
|
|
2417
|
-
.
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
|
|
2535
|
+
.trigger_Vd2Aoq {
|
|
2536
|
+
justify-content: space-between;
|
|
2537
|
+
align-items: center;
|
|
2538
|
+
gap: var(--space-2);
|
|
2539
|
+
width: 100%;
|
|
2540
|
+
font-family: var(--font-mono);
|
|
2541
|
+
font-size: var(--font-size-sm);
|
|
2542
|
+
color: var(--color-primary);
|
|
2543
|
+
background-color: var(--color-surface-1);
|
|
2544
|
+
border: var(--border-width-base) solid var(--color-line);
|
|
2545
|
+
border-radius: var(--radius-md);
|
|
2546
|
+
cursor: pointer;
|
|
2547
|
+
transition: border-color var(--duration-fast) var(--easing-standard),
|
|
2548
|
+
box-shadow var(--duration-fast) var(--easing-standard);
|
|
2549
|
+
-webkit-appearance: none;
|
|
2550
|
+
appearance: none;
|
|
2551
|
+
height: 30px;
|
|
2552
|
+
padding-inline: var(--space-2-5);
|
|
2553
|
+
text-align: left;
|
|
2554
|
+
white-space: nowrap;
|
|
2555
|
+
text-overflow: ellipsis;
|
|
2556
|
+
outline: none;
|
|
2557
|
+
display: inline-flex;
|
|
2558
|
+
overflow: hidden;
|
|
2559
|
+
}
|
|
2428
2560
|
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
}
|
|
2561
|
+
.trigger_Vd2Aoq:hover:not([data-disabled]) {
|
|
2562
|
+
border-color: var(--color-line-strong);
|
|
2432
2563
|
}
|
|
2433
2564
|
|
|
2434
|
-
.
|
|
2565
|
+
.trigger_Vd2Aoq:focus-visible {
|
|
2566
|
+
border-color: var(--color-accent);
|
|
2567
|
+
box-shadow: var(--shadow-focus);
|
|
2568
|
+
}
|
|
2569
|
+
|
|
2570
|
+
.trigger_Vd2Aoq[data-disabled] {
|
|
2571
|
+
opacity: .44;
|
|
2572
|
+
cursor: not-allowed;
|
|
2573
|
+
}
|
|
2574
|
+
|
|
2575
|
+
.trigger-value_Vd2Aoq {
|
|
2576
|
+
text-overflow: ellipsis;
|
|
2577
|
+
flex: 1;
|
|
2578
|
+
overflow: hidden;
|
|
2579
|
+
}
|
|
2580
|
+
|
|
2581
|
+
.trigger-icon_Vd2Aoq {
|
|
2582
|
+
color: var(--color-tertiary);
|
|
2583
|
+
transition: transform var(--duration-normal) var(--easing-standard);
|
|
2584
|
+
flex-shrink: 0;
|
|
2585
|
+
}
|
|
2586
|
+
|
|
2587
|
+
.trigger_Vd2Aoq[data-popup-open] .trigger-icon_Vd2Aoq {
|
|
2588
|
+
transform: rotate(180deg);
|
|
2589
|
+
}
|
|
2590
|
+
|
|
2591
|
+
.positioner_Vd2Aoq {
|
|
2592
|
+
z-index: var(--z-dropdown);
|
|
2593
|
+
}
|
|
2594
|
+
|
|
2595
|
+
.popup_Vd2Aoq {
|
|
2596
|
+
background-color: var(--color-overlay);
|
|
2597
|
+
border: var(--border-width-base) solid var(--color-line);
|
|
2598
|
+
border-radius: var(--radius-lg);
|
|
2599
|
+
box-shadow: var(--shadow-popover);
|
|
2600
|
+
padding: var(--space-1);
|
|
2601
|
+
min-width: var(--anchor-width);
|
|
2602
|
+
max-width: var(--available-width);
|
|
2603
|
+
width: fit-content;
|
|
2604
|
+
max-height: 280px;
|
|
2605
|
+
transform-origin: var(--transform-origin);
|
|
2606
|
+
transition: opacity .15s var(--easing-ease-out),
|
|
2607
|
+
transform .15s var(--easing-ease-out);
|
|
2608
|
+
outline: none;
|
|
2609
|
+
overflow-y: auto;
|
|
2610
|
+
}
|
|
2611
|
+
|
|
2612
|
+
.popup_Vd2Aoq[data-starting-style] {
|
|
2435
2613
|
opacity: 0;
|
|
2614
|
+
transform: scale(.95);
|
|
2436
2615
|
}
|
|
2437
2616
|
|
|
2438
|
-
.
|
|
2439
|
-
|
|
2617
|
+
.popup_Vd2Aoq[data-ending-style] {
|
|
2618
|
+
opacity: 0;
|
|
2619
|
+
transition: opacity 75ms var(--easing-ease-in),
|
|
2620
|
+
transform 75ms var(--easing-ease-in);
|
|
2621
|
+
transform: scale(.98);
|
|
2440
2622
|
}
|
|
2441
2623
|
|
|
2442
|
-
|
|
2443
|
-
|
|
2624
|
+
@supports (backdrop-filter: blur(12px)) {
|
|
2625
|
+
.popup_Vd2Aoq {
|
|
2626
|
+
-webkit-backdrop-filter: blur(12px) saturate(1.5);
|
|
2627
|
+
}
|
|
2444
2628
|
}
|
|
2445
2629
|
|
|
2446
|
-
.
|
|
2447
|
-
|
|
2630
|
+
.item_Vd2Aoq {
|
|
2631
|
+
align-items: center;
|
|
2632
|
+
gap: var(--space-2);
|
|
2633
|
+
padding: var(--space-1-5) var(--space-2-5);
|
|
2634
|
+
font-family: var(--font-mono);
|
|
2635
|
+
font-size: var(--font-size-sm);
|
|
2636
|
+
color: var(--color-primary);
|
|
2637
|
+
border-radius: var(--radius-sm);
|
|
2638
|
+
cursor: default;
|
|
2639
|
+
transition: background-color var(--duration-fast) var(--easing-standard);
|
|
2640
|
+
user-select: none;
|
|
2641
|
+
outline: none;
|
|
2448
2642
|
display: flex;
|
|
2449
|
-
position: fixed;
|
|
2450
|
-
inset: 0;
|
|
2451
2643
|
}
|
|
2452
2644
|
|
|
2453
|
-
.
|
|
2454
|
-
|
|
2455
|
-
|
|
2645
|
+
.item_Vd2Aoq:hover, .item_Vd2Aoq[data-highlighted] {
|
|
2646
|
+
background-color: var(--color-accent);
|
|
2647
|
+
color: var(--color-on-accent);
|
|
2456
2648
|
}
|
|
2457
2649
|
|
|
2458
|
-
.
|
|
2459
|
-
|
|
2460
|
-
align-items: stretch;
|
|
2650
|
+
.item_Vd2Aoq[data-selected] {
|
|
2651
|
+
font-weight: var(--font-weight-medium);
|
|
2461
2652
|
}
|
|
2462
2653
|
|
|
2463
|
-
.
|
|
2464
|
-
|
|
2465
|
-
|
|
2654
|
+
.item_Vd2Aoq[data-disabled] {
|
|
2655
|
+
opacity: .44;
|
|
2656
|
+
cursor: not-allowed;
|
|
2466
2657
|
}
|
|
2467
2658
|
|
|
2468
|
-
.
|
|
2469
|
-
|
|
2470
|
-
align-items:
|
|
2659
|
+
.item-indicator_Vd2Aoq {
|
|
2660
|
+
color: var(--color-accent);
|
|
2661
|
+
align-items: center;
|
|
2662
|
+
margin-left: auto;
|
|
2663
|
+
display: flex;
|
|
2471
2664
|
}
|
|
2472
2665
|
|
|
2473
|
-
|
|
2474
|
-
|
|
2475
|
-
|
|
2476
|
-
}
|
|
2666
|
+
.item_Vd2Aoq:hover .item-indicator_Vd2Aoq, .item_Vd2Aoq[data-highlighted] .item-indicator_Vd2Aoq {
|
|
2667
|
+
color: var(--color-on-accent);
|
|
2668
|
+
}
|
|
2477
2669
|
|
|
2478
|
-
|
|
2479
|
-
|
|
2480
|
-
|
|
2670
|
+
.group-label_Vd2Aoq {
|
|
2671
|
+
padding: var(--space-1) var(--space-2-5);
|
|
2672
|
+
font-size: var(--font-size-xs);
|
|
2673
|
+
font-weight: var(--font-weight-semibold);
|
|
2674
|
+
color: var(--color-tertiary);
|
|
2675
|
+
letter-spacing: var(--letter-spacing-wider);
|
|
2676
|
+
text-transform: uppercase;
|
|
2677
|
+
}
|
|
2481
2678
|
|
|
2482
|
-
|
|
2483
|
-
|
|
2484
|
-
|
|
2679
|
+
.separator_Vd2Aoq {
|
|
2680
|
+
height: var(--border-width-base);
|
|
2681
|
+
background-color: var(--color-line-subtle);
|
|
2682
|
+
margin: var(--space-1) 0;
|
|
2485
2683
|
}
|
|
2486
2684
|
|
|
2487
|
-
.
|
|
2488
|
-
|
|
2489
|
-
|
|
2490
|
-
|
|
2491
|
-
|
|
2492
|
-
|
|
2493
|
-
|
|
2685
|
+
.list_Vd2Aoq {
|
|
2686
|
+
flex-direction: column;
|
|
2687
|
+
gap: 0;
|
|
2688
|
+
display: flex;
|
|
2689
|
+
}
|
|
2690
|
+
}
|
|
2691
|
+
@layer components {
|
|
2692
|
+
.item_hqwDuG {
|
|
2693
|
+
align-items: center;
|
|
2694
|
+
gap: var(--space-2);
|
|
2695
|
+
cursor: pointer;
|
|
2696
|
+
user-select: none;
|
|
2697
|
+
display: flex;
|
|
2698
|
+
}
|
|
2699
|
+
|
|
2700
|
+
.item_hqwDuG:has([data-disabled]) {
|
|
2701
|
+
cursor: not-allowed;
|
|
2702
|
+
}
|
|
2703
|
+
|
|
2704
|
+
.item_hqwDuG:has([data-disabled]) .label_hqwDuG {
|
|
2705
|
+
opacity: .44;
|
|
2706
|
+
}
|
|
2707
|
+
|
|
2708
|
+
.radio_hqwDuG {
|
|
2709
|
+
border-radius: var(--radius-full);
|
|
2710
|
+
border: var(--border-width-base) solid var(--color-line-strong);
|
|
2711
|
+
background-color: var(--color-surface-1);
|
|
2712
|
+
width: 16px;
|
|
2713
|
+
height: 16px;
|
|
2714
|
+
transition: background-color var(--duration-fast) var(--easing-standard),
|
|
2715
|
+
border-color var(--duration-fast) var(--easing-standard),
|
|
2716
|
+
box-shadow var(--duration-fast) var(--easing-standard);
|
|
2494
2717
|
outline: none;
|
|
2495
|
-
|
|
2496
|
-
|
|
2497
|
-
|
|
2718
|
+
flex-shrink: 0;
|
|
2719
|
+
justify-content: center;
|
|
2720
|
+
align-items: center;
|
|
2721
|
+
margin: 0;
|
|
2722
|
+
padding: 0;
|
|
2723
|
+
display: flex;
|
|
2724
|
+
position: relative;
|
|
2498
2725
|
}
|
|
2499
2726
|
|
|
2500
|
-
.
|
|
2501
|
-
|
|
2502
|
-
|
|
2727
|
+
.radio_hqwDuG:focus-visible {
|
|
2728
|
+
box-shadow: var(--shadow-focus);
|
|
2729
|
+
border-color: var(--color-accent);
|
|
2503
2730
|
}
|
|
2504
2731
|
|
|
2505
|
-
.
|
|
2506
|
-
|
|
2732
|
+
.radio_hqwDuG:hover:not([data-disabled]) {
|
|
2733
|
+
border-color: var(--color-accent);
|
|
2507
2734
|
}
|
|
2508
2735
|
|
|
2509
|
-
.
|
|
2510
|
-
|
|
2511
|
-
|
|
2512
|
-
|
|
2513
|
-
max-width: calc(100vw - 3rem + var(--bleed));
|
|
2514
|
-
padding: var(--space-6);
|
|
2515
|
-
padding-right: calc(var(--space-6) + var(--bleed));
|
|
2516
|
-
margin-right: calc(-1 * var(--bleed));
|
|
2517
|
-
transform: translateX(var(--drawer-swipe-movement-x));
|
|
2518
|
-
transition-property: transform;
|
|
2736
|
+
.radio_hqwDuG[data-checked] {
|
|
2737
|
+
background-color: var(--color-accent);
|
|
2738
|
+
border-color: var(--color-accent);
|
|
2739
|
+
}
|
|
2519
2740
|
|
|
2520
|
-
|
|
2521
|
-
|
|
2522
|
-
|
|
2523
|
-
margin-right: 0;
|
|
2524
|
-
}
|
|
2741
|
+
.radio_hqwDuG[data-checked]:hover:not([data-disabled]) {
|
|
2742
|
+
background-color: var(--color-accent-hover);
|
|
2743
|
+
border-color: var(--color-accent-hover);
|
|
2525
2744
|
}
|
|
2526
2745
|
|
|
2527
|
-
.
|
|
2528
|
-
|
|
2746
|
+
.radio_hqwDuG[data-disabled] {
|
|
2747
|
+
opacity: .44;
|
|
2748
|
+
cursor: not-allowed;
|
|
2749
|
+
pointer-events: none;
|
|
2529
2750
|
}
|
|
2530
2751
|
|
|
2531
|
-
.
|
|
2532
|
-
|
|
2533
|
-
|
|
2534
|
-
width:
|
|
2535
|
-
|
|
2536
|
-
|
|
2537
|
-
|
|
2538
|
-
|
|
2539
|
-
transform:
|
|
2540
|
-
|
|
2752
|
+
.indicator_hqwDuG {
|
|
2753
|
+
border-radius: var(--radius-full);
|
|
2754
|
+
background-color: var(--color-on-accent);
|
|
2755
|
+
width: 6px;
|
|
2756
|
+
height: 6px;
|
|
2757
|
+
transition: transform var(--duration-fast) var(--easing-spring),
|
|
2758
|
+
opacity var(--duration-fast) var(--easing-standard);
|
|
2759
|
+
opacity: 0;
|
|
2760
|
+
transform: scale(0);
|
|
2761
|
+
}
|
|
2762
|
+
|
|
2763
|
+
.radio_hqwDuG[data-checked] .indicator_hqwDuG {
|
|
2764
|
+
opacity: 1;
|
|
2765
|
+
transform: scale(1);
|
|
2766
|
+
}
|
|
2767
|
+
|
|
2768
|
+
.label_hqwDuG {
|
|
2769
|
+
font-family: var(--font-mono);
|
|
2770
|
+
font-size: var(--font-size-sm);
|
|
2771
|
+
color: var(--color-primary);
|
|
2772
|
+
line-height: var(--line-height-normal);
|
|
2773
|
+
}
|
|
2774
|
+
}
|
|
2775
|
+
@layer components {
|
|
2776
|
+
.backdrop_xocxMW {
|
|
2777
|
+
min-height: 100dvh;
|
|
2778
|
+
z-index: var(--z-overlay);
|
|
2779
|
+
transition: opacity var(--duration-slow) var(--easing-standard);
|
|
2780
|
+
background-color: #0000007a;
|
|
2781
|
+
position: fixed;
|
|
2782
|
+
inset: 0;
|
|
2541
2783
|
|
|
2542
2784
|
@supports (-webkit-touch-callout: none) {
|
|
2543
|
-
|
|
2544
|
-
border-radius: var(--radius-xl);
|
|
2545
|
-
margin-left: 0;
|
|
2785
|
+
position: absolute;
|
|
2546
2786
|
}
|
|
2547
2787
|
}
|
|
2548
2788
|
|
|
2549
|
-
.
|
|
2550
|
-
|
|
2789
|
+
.backdrop_xocxMW[data-starting-style], .backdrop_xocxMW[data-ending-style] {
|
|
2790
|
+
opacity: 0;
|
|
2551
2791
|
}
|
|
2552
2792
|
|
|
2553
|
-
.
|
|
2554
|
-
|
|
2555
|
-
|
|
2556
|
-
|
|
2557
|
-
|
|
2558
|
-
|
|
2559
|
-
|
|
2560
|
-
|
|
2561
|
-
|
|
2793
|
+
.popup_xocxMW {
|
|
2794
|
+
z-index: var(--z-modal);
|
|
2795
|
+
background-color: var(--color-elevated);
|
|
2796
|
+
border: var(--border-width-base) solid var(--color-line);
|
|
2797
|
+
border-radius: var(--radius-2xl);
|
|
2798
|
+
box-shadow: var(--shadow-xl);
|
|
2799
|
+
padding: var(--space-5) var(--space-6);
|
|
2800
|
+
width: min(380px, calc(100vw - var(--space-8)));
|
|
2801
|
+
gap: var(--space-3);
|
|
2802
|
+
transition: opacity .2s var(--easing-ease-out),
|
|
2803
|
+
transform .2s var(--easing-spring);
|
|
2804
|
+
outline: none;
|
|
2805
|
+
flex-direction: column;
|
|
2806
|
+
display: flex;
|
|
2807
|
+
position: fixed;
|
|
2808
|
+
top: 50%;
|
|
2809
|
+
left: 50%;
|
|
2810
|
+
overflow: hidden;
|
|
2811
|
+
transform: translate(-50%, -50%);
|
|
2812
|
+
}
|
|
2562
2813
|
|
|
2563
|
-
|
|
2564
|
-
|
|
2565
|
-
|
|
2814
|
+
.popup_xocxMW[data-starting-style] {
|
|
2815
|
+
opacity: 0;
|
|
2816
|
+
transform: translate(-50%, -48%) scale(.96);
|
|
2566
2817
|
}
|
|
2567
2818
|
|
|
2568
|
-
.
|
|
2569
|
-
|
|
2819
|
+
.popup_xocxMW[data-ending-style] {
|
|
2820
|
+
opacity: 0;
|
|
2821
|
+
transition: opacity .15s var(--easing-ease-in),
|
|
2822
|
+
transform .15s var(--easing-ease-in);
|
|
2823
|
+
transform: translate(-50%, -50%) scale(.98);
|
|
2570
2824
|
}
|
|
2571
2825
|
|
|
2572
|
-
.
|
|
2573
|
-
|
|
2574
|
-
|
|
2575
|
-
|
|
2576
|
-
|
|
2577
|
-
border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
|
|
2578
|
-
transform: translateY(var(--drawer-swipe-movement-y));
|
|
2579
|
-
border-top: none;
|
|
2580
|
-
transition-property: transform;
|
|
2826
|
+
.header_xocxMW {
|
|
2827
|
+
gap: var(--space-1-5);
|
|
2828
|
+
flex-direction: column;
|
|
2829
|
+
display: flex;
|
|
2830
|
+
}
|
|
2581
2831
|
|
|
2582
|
-
|
|
2583
|
-
|
|
2584
|
-
}
|
|
2832
|
+
.icon_xocxMW {
|
|
2833
|
+
margin-bottom: var(--space-1);
|
|
2585
2834
|
}
|
|
2586
2835
|
|
|
2587
|
-
.
|
|
2588
|
-
|
|
2836
|
+
.title_xocxMW {
|
|
2837
|
+
font-family: var(--font-sans);
|
|
2838
|
+
font-size: var(--font-size-lg);
|
|
2839
|
+
font-weight: var(--font-weight-bold);
|
|
2840
|
+
color: var(--color-primary);
|
|
2841
|
+
line-height: var(--line-height-tight);
|
|
2589
2842
|
}
|
|
2590
2843
|
|
|
2591
|
-
.
|
|
2592
|
-
|
|
2593
|
-
|
|
2594
|
-
|
|
2595
|
-
|
|
2596
|
-
|
|
2597
|
-
|
|
2844
|
+
.description_xocxMW {
|
|
2845
|
+
font-family: var(--font-sans);
|
|
2846
|
+
font-size: var(--font-size-md);
|
|
2847
|
+
color: var(--color-secondary);
|
|
2848
|
+
line-height: var(--line-height-relaxed);
|
|
2849
|
+
}
|
|
2850
|
+
|
|
2851
|
+
.actions_xocxMW {
|
|
2852
|
+
justify-content: flex-end;
|
|
2853
|
+
align-items: center;
|
|
2854
|
+
gap: var(--space-2);
|
|
2855
|
+
padding-top: var(--space-1);
|
|
2856
|
+
display: flex;
|
|
2857
|
+
}
|
|
2858
|
+
}
|
|
2859
|
+
@layer components {
|
|
2860
|
+
.backdrop_VsZA5W {
|
|
2861
|
+
z-index: var(--z-overlay);
|
|
2862
|
+
transition: opacity var(--duration-slow) var(--easing-standard);
|
|
2863
|
+
background-color: #0000007a;
|
|
2864
|
+
position: fixed;
|
|
2865
|
+
inset: 0;
|
|
2866
|
+
}
|
|
2867
|
+
|
|
2868
|
+
.backdrop_VsZA5W[data-starting-style], .backdrop_VsZA5W[data-ending-style] {
|
|
2869
|
+
opacity: 0;
|
|
2870
|
+
}
|
|
2871
|
+
|
|
2872
|
+
.popup_VsZA5W {
|
|
2873
|
+
z-index: var(--z-modal);
|
|
2874
|
+
background-color: var(--color-elevated);
|
|
2875
|
+
border: var(--border-width-base) solid var(--color-line);
|
|
2876
|
+
border-radius: var(--radius-2xl);
|
|
2877
|
+
box-shadow: var(--shadow-xl);
|
|
2878
|
+
padding: var(--space-5) var(--space-6) var(--space-5);
|
|
2879
|
+
width: min(440px, calc(100vw - var(--space-8)));
|
|
2880
|
+
max-height: min(640px, calc(100vh - var(--space-8)));
|
|
2881
|
+
gap: var(--space-3);
|
|
2882
|
+
transition: opacity .2s var(--easing-ease-out),
|
|
2883
|
+
transform .2s var(--easing-spring);
|
|
2884
|
+
outline: none;
|
|
2885
|
+
flex-direction: column;
|
|
2886
|
+
display: flex;
|
|
2887
|
+
position: fixed;
|
|
2888
|
+
top: 50%;
|
|
2889
|
+
left: 50%;
|
|
2890
|
+
overflow: hidden;
|
|
2891
|
+
transform: translate(-50%, -50%);
|
|
2892
|
+
}
|
|
2893
|
+
|
|
2894
|
+
.popup_VsZA5W[data-starting-style] {
|
|
2895
|
+
opacity: 0;
|
|
2896
|
+
transform: translate(-50%, -48%) scale(.96);
|
|
2598
2897
|
}
|
|
2599
2898
|
|
|
2600
|
-
.
|
|
2601
|
-
|
|
2602
|
-
|
|
2899
|
+
.popup_VsZA5W[data-ending-style] {
|
|
2900
|
+
opacity: 0;
|
|
2901
|
+
transition: opacity .15s var(--easing-ease-in),
|
|
2902
|
+
transform .15s var(--easing-ease-in);
|
|
2903
|
+
transform: translate(-50%, -50%) scale(.98);
|
|
2603
2904
|
}
|
|
2604
2905
|
|
|
2605
|
-
.
|
|
2606
|
-
gap: var(--space-
|
|
2906
|
+
.header_VsZA5W {
|
|
2907
|
+
gap: var(--space-2);
|
|
2908
|
+
text-align: center;
|
|
2607
2909
|
flex-direction: column;
|
|
2608
|
-
height: 100%;
|
|
2609
2910
|
display: flex;
|
|
2610
2911
|
}
|
|
2611
2912
|
|
|
2612
|
-
.
|
|
2613
|
-
font-family: var(--font-
|
|
2913
|
+
.title_VsZA5W {
|
|
2914
|
+
font-family: var(--font-sans);
|
|
2614
2915
|
font-size: var(--font-size-lg);
|
|
2615
|
-
font-weight: var(--font-weight-
|
|
2916
|
+
font-weight: var(--font-weight-bold);
|
|
2616
2917
|
color: var(--color-primary);
|
|
2617
2918
|
line-height: var(--line-height-tight);
|
|
2618
2919
|
letter-spacing: var(--letter-spacing-tight);
|
|
2619
|
-
padding-right: var(--space-6);
|
|
2620
|
-
margin: 0;
|
|
2621
2920
|
}
|
|
2622
2921
|
|
|
2623
|
-
.
|
|
2624
|
-
font-family: var(--font-
|
|
2625
|
-
font-size: var(--font-size-
|
|
2922
|
+
.description_VsZA5W {
|
|
2923
|
+
font-family: var(--font-sans);
|
|
2924
|
+
font-size: var(--font-size-md);
|
|
2626
2925
|
color: var(--color-secondary);
|
|
2627
2926
|
line-height: var(--line-height-relaxed);
|
|
2628
|
-
margin: 0;
|
|
2629
2927
|
}
|
|
2630
2928
|
|
|
2631
|
-
.
|
|
2929
|
+
.close_VsZA5W {
|
|
2632
2930
|
top: var(--space-4);
|
|
2633
2931
|
right: var(--space-4);
|
|
2634
2932
|
border-radius: var(--radius-sm);
|
|
@@ -2647,82 +2945,214 @@
|
|
|
2647
2945
|
position: absolute;
|
|
2648
2946
|
}
|
|
2649
2947
|
|
|
2650
|
-
.
|
|
2948
|
+
.close_VsZA5W:hover {
|
|
2651
2949
|
background-color: var(--color-hover);
|
|
2652
2950
|
color: var(--color-primary);
|
|
2653
2951
|
}
|
|
2654
2952
|
|
|
2655
|
-
.
|
|
2953
|
+
.close_VsZA5W:focus-visible {
|
|
2656
2954
|
box-shadow: var(--shadow-focus);
|
|
2657
2955
|
}
|
|
2658
2956
|
|
|
2659
|
-
.
|
|
2957
|
+
.body_VsZA5W {
|
|
2958
|
+
font-family: var(--font-mono);
|
|
2959
|
+
font-size: var(--font-size-sm);
|
|
2960
|
+
color: var(--color-secondary);
|
|
2961
|
+
line-height: var(--line-height-relaxed);
|
|
2962
|
+
flex: 1;
|
|
2963
|
+
overflow-y: auto;
|
|
2964
|
+
}
|
|
2965
|
+
|
|
2966
|
+
.footer_VsZA5W {
|
|
2660
2967
|
justify-content: flex-end;
|
|
2661
2968
|
align-items: center;
|
|
2662
2969
|
gap: var(--space-2);
|
|
2663
|
-
padding-top: var(--space-
|
|
2664
|
-
|
|
2665
|
-
|
|
2970
|
+
padding-top: var(--space-2);
|
|
2971
|
+
display: flex;
|
|
2972
|
+
}
|
|
2973
|
+
|
|
2974
|
+
.footer-split_VsZA5W {
|
|
2975
|
+
justify-content: space-between;
|
|
2976
|
+
}
|
|
2977
|
+
|
|
2978
|
+
.footer-end_VsZA5W {
|
|
2979
|
+
align-items: center;
|
|
2980
|
+
gap: var(--space-2);
|
|
2666
2981
|
display: flex;
|
|
2667
2982
|
}
|
|
2668
2983
|
}
|
|
2669
2984
|
@layer components {
|
|
2670
|
-
.
|
|
2671
|
-
|
|
2985
|
+
.root_J4At5G {
|
|
2986
|
+
align-items: center;
|
|
2987
|
+
gap: var(--space-2);
|
|
2988
|
+
cursor: pointer;
|
|
2989
|
+
user-select: none;
|
|
2990
|
+
display: flex;
|
|
2672
2991
|
}
|
|
2673
2992
|
|
|
2674
|
-
.
|
|
2675
|
-
|
|
2676
|
-
|
|
2993
|
+
.root_J4At5G[data-disabled] {
|
|
2994
|
+
opacity: .44;
|
|
2995
|
+
cursor: not-allowed;
|
|
2996
|
+
}
|
|
2997
|
+
|
|
2998
|
+
.indicator_J4At5G {
|
|
2677
2999
|
border-radius: var(--radius-sm);
|
|
2678
|
-
|
|
2679
|
-
|
|
3000
|
+
border: var(--border-width-base) solid var(--color-line-strong);
|
|
3001
|
+
background-color: var(--color-surface-1);
|
|
3002
|
+
width: 16px;
|
|
3003
|
+
height: 16px;
|
|
3004
|
+
transition: background-color var(--duration-fast) var(--easing-standard),
|
|
3005
|
+
border-color var(--duration-fast) var(--easing-standard),
|
|
3006
|
+
box-shadow var(--duration-fast) var(--easing-standard);
|
|
3007
|
+
outline: none;
|
|
3008
|
+
flex-shrink: 0;
|
|
3009
|
+
justify-content: center;
|
|
3010
|
+
align-items: center;
|
|
3011
|
+
display: flex;
|
|
3012
|
+
position: relative;
|
|
3013
|
+
}
|
|
3014
|
+
|
|
3015
|
+
.indicator_J4At5G:focus-visible {
|
|
3016
|
+
box-shadow: var(--shadow-focus);
|
|
3017
|
+
border-color: var(--color-accent);
|
|
3018
|
+
}
|
|
3019
|
+
|
|
3020
|
+
.indicator_J4At5G:hover:not([data-disabled]) {
|
|
3021
|
+
border-color: var(--color-accent);
|
|
3022
|
+
}
|
|
3023
|
+
|
|
3024
|
+
.indicator_J4At5G[data-checked], .indicator_J4At5G[data-indeterminate] {
|
|
3025
|
+
background-color: var(--color-accent);
|
|
3026
|
+
border-color: var(--color-accent);
|
|
3027
|
+
}
|
|
3028
|
+
|
|
3029
|
+
.indicator_J4At5G[data-checked]:hover, .indicator_J4At5G[data-indeterminate]:hover {
|
|
3030
|
+
background-color: var(--color-accent-hover);
|
|
3031
|
+
border-color: var(--color-accent-hover);
|
|
3032
|
+
}
|
|
3033
|
+
|
|
3034
|
+
.icon_J4At5G {
|
|
3035
|
+
width: 10px;
|
|
3036
|
+
height: 10px;
|
|
3037
|
+
color: var(--color-on-accent);
|
|
3038
|
+
opacity: 0;
|
|
3039
|
+
transition: opacity var(--duration-fast) var(--easing-standard),
|
|
3040
|
+
transform var(--duration-fast) var(--easing-spring);
|
|
3041
|
+
transform: scale(.9);
|
|
3042
|
+
}
|
|
3043
|
+
|
|
3044
|
+
.indicator_J4At5G[data-checked] .icon_J4At5G, .indicator_J4At5G[data-indeterminate] .icon_J4At5G {
|
|
3045
|
+
opacity: 1;
|
|
3046
|
+
transform: scale(1);
|
|
3047
|
+
}
|
|
3048
|
+
|
|
3049
|
+
.label_J4At5G {
|
|
2680
3050
|
font-family: var(--font-mono);
|
|
2681
|
-
font-size: var(--font-size-
|
|
3051
|
+
font-size: var(--font-size-sm);
|
|
2682
3052
|
color: var(--color-primary);
|
|
2683
3053
|
line-height: var(--line-height-normal);
|
|
2684
|
-
|
|
2685
|
-
|
|
2686
|
-
|
|
2687
|
-
|
|
2688
|
-
|
|
3054
|
+
}
|
|
3055
|
+
}
|
|
3056
|
+
@layer components {
|
|
3057
|
+
.wrapper_ZbafIa {
|
|
3058
|
+
gap: var(--space-1);
|
|
3059
|
+
flex-direction: column;
|
|
3060
|
+
width: 100%;
|
|
3061
|
+
display: flex;
|
|
2689
3062
|
}
|
|
2690
3063
|
|
|
2691
|
-
.
|
|
2692
|
-
|
|
3064
|
+
.inputWrapper_ZbafIa {
|
|
3065
|
+
align-items: center;
|
|
3066
|
+
display: flex;
|
|
3067
|
+
position: relative;
|
|
2693
3068
|
}
|
|
2694
3069
|
|
|
2695
|
-
.
|
|
2696
|
-
|
|
2697
|
-
|
|
3070
|
+
.root_ZbafIa {
|
|
3071
|
+
width: 100%;
|
|
3072
|
+
font-family: var(--font-mono);
|
|
3073
|
+
font-size: var(--font-size-sm);
|
|
3074
|
+
color: var(--color-primary);
|
|
3075
|
+
background-color: var(--color-surface-1);
|
|
3076
|
+
border: var(--border-width-base) solid var(--color-line);
|
|
3077
|
+
border-radius: var(--radius-md);
|
|
3078
|
+
transition: border-color var(--duration-fast) var(--easing-standard),
|
|
3079
|
+
box-shadow var(--duration-fast) var(--easing-standard),
|
|
3080
|
+
background-color var(--duration-fast) var(--easing-standard);
|
|
3081
|
+
-webkit-appearance: none;
|
|
3082
|
+
appearance: none;
|
|
3083
|
+
outline: none;
|
|
2698
3084
|
}
|
|
2699
3085
|
|
|
2700
|
-
.
|
|
2701
|
-
|
|
2702
|
-
|
|
2703
|
-
transform 75ms var(--easing-ease-in);
|
|
2704
|
-
transform: scale(.95);
|
|
3086
|
+
.root_ZbafIa::placeholder {
|
|
3087
|
+
color: var(--color-tertiary);
|
|
3088
|
+
font-family: var(--font-mono);
|
|
2705
3089
|
}
|
|
2706
3090
|
|
|
2707
|
-
|
|
2708
|
-
|
|
2709
|
-
|
|
2710
|
-
}
|
|
3091
|
+
.root_ZbafIa:hover:not(:disabled):not([data-invalid]) {
|
|
3092
|
+
border-color: var(--color-line-strong);
|
|
3093
|
+
}
|
|
2711
3094
|
|
|
2712
|
-
|
|
2713
|
-
|
|
2714
|
-
|
|
3095
|
+
.root_ZbafIa:focus:not(:disabled) {
|
|
3096
|
+
border-color: var(--color-accent);
|
|
3097
|
+
box-shadow: var(--shadow-focus);
|
|
3098
|
+
}
|
|
2715
3099
|
|
|
2716
|
-
|
|
2717
|
-
|
|
2718
|
-
|
|
3100
|
+
.root_ZbafIa:disabled {
|
|
3101
|
+
opacity: .44;
|
|
3102
|
+
cursor: not-allowed;
|
|
3103
|
+
background-color: var(--color-surface-2);
|
|
2719
3104
|
}
|
|
2720
3105
|
|
|
2721
|
-
.
|
|
2722
|
-
|
|
2723
|
-
|
|
2724
|
-
|
|
2725
|
-
|
|
2726
|
-
|
|
3106
|
+
.root_ZbafIa[data-invalid], .root_ZbafIa[aria-invalid="true"] {
|
|
3107
|
+
border-color: var(--color-error-solid);
|
|
3108
|
+
}
|
|
3109
|
+
|
|
3110
|
+
.root_ZbafIa[data-invalid]:focus, .root_ZbafIa[aria-invalid="true"]:focus {
|
|
3111
|
+
box-shadow: 0 0 0 3px #dc262640;
|
|
3112
|
+
}
|
|
3113
|
+
|
|
3114
|
+
.size-sm_ZbafIa {
|
|
3115
|
+
height: 26px;
|
|
3116
|
+
padding-inline: var(--space-2);
|
|
3117
|
+
font-size: var(--font-size-xs);
|
|
3118
|
+
}
|
|
3119
|
+
|
|
3120
|
+
.size-md_ZbafIa {
|
|
3121
|
+
height: 30px;
|
|
3122
|
+
padding-inline: var(--space-2-5);
|
|
3123
|
+
font-size: var(--font-size-sm);
|
|
3124
|
+
}
|
|
3125
|
+
|
|
3126
|
+
.size-lg_ZbafIa {
|
|
3127
|
+
height: 36px;
|
|
3128
|
+
padding-inline: var(--space-3);
|
|
3129
|
+
font-size: var(--font-size-md);
|
|
3130
|
+
border-radius: var(--radius-lg);
|
|
3131
|
+
}
|
|
3132
|
+
|
|
3133
|
+
.has-left-icon_ZbafIa {
|
|
3134
|
+
padding-left: var(--space-8);
|
|
3135
|
+
}
|
|
3136
|
+
|
|
3137
|
+
.has-right-icon_ZbafIa {
|
|
3138
|
+
padding-right: var(--space-8);
|
|
3139
|
+
}
|
|
3140
|
+
|
|
3141
|
+
.adornment_ZbafIa {
|
|
3142
|
+
color: var(--color-tertiary);
|
|
3143
|
+
pointer-events: none;
|
|
3144
|
+
width: var(--space-8);
|
|
3145
|
+
justify-content: center;
|
|
3146
|
+
align-items: center;
|
|
3147
|
+
display: flex;
|
|
3148
|
+
position: absolute;
|
|
3149
|
+
}
|
|
3150
|
+
|
|
3151
|
+
.adornment-left_ZbafIa {
|
|
3152
|
+
left: 0;
|
|
3153
|
+
}
|
|
3154
|
+
|
|
3155
|
+
.adornment-right_ZbafIa {
|
|
3156
|
+
right: 0;
|
|
2727
3157
|
}
|
|
2728
3158
|
}
|