@dialpad/dialtone 8.13.6 → 8.14.0
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 +24 -5
- package/lib/build/less/components/banner.less +3 -66
- package/lib/build/less/components/emoji-picker.less +1 -1
- package/lib/build/less/components/notice.less +13 -13
- package/lib/build/less/components/selects.less +6 -0
- package/lib/build/less/components/toast.less +4 -76
- package/lib/build/less/dialtone.less +2 -2
- package/lib/dist/css/dialtone.css +1520 -1609
- package/lib/dist/css/dialtone.min.css +1 -1
- package/package.json +3 -3
|
@@ -611,99 +611,6 @@ template {
|
|
|
611
611
|
.d-badge__icon-right {
|
|
612
612
|
display: flex;
|
|
613
613
|
}
|
|
614
|
-
.d-banner {
|
|
615
|
-
--banner-color-background: var(--dt-color-surface-secondary);
|
|
616
|
-
--banner-color-text: var(--dt-color-foreground-primary);
|
|
617
|
-
--notice-color-icon: var(--toast-color-text);
|
|
618
|
-
--banner-color-border: var(--dt-color-border-subtle);
|
|
619
|
-
--banner-font-size: var(--dt-font-size-200);
|
|
620
|
-
--banner-line-height: var(--dt-font-line-height-200);
|
|
621
|
-
--banner-dialog-padding-y: var(--dt-space-400);
|
|
622
|
-
--banner-dialog-padding-x: var(--dt-space-500);
|
|
623
|
-
position: fixed;
|
|
624
|
-
top: 0;
|
|
625
|
-
right: 0;
|
|
626
|
-
left: 0;
|
|
627
|
-
z-index: var(--zi-navigation-fixed);
|
|
628
|
-
display: flex;
|
|
629
|
-
box-sizing: border-box;
|
|
630
|
-
width: 100%;
|
|
631
|
-
min-height: var(--dt-size-650);
|
|
632
|
-
color: var(--banner-color-text);
|
|
633
|
-
font-size: var(--banner-font-size);
|
|
634
|
-
line-height: var(--banner-line-height);
|
|
635
|
-
background-color: var(--banner-color-background);
|
|
636
|
-
border-bottom: 1px solid var(--banner-color-border);
|
|
637
|
-
border-radius: 0;
|
|
638
|
-
box-shadow: none;
|
|
639
|
-
}
|
|
640
|
-
.d-banner[aria-hidden='true'] {
|
|
641
|
-
--topbar-height: var(--dt-size-650);
|
|
642
|
-
visibility: hidden;
|
|
643
|
-
opacity: 0;
|
|
644
|
-
}
|
|
645
|
-
.d-banner[aria-hidden='false'] {
|
|
646
|
-
visibility: visible;
|
|
647
|
-
opacity: 1;
|
|
648
|
-
}
|
|
649
|
-
.d-banner.d-banner--pinned {
|
|
650
|
-
z-index: calc(var(--zi-navigation-fixed) + 1);
|
|
651
|
-
-webkit-transform: translate3d(0, 0, 0);
|
|
652
|
-
transform: translate3d(0, 0, 0);
|
|
653
|
-
}
|
|
654
|
-
.d-banner--transform {
|
|
655
|
-
-webkit-transform: translate3d(0, var(--topbar-height), 0);
|
|
656
|
-
transform: translate3d(0, var(--topbar-height), 0);
|
|
657
|
-
}
|
|
658
|
-
.d-banner__dialog {
|
|
659
|
-
position: relative;
|
|
660
|
-
display: flex;
|
|
661
|
-
align-items: center;
|
|
662
|
-
width: 100%;
|
|
663
|
-
max-width: 128rem;
|
|
664
|
-
min-height: 100%;
|
|
665
|
-
margin: 0 auto;
|
|
666
|
-
padding: var(--banner-dialog-padding-y) var(--banner-dialog-padding-x);
|
|
667
|
-
}
|
|
668
|
-
.d-banner__dialog .d-notice__content {
|
|
669
|
-
flex-direction: row;
|
|
670
|
-
gap: var(--dt-space-300);
|
|
671
|
-
align-items: baseline;
|
|
672
|
-
}
|
|
673
|
-
.d-banner.d-banner--important {
|
|
674
|
-
--banner-color-background: var(--dt-color-surface-strong);
|
|
675
|
-
--banner-color-text: var(--dt-color-foreground-primary-inverted);
|
|
676
|
-
--notice-color-icon: var(--dt-color-foreground-primary-inverted);
|
|
677
|
-
--banner-color-border: transparent;
|
|
678
|
-
}
|
|
679
|
-
.d-banner--error {
|
|
680
|
-
--banner-color-background: var(--dt-color-surface-critical);
|
|
681
|
-
}
|
|
682
|
-
.d-banner--error.d-banner--important {
|
|
683
|
-
--banner-color-background: var(--dt-color-surface-critical-strong);
|
|
684
|
-
--banner-color-text: var(--dt-color-foreground-primary-inverted);
|
|
685
|
-
}
|
|
686
|
-
.d-banner--info {
|
|
687
|
-
--banner-color-background: var(--dt-color-surface-info);
|
|
688
|
-
}
|
|
689
|
-
.d-banner--info.d-banner--important {
|
|
690
|
-
--banner-color-background: var(--dt-color-surface-info-strong);
|
|
691
|
-
--banner-color-text: var(--dt-color-foreground-primary-inverted);
|
|
692
|
-
}
|
|
693
|
-
.d-banner--success {
|
|
694
|
-
--banner-color-background: var(--dt-color-surface-success);
|
|
695
|
-
}
|
|
696
|
-
.d-banner--success.d-banner--important {
|
|
697
|
-
--banner-color-background: var(--dt-color-surface-success-strong);
|
|
698
|
-
--banner-color-text: var(--dt-color-foreground-primary-inverted);
|
|
699
|
-
}
|
|
700
|
-
.d-banner--warning {
|
|
701
|
-
--banner-color-background: var(--dt-color-surface-warning);
|
|
702
|
-
}
|
|
703
|
-
.d-banner--warning.d-banner--important {
|
|
704
|
-
--banner-color-background: var(--dt-color-gold-200);
|
|
705
|
-
--banner-color-text: var(--dt-color-foreground-primary);
|
|
706
|
-
}
|
|
707
614
|
.d-breadcrumbs {
|
|
708
615
|
--breadcrumbs-font-size: var(--dt-font-size-200);
|
|
709
616
|
--breadcrumbs-line-height: var(--dt-font-line-height-300);
|
|
@@ -1646,7 +1553,7 @@ template {
|
|
|
1646
1553
|
top: 0;
|
|
1647
1554
|
width: 100%;
|
|
1648
1555
|
padding-top: var(--dt-space-525);
|
|
1649
|
-
background: var(--dt-color-surface-
|
|
1556
|
+
background: var(--dt-color-surface-primary);
|
|
1650
1557
|
}
|
|
1651
1558
|
.d-emoji-picker__list {
|
|
1652
1559
|
position: relative;
|
|
@@ -2530,120 +2437,9 @@ legend .d-label {
|
|
|
2530
2437
|
transition: none !important;
|
|
2531
2438
|
}
|
|
2532
2439
|
}
|
|
2533
|
-
.d-
|
|
2534
|
-
|
|
2535
|
-
top: var(--dt-space-600);
|
|
2536
|
-
left: 50%;
|
|
2537
|
-
display: flex;
|
|
2538
|
-
flex-direction: column;
|
|
2539
|
-
gap: var(--dt-space-500);
|
|
2540
|
-
-webkit-transform: translateX(-50%);
|
|
2541
|
-
transform: translateX(-50%);
|
|
2542
|
-
}
|
|
2440
|
+
.d-notice,
|
|
2441
|
+
.d-banner,
|
|
2543
2442
|
.d-toast {
|
|
2544
|
-
--toast-color-background: var(--dt-color-surface-secondary);
|
|
2545
|
-
--toast-color-text: var(--dt-color-foreground-primary);
|
|
2546
|
-
--notice-color-icon: var(--toast-color-text);
|
|
2547
|
-
--toast-color-shadow: hsla(var(--dt-color-black-900-hsl) / 15%);
|
|
2548
|
-
--toast-padding: var(--dt-space-500);
|
|
2549
|
-
--toast-border-radius: var(--dt-size-400);
|
|
2550
|
-
--toast-box-shadow: 0 0 0 var(--dt-size-100) var(--toast-color-shadow) inset, var(--dt-shadow-medium);
|
|
2551
|
-
--toast-font-size: var(--dt-font-size-200);
|
|
2552
|
-
--toast-line-height: var(--dt-font-line-height-300);
|
|
2553
|
-
z-index: var(--zi-notification);
|
|
2554
|
-
box-sizing: border-box;
|
|
2555
|
-
width: 100%;
|
|
2556
|
-
max-width: var(--dt-size-1020);
|
|
2557
|
-
padding: var(--toast-padding);
|
|
2558
|
-
color: var(--toast-color-text);
|
|
2559
|
-
font-size: var(--toast-font-size);
|
|
2560
|
-
line-height: var(--toast-line-height);
|
|
2561
|
-
word-break: normal;
|
|
2562
|
-
background-color: var(--toast-color-background);
|
|
2563
|
-
border-radius: var(--toast-border-radius);
|
|
2564
|
-
box-shadow: var(--toast-box-shadow);
|
|
2565
|
-
}
|
|
2566
|
-
.d-toast > a {
|
|
2567
|
-
word-break: break-all;
|
|
2568
|
-
}
|
|
2569
|
-
.d-toast[aria-hidden='true'] {
|
|
2570
|
-
visibility: hidden;
|
|
2571
|
-
opacity: 0;
|
|
2572
|
-
}
|
|
2573
|
-
.d-toast[aria-hidden='false'] {
|
|
2574
|
-
visibility: visible;
|
|
2575
|
-
opacity: 1;
|
|
2576
|
-
}
|
|
2577
|
-
.d-toast__dialog {
|
|
2578
|
-
position: relative;
|
|
2579
|
-
display: flex;
|
|
2580
|
-
align-items: center;
|
|
2581
|
-
}
|
|
2582
|
-
.d-toast__dialog .d-notice__content {
|
|
2583
|
-
margin-right: var(--dt-space-500);
|
|
2584
|
-
}
|
|
2585
|
-
.d-toast__dialog .d-notice__actions {
|
|
2586
|
-
margin-left: var(--dt-space-600);
|
|
2587
|
-
}
|
|
2588
|
-
.d-toast.d-toast--important {
|
|
2589
|
-
--toast-color-background: var(--dt-color-surface-strong);
|
|
2590
|
-
--toast-color-text: var(--dt-color-foreground-primary-inverted);
|
|
2591
|
-
--notice-color-icon: var(--toast-color-text);
|
|
2592
|
-
}
|
|
2593
|
-
.d-toast--error {
|
|
2594
|
-
--toast-color-background: var(--dt-color-surface-critical);
|
|
2595
|
-
}
|
|
2596
|
-
.d-toast--error.d-toast--important {
|
|
2597
|
-
--toast-color-background: var(--dt-color-red-400);
|
|
2598
|
-
--toast-color-text: var(--dt-color-foreground-primary-inverted);
|
|
2599
|
-
}
|
|
2600
|
-
.d-toast--info {
|
|
2601
|
-
--toast-color-background: var(--dt-color-surface-info);
|
|
2602
|
-
}
|
|
2603
|
-
.d-toast--info.d-toast--important {
|
|
2604
|
-
--toast-color-background: var(--dt-color-surface-info-strong);
|
|
2605
|
-
--toast-color-text: var(--dt-color-foreground-primary-inverted);
|
|
2606
|
-
}
|
|
2607
|
-
.d-toast--success {
|
|
2608
|
-
--toast-color-background: var(--dt-color-surface-success);
|
|
2609
|
-
}
|
|
2610
|
-
.d-toast--success.d-toast--important {
|
|
2611
|
-
--toast-color-background: var(--dt-color-surface-success-strong);
|
|
2612
|
-
--toast-color-text: var(--dt-color-foreground-primary-inverted);
|
|
2613
|
-
}
|
|
2614
|
-
.d-toast--warning {
|
|
2615
|
-
--toast-color-background: var(--dt-color-surface-warning);
|
|
2616
|
-
}
|
|
2617
|
-
.d-toast--warning.d-toast--important {
|
|
2618
|
-
--toast-color-background: var(--dt-color-surface-warning-strong);
|
|
2619
|
-
--toast-color-text: var(--dt-color-foreground-primary);
|
|
2620
|
-
}
|
|
2621
|
-
.d-toast--chat .d-notice__icon,
|
|
2622
|
-
.d-toast--chat .d-toast__meta {
|
|
2623
|
-
color: var(--dt-color-black-500);
|
|
2624
|
-
}
|
|
2625
|
-
.d-toast--chat .d-toast__meta {
|
|
2626
|
-
font-size: var(--dt-font-size-100);
|
|
2627
|
-
}
|
|
2628
|
-
.d-toast--chat.d-toast--important .d-notice__icon,
|
|
2629
|
-
.d-toast--chat.d-toast--important .d-toast__meta {
|
|
2630
|
-
color: var(--dt-color-foreground-secondary-inverted);
|
|
2631
|
-
}
|
|
2632
|
-
.d-toast--organizer,
|
|
2633
|
-
.d-toast--viewing {
|
|
2634
|
-
--toast-border-radius: var(--dt-size-radius-200);
|
|
2635
|
-
border-top: var(--dt-size-300) solid var(--dt-color-magenta-300);
|
|
2636
|
-
}
|
|
2637
|
-
.d-toast--organizer .d-notice__icon,
|
|
2638
|
-
.d-toast--viewing .d-notice__icon {
|
|
2639
|
-
color: var(--dt-color-magenta-300);
|
|
2640
|
-
}
|
|
2641
|
-
.d-toast--chat,
|
|
2642
|
-
.d-toast--organizer,
|
|
2643
|
-
.d-toast--viewing {
|
|
2644
|
-
--toast-color-background: var(--dt-color-surface-secondary);
|
|
2645
|
-
}
|
|
2646
|
-
.d-notice {
|
|
2647
2443
|
--notice-color-background: var(--dt-color-surface-secondary);
|
|
2648
2444
|
--notice-color-text: var(--dt-color-foreground-primary);
|
|
2649
2445
|
--notice-color-icon: var(--notice-color-text);
|
|
@@ -2666,11 +2462,6 @@ legend .d-label {
|
|
|
2666
2462
|
border-radius: var(--notice-border-radius);
|
|
2667
2463
|
box-shadow: var(--notice-box-shadow);
|
|
2668
2464
|
}
|
|
2669
|
-
.d-toast .d-notice {
|
|
2670
|
-
max-width: var(--dt-size-975);
|
|
2671
|
-
box-shadow: var(--dt-shadow-small);
|
|
2672
|
-
pointer-events: all;
|
|
2673
|
-
}
|
|
2674
2465
|
.d-notice__content {
|
|
2675
2466
|
display: flex;
|
|
2676
2467
|
flex: 1 auto;
|
|
@@ -2683,6 +2474,9 @@ legend .d-label {
|
|
|
2683
2474
|
gap: var(--dt-space-400);
|
|
2684
2475
|
align-items: center;
|
|
2685
2476
|
}
|
|
2477
|
+
.d-notice__actions button {
|
|
2478
|
+
color: var(--notice-color-text);
|
|
2479
|
+
}
|
|
2686
2480
|
.d-notice__icon {
|
|
2687
2481
|
display: flex;
|
|
2688
2482
|
flex: 0 auto;
|
|
@@ -2699,11 +2493,13 @@ legend .d-label {
|
|
|
2699
2493
|
.d-notice__title:not([hidden]) + .d-notice__message {
|
|
2700
2494
|
font-size: var(--dt-font-size-100);
|
|
2701
2495
|
}
|
|
2702
|
-
.d-notice.d-notice--important
|
|
2496
|
+
.d-notice.d-notice--important,
|
|
2497
|
+
.d-banner.d-banner--important,
|
|
2498
|
+
.d-toast.d-toast--important {
|
|
2703
2499
|
--notice-color-background: var(--dt-color-surface-strong);
|
|
2704
2500
|
--notice-color-text: var(--dt-color-foreground-primary-inverted);
|
|
2501
|
+
--notice-color-icon: var(--notice-color-text);
|
|
2705
2502
|
--notice-color-shadow: transparent;
|
|
2706
|
-
--notice-color-icon: var(--dt-color-foreground-primary-inverted);
|
|
2707
2503
|
}
|
|
2708
2504
|
.d-notice--error,
|
|
2709
2505
|
.d-banner--error,
|
|
@@ -2721,7 +2517,6 @@ legend .d-label {
|
|
|
2721
2517
|
.d-banner--error.d-toast--important,
|
|
2722
2518
|
.d-toast--error.d-toast--important {
|
|
2723
2519
|
--notice-color-background: var(--dt-color-surface-critical-strong);
|
|
2724
|
-
--notice-color-text: var(--dt-color-foreground-primary-inverted);
|
|
2725
2520
|
}
|
|
2726
2521
|
.d-notice--info,
|
|
2727
2522
|
.d-banner--info,
|
|
@@ -2774,88 +2569,200 @@ legend .d-label {
|
|
|
2774
2569
|
.d-notice--warning.d-toast--important,
|
|
2775
2570
|
.d-banner--warning.d-toast--important,
|
|
2776
2571
|
.d-toast--warning.d-toast--important {
|
|
2777
|
-
--notice-color-background: var(--dt-color-
|
|
2778
|
-
--notice-color-text: var(--dt-color-
|
|
2779
|
-
--notice-color-icon: var(--notice-color-text);
|
|
2572
|
+
--notice-color-background: var(--dt-color-surface-warning-strong);
|
|
2573
|
+
--notice-color-text: var(--dt-color-neutral-black);
|
|
2780
2574
|
}
|
|
2781
|
-
.d-
|
|
2782
|
-
|
|
2783
|
-
|
|
2784
|
-
|
|
2785
|
-
|
|
2786
|
-
|
|
2787
|
-
|
|
2788
|
-
|
|
2789
|
-
|
|
2790
|
-
overflow: auto;
|
|
2791
|
-
background-color: var(--popover-color-background);
|
|
2792
|
-
background-clip: padding-box;
|
|
2793
|
-
border: var(--popover-border-width) solid var(--popover-color-border);
|
|
2794
|
-
border-radius: var(--popover-border-radius);
|
|
2795
|
-
box-shadow: var(--popover-shadow);
|
|
2575
|
+
.d-toast-wrapper {
|
|
2576
|
+
position: absolute;
|
|
2577
|
+
top: var(--dt-space-600);
|
|
2578
|
+
left: 50%;
|
|
2579
|
+
display: flex;
|
|
2580
|
+
flex-direction: column;
|
|
2581
|
+
gap: var(--dt-space-500);
|
|
2582
|
+
-webkit-transform: translateX(-50%);
|
|
2583
|
+
transform: translateX(-50%);
|
|
2796
2584
|
}
|
|
2797
|
-
.d-
|
|
2798
|
-
|
|
2799
|
-
|
|
2800
|
-
|
|
2801
|
-
|
|
2585
|
+
.d-toast {
|
|
2586
|
+
--toast-color-shadow: hsla(var(--dt-color-black-900-hsl) / 0.15);
|
|
2587
|
+
--toast-box-shadow: 0 0 0 var(--dt-size-100) var(--toast-color-shadow) inset, var(--dt-shadow-medium);
|
|
2588
|
+
z-index: var(--zi-notification);
|
|
2589
|
+
display: block;
|
|
2590
|
+
max-width: var(--dt-size-975);
|
|
2591
|
+
word-break: normal;
|
|
2592
|
+
box-shadow: var(--toast-box-shadow);
|
|
2593
|
+
pointer-events: all;
|
|
2802
2594
|
}
|
|
2803
|
-
.d-
|
|
2804
|
-
|
|
2595
|
+
.d-toast > a {
|
|
2596
|
+
word-break: break-all;
|
|
2805
2597
|
}
|
|
2806
|
-
.d-
|
|
2807
|
-
|
|
2808
|
-
|
|
2598
|
+
.d-toast[aria-hidden='true'] {
|
|
2599
|
+
visibility: hidden;
|
|
2600
|
+
opacity: 0;
|
|
2809
2601
|
}
|
|
2810
|
-
.d-
|
|
2811
|
-
|
|
2602
|
+
.d-toast[aria-hidden='false'] {
|
|
2603
|
+
visibility: visible;
|
|
2604
|
+
opacity: 1;
|
|
2605
|
+
}
|
|
2606
|
+
.d-toast__dialog {
|
|
2607
|
+
position: relative;
|
|
2812
2608
|
display: flex;
|
|
2813
2609
|
align-items: center;
|
|
2814
|
-
justify-content: flex-end;
|
|
2815
|
-
width: 100%;
|
|
2816
|
-
min-height: var(--dt-size-650);
|
|
2817
|
-
padding-top: var(--dt-space-350);
|
|
2818
|
-
padding-bottom: var(--dt-space-350);
|
|
2819
|
-
overflow: auto;
|
|
2820
|
-
font-weight: var(--dt-font-weight-semi-bold);
|
|
2821
|
-
font-size: var(--dt-font-size-200);
|
|
2822
2610
|
}
|
|
2823
|
-
.d-
|
|
2824
|
-
|
|
2825
|
-
border-bottom: var(--popover-border-width) solid var(--popover-color-border);
|
|
2611
|
+
.d-toast__dialog .d-notice__actions {
|
|
2612
|
+
margin-left: var(--dt-space-600);
|
|
2826
2613
|
}
|
|
2827
|
-
.d-
|
|
2828
|
-
|
|
2829
|
-
|
|
2614
|
+
.d-toast--chat .d-notice__icon,
|
|
2615
|
+
.d-toast--chat .d-toast__meta {
|
|
2616
|
+
color: var(--dt-color-black-500);
|
|
2830
2617
|
}
|
|
2831
|
-
.d-
|
|
2832
|
-
|
|
2833
|
-
--check-radio-color-border: var(--dt-checkbox-color-border-unchecked);
|
|
2834
|
-
--check-radio-color-border-checked: var(--dt-checkbox-color-border-checked);
|
|
2835
|
-
--check-radio-color-border-disabled: var(--dt-inputs-color-border-disabled);
|
|
2836
|
-
--check-radio-color-background: var(--dt-inputs-color-background-default);
|
|
2837
|
-
--check-radio-color-background-checked: var(--dt-checkbox-color-background-checked);
|
|
2838
|
-
--check-radio-color-background-disabled: var(--dt-inputs-color-background-disabled);
|
|
2839
|
-
--check-radio-border-width: calc(var(--dt-size-100) + var(--dt-size-50));
|
|
2840
|
-
flex: 0 auto;
|
|
2841
|
-
align-self: flex-start;
|
|
2842
|
-
transition-timing-function: var(--ttf-out-quint);
|
|
2843
|
-
transition-duration: var(--td200);
|
|
2844
|
-
transition-property: box-shadow;
|
|
2618
|
+
.d-toast--chat .d-toast__meta {
|
|
2619
|
+
font-size: var(--dt-font-size-100);
|
|
2845
2620
|
}
|
|
2846
|
-
|
|
2847
|
-
|
|
2848
|
-
|
|
2849
|
-
|
|
2850
|
-
|
|
2851
|
-
|
|
2852
|
-
|
|
2853
|
-
|
|
2854
|
-
|
|
2855
|
-
|
|
2856
|
-
|
|
2857
|
-
|
|
2858
|
-
|
|
2621
|
+
.d-toast--chat.d-toast--important .d-notice__icon,
|
|
2622
|
+
.d-toast--chat.d-toast--important .d-toast__meta {
|
|
2623
|
+
color: var(--dt-color-foreground-secondary-inverted);
|
|
2624
|
+
}
|
|
2625
|
+
.d-toast--organizer,
|
|
2626
|
+
.d-toast--viewing {
|
|
2627
|
+
--toast-border-radius: var(--dt-size-radius-200);
|
|
2628
|
+
border-top: var(--dt-size-300) solid var(--dt-color-magenta-300);
|
|
2629
|
+
}
|
|
2630
|
+
.d-toast--organizer .d-notice__icon,
|
|
2631
|
+
.d-toast--viewing .d-notice__icon {
|
|
2632
|
+
color: var(--dt-color-magenta-300);
|
|
2633
|
+
}
|
|
2634
|
+
.d-toast--chat,
|
|
2635
|
+
.d-toast--organizer,
|
|
2636
|
+
.d-toast--viewing {
|
|
2637
|
+
--toast-color-background: var(--dt-color-surface-secondary);
|
|
2638
|
+
}
|
|
2639
|
+
.d-banner {
|
|
2640
|
+
--banner-color-border: var(--dt-color-border-subtle);
|
|
2641
|
+
--banner-line-height: var(--dt-font-line-height-200);
|
|
2642
|
+
--banner-dialog-padding-y: var(--dt-space-400);
|
|
2643
|
+
--banner-dialog-padding-x: var(--dt-space-500);
|
|
2644
|
+
position: fixed;
|
|
2645
|
+
top: 0;
|
|
2646
|
+
right: 0;
|
|
2647
|
+
left: 0;
|
|
2648
|
+
z-index: var(--zi-navigation-fixed);
|
|
2649
|
+
max-width: 100%;
|
|
2650
|
+
min-height: var(--dt-size-650);
|
|
2651
|
+
padding: 0;
|
|
2652
|
+
line-height: var(--banner-line-height);
|
|
2653
|
+
border-bottom: 1px solid var(--banner-color-border);
|
|
2654
|
+
border-radius: 0;
|
|
2655
|
+
box-shadow: none;
|
|
2656
|
+
}
|
|
2657
|
+
.d-banner[aria-hidden='true'] {
|
|
2658
|
+
visibility: hidden;
|
|
2659
|
+
opacity: 0;
|
|
2660
|
+
}
|
|
2661
|
+
.d-banner[aria-hidden='false'] {
|
|
2662
|
+
visibility: visible;
|
|
2663
|
+
opacity: 1;
|
|
2664
|
+
}
|
|
2665
|
+
.d-banner--pinned {
|
|
2666
|
+
z-index: calc(var(--zi-navigation-fixed) + 1);
|
|
2667
|
+
-webkit-transform: translate3d(0, 0, 0);
|
|
2668
|
+
transform: translate3d(0, 0, 0);
|
|
2669
|
+
}
|
|
2670
|
+
.d-banner__dialog {
|
|
2671
|
+
position: relative;
|
|
2672
|
+
display: flex;
|
|
2673
|
+
align-items: center;
|
|
2674
|
+
width: 100%;
|
|
2675
|
+
max-width: 128rem;
|
|
2676
|
+
min-height: 100%;
|
|
2677
|
+
margin: 0 auto;
|
|
2678
|
+
padding: var(--banner-dialog-padding-y) var(--banner-dialog-padding-x);
|
|
2679
|
+
}
|
|
2680
|
+
.d-banner__dialog .d-notice__content {
|
|
2681
|
+
flex-direction: row;
|
|
2682
|
+
gap: var(--dt-space-300);
|
|
2683
|
+
align-items: baseline;
|
|
2684
|
+
}
|
|
2685
|
+
.d-banner.d-banner--important {
|
|
2686
|
+
--banner-color-border: transparent;
|
|
2687
|
+
}
|
|
2688
|
+
.d-popover__dialog {
|
|
2689
|
+
--popover-color-background: var(--dt-color-surface-secondary);
|
|
2690
|
+
--popover-border-width: var(--dt-size-100);
|
|
2691
|
+
--popover-border-radius: var(--dt-size-400);
|
|
2692
|
+
--popover-color-border: var(--dt-color-border-subtle);
|
|
2693
|
+
--popover-shadow: var(--dt-shadow-card);
|
|
2694
|
+
display: grid;
|
|
2695
|
+
grid-template-rows: -webkit-min-content 1fr -webkit-min-content;
|
|
2696
|
+
grid-template-rows: min-content 1fr min-content;
|
|
2697
|
+
overflow: auto;
|
|
2698
|
+
background-color: var(--popover-color-background);
|
|
2699
|
+
background-clip: padding-box;
|
|
2700
|
+
border: var(--popover-border-width) solid var(--popover-color-border);
|
|
2701
|
+
border-radius: var(--popover-border-radius);
|
|
2702
|
+
box-shadow: var(--popover-shadow);
|
|
2703
|
+
}
|
|
2704
|
+
.d-popover__dialog,
|
|
2705
|
+
.d-popover__dialog *,
|
|
2706
|
+
.d-popover__dialog *::before,
|
|
2707
|
+
.d-popover__dialog *::after {
|
|
2708
|
+
box-sizing: border-box;
|
|
2709
|
+
}
|
|
2710
|
+
.d-popover__dialog--modal {
|
|
2711
|
+
z-index: var(--zi-modal-element);
|
|
2712
|
+
}
|
|
2713
|
+
.d-popover__content {
|
|
2714
|
+
grid-row: 2;
|
|
2715
|
+
overflow: auto;
|
|
2716
|
+
}
|
|
2717
|
+
.d-popover__header,
|
|
2718
|
+
.d-popover__footer {
|
|
2719
|
+
display: flex;
|
|
2720
|
+
align-items: center;
|
|
2721
|
+
justify-content: flex-end;
|
|
2722
|
+
width: 100%;
|
|
2723
|
+
min-height: var(--dt-size-650);
|
|
2724
|
+
padding-top: var(--dt-space-350);
|
|
2725
|
+
padding-bottom: var(--dt-space-350);
|
|
2726
|
+
overflow: auto;
|
|
2727
|
+
font-weight: var(--dt-font-weight-semi-bold);
|
|
2728
|
+
font-size: var(--dt-font-size-200);
|
|
2729
|
+
}
|
|
2730
|
+
.d-popover__header {
|
|
2731
|
+
grid-row: 1;
|
|
2732
|
+
border-bottom: var(--popover-border-width) solid var(--popover-color-border);
|
|
2733
|
+
}
|
|
2734
|
+
.d-popover__footer {
|
|
2735
|
+
grid-row: 3;
|
|
2736
|
+
border-top: var(--popover-border-width) solid var(--popover-color-border);
|
|
2737
|
+
}
|
|
2738
|
+
.d-checkbox,
|
|
2739
|
+
.d-radio {
|
|
2740
|
+
--check-radio-color-border: var(--dt-checkbox-color-border-unchecked);
|
|
2741
|
+
--check-radio-color-border-checked: var(--dt-checkbox-color-border-checked);
|
|
2742
|
+
--check-radio-color-border-disabled: var(--dt-inputs-color-border-disabled);
|
|
2743
|
+
--check-radio-color-background: var(--dt-inputs-color-background-default);
|
|
2744
|
+
--check-radio-color-background-checked: var(--dt-checkbox-color-background-checked);
|
|
2745
|
+
--check-radio-color-background-disabled: var(--dt-inputs-color-background-disabled);
|
|
2746
|
+
--check-radio-border-width: calc(var(--dt-size-100) + var(--dt-size-50));
|
|
2747
|
+
flex: 0 auto;
|
|
2748
|
+
align-self: flex-start;
|
|
2749
|
+
transition-timing-function: var(--ttf-out-quint);
|
|
2750
|
+
transition-duration: var(--td200);
|
|
2751
|
+
transition-property: box-shadow;
|
|
2752
|
+
}
|
|
2753
|
+
@supports ((-webkit-appearance: none) or (appearance: none)) {
|
|
2754
|
+
.d-checkbox,
|
|
2755
|
+
.d-radio {
|
|
2756
|
+
width: var(--dt-size-500);
|
|
2757
|
+
height: var(--dt-size-500);
|
|
2758
|
+
margin: 0;
|
|
2759
|
+
font-size: inherit;
|
|
2760
|
+
background-color: var(--check-radio-color-background);
|
|
2761
|
+
border: var(--check-radio-border-width) solid var(--check-radio-color-border);
|
|
2762
|
+
outline: 0;
|
|
2763
|
+
box-shadow: none;
|
|
2764
|
+
cursor: pointer;
|
|
2765
|
+
-webkit-appearance: none;
|
|
2859
2766
|
appearance: none;
|
|
2860
2767
|
}
|
|
2861
2768
|
.d-checkbox::-ms-check,
|
|
@@ -3117,6 +3024,10 @@ legend .d-label {
|
|
|
3117
3024
|
.d-select__input::-ms-expand {
|
|
3118
3025
|
display: none;
|
|
3119
3026
|
}
|
|
3027
|
+
.d-select__input option {
|
|
3028
|
+
color: var(--dt-color-foreground-secondary);
|
|
3029
|
+
background-color: var(--dt-color-surface-secondary);
|
|
3030
|
+
}
|
|
3120
3031
|
.d-select__input:focus {
|
|
3121
3032
|
--input-color-background: var(--dt-inputs-color-background-focus);
|
|
3122
3033
|
}
|
|
@@ -7314,367 +7225,212 @@ body {
|
|
|
7314
7225
|
}
|
|
7315
7226
|
/**
|
|
7316
7227
|
* Do not edit directly
|
|
7317
|
-
* Generated on Fri,
|
|
7228
|
+
* Generated on Fri, 08 Sep 2023 20:38:01 GMT
|
|
7318
7229
|
*/
|
|
7319
7230
|
|
|
7320
7231
|
.dialtone-theme-light {
|
|
7321
|
-
--dt-radio-size-width: 1.6rem;
|
|
7322
|
-
--dt-radio-size-height: 1.6rem;
|
|
7323
|
-
--dt-radio-size-radius: 50%;
|
|
7324
|
-
--dt-radio-color-border-unchecked: #AAAAAA;
|
|
7325
|
-
--dt-radio-color-border-checked: #7C52FF;
|
|
7326
|
-
--dt-radio-color-background-checked: #7C52FF;
|
|
7327
|
-
--dt-icon-size-100: 1.2rem;
|
|
7328
|
-
--dt-icon-size-200: 1.4rem;
|
|
7329
|
-
--dt-icon-size-300: 1.8rem;
|
|
7330
|
-
--dt-icon-size-400: 2rem;
|
|
7331
|
-
--dt-icon-size-500: 2.4rem;
|
|
7332
|
-
--dt-icon-size-600: 3.2rem;
|
|
7333
|
-
--dt-icon-size-700: 3.8rem;
|
|
7334
|
-
--dt-icon-size-800: 4.8rem;
|
|
7335
|
-
--dt-icon-size-border-100: 0.1rem;
|
|
7336
|
-
--dt-icon-size-border-200: 0.125rem;
|
|
7337
|
-
--dt-icon-size-border-300: 0.15rem;
|
|
7338
|
-
--dt-icon-size-border-400: 0.175rem;
|
|
7339
|
-
--dt-icon-size-border-500: 0.175rem;
|
|
7340
|
-
--dt-icon-size-border-600: 0.25rem;
|
|
7341
|
-
--dt-icon-size-border-700: 0.275rem;
|
|
7342
|
-
--dt-icon-size-border-800: 0.35rem;
|
|
7343
|
-
--dt-checkbox-size-width: 1.6rem;
|
|
7344
|
-
--dt-checkbox-size-height: 1.6rem;
|
|
7345
|
-
--dt-checkbox-size-radius: 0.4rem;
|
|
7346
|
-
--dt-checkbox-color-border-unchecked: #AAAAAA;
|
|
7347
|
-
--dt-checkbox-color-border-checked: #7C52FF;
|
|
7348
|
-
--dt-checkbox-color-background-checked: #7C52FF;
|
|
7349
|
-
--dt-badge-color-background-default: #00000017;
|
|
7350
|
-
--dt-badge-color-background-info: #EAF2FA;
|
|
7351
|
-
--dt-badge-color-background-success: #EDF9EB;
|
|
7352
|
-
--dt-badge-color-background-warning: #FFF4CC;
|
|
7353
|
-
--dt-badge-color-background-critical: #FFE5E6;
|
|
7354
|
-
--dt-badge-color-background-bulletin: #7C52FF;
|
|
7355
|
-
--dt-badge-color-background-ai: linear-gradient(135deg, #F9008E 10%, #7C52FF 90%);
|
|
7356
|
-
--dt-badge-color-foreground-default: #000000;
|
|
7357
|
-
--dt-badge-color-foreground-bulletin: #ffffff;
|
|
7358
|
-
--dt-avatar-color-foreground: #000000;
|
|
7359
|
-
--dt-avatar-color-background-100: #1aa340;
|
|
7360
|
-
--dt-avatar-color-background-200: #aaff83;
|
|
7361
|
-
--dt-avatar-color-background-300: #adea88;
|
|
7362
|
-
--dt-avatar-color-background-400: #77eca6;
|
|
7363
|
-
--dt-avatar-color-background-500: #7aedbd;
|
|
7364
|
-
--dt-avatar-color-background-600: #77deec;
|
|
7365
|
-
--dt-avatar-color-background-700: #5ed8ff;
|
|
7366
|
-
--dt-avatar-color-background-800: #99e7ff;
|
|
7367
|
-
--dt-avatar-color-background-900: #51a0fe;
|
|
7368
|
-
--dt-avatar-color-background-1000: #b6cfff;
|
|
7369
|
-
--dt-avatar-color-background-1100: #f1b7e8;
|
|
7370
|
-
--dt-avatar-color-background-1200: #ec77bd;
|
|
7371
|
-
--dt-avatar-color-background-1300: #ff67be;
|
|
7372
|
-
--dt-avatar-color-background-1400: #f87e7e;
|
|
7373
|
-
--dt-avatar-color-background-1500: #eca877;
|
|
7374
|
-
--dt-avatar-color-background-1600: #ffbe41;
|
|
7375
|
-
--dt-avatar-color-background-1700: #ffd646;
|
|
7376
|
-
--dt-avatar-color-background-1800: #f1dab7;
|
|
7377
|
-
--dt-avatar-color-background-000: #e0e0e0;
|
|
7378
|
-
--dt-color-foreground-primary: #000000;
|
|
7379
|
-
--dt-color-foreground-secondary: #3a3a3a;
|
|
7380
|
-
--dt-color-foreground-tertiary: #555555;
|
|
7381
|
-
--dt-color-foreground-muted: rgba(34, 34, 34, 0.5);
|
|
7382
|
-
--dt-color-foreground-placeholder: #808080;
|
|
7383
|
-
--dt-color-foreground-disabled: #808080;
|
|
7384
|
-
--dt-color-foreground-critical: #ec0e0e;
|
|
7385
|
-
--dt-color-foreground-critical-strong: #b70b0b;
|
|
7386
|
-
--dt-color-foreground-success: #1aa340;
|
|
7387
|
-
--dt-color-foreground-success-strong: #124620;
|
|
7388
|
-
--dt-color-foreground-warning: #815008;
|
|
7389
|
-
--dt-color-foreground-primary-inverted: #ffffff;
|
|
7390
|
-
--dt-color-foreground-secondary-inverted: #e9e9e9;
|
|
7391
|
-
--dt-color-foreground-tertiary-inverted: #d2d2d2;
|
|
7392
|
-
--dt-color-foreground-muted-inverted: rgba(233, 233, 233, 0.6);
|
|
7393
|
-
--dt-color-foreground-placeholder-inverted: #808080;
|
|
7394
|
-
--dt-color-foreground-disabled-inverted: #808080;
|
|
7395
|
-
--dt-color-foreground-critical-inverted: #ff8585;
|
|
7396
|
-
--dt-color-foreground-critical-strong-inverted: #ffa4a4;
|
|
7397
|
-
--dt-color-foreground-success-inverted: #b0ffa3;
|
|
7398
|
-
--dt-color-foreground-success-strong-inverted: #d3ffcd;
|
|
7399
|
-
--dt-color-foreground-warning-inverted: #fff4cc;
|
|
7400
|
-
--dt-color-link-primary: #7c52ff;
|
|
7401
|
-
--dt-color-link-critical: #ec0e0e;
|
|
7402
|
-
--dt-color-link-success: #1aa340;
|
|
7403
|
-
--dt-color-link-warning: #815008;
|
|
7404
|
-
--dt-color-link-muted: #3a3a3a;
|
|
7405
|
-
--dt-color-link-disabled: #808080;
|
|
7406
|
-
--dt-color-link-primary-inverted: #ab7eff;
|
|
7407
|
-
--dt-color-link-critical-inverted: #ff8585;
|
|
7408
|
-
--dt-color-link-success-inverted: #b0ffa3;
|
|
7409
|
-
--dt-color-link-warning-inverted: #fff4cc;
|
|
7410
|
-
--dt-color-link-muted-inverted: #e9e9e9;
|
|
7411
|
-
--dt-color-link-disabled-inverted: #808080;
|
|
7412
|
-
--dt-color-link-primary-hover: #3a1d95;
|
|
7413
|
-
--dt-color-link-critical-hover: #b70b0b;
|
|
7414
|
-
--dt-color-link-success-hover: #124620;
|
|
7415
|
-
--dt-color-link-warning-hover: #555555;
|
|
7416
|
-
--dt-color-link-muted-hover: #000000;
|
|
7417
|
-
--dt-color-link-disabled-hover: #808080;
|
|
7418
|
-
--dt-color-link-primary-inverted-hover: #dac7ff;
|
|
7419
|
-
--dt-color-link-critical-inverted-hover: #ffa4a4;
|
|
7420
|
-
--dt-color-link-success-inverted-hover: #d3ffcd;
|
|
7421
|
-
--dt-color-link-warning-inverted-hover: #f9f9f9;
|
|
7422
|
-
--dt-color-link-muted-inverted-hover: #f9f9f9;
|
|
7423
|
-
--dt-color-link-disabled-inverted-hover: #808080;
|
|
7424
|
-
--dt-color-surface-secondary-opaque: rgba(0, 0, 0, 0.02);
|
|
7425
|
-
--dt-color-surface-moderate-opaque: rgba(0, 0, 0, 0.09);
|
|
7426
|
-
--dt-color-surface-bold-opaque: rgba(0, 0, 0, 0.18);
|
|
7427
|
-
--dt-color-surface-strong-opaque: rgba(0, 0, 0, 0.67);
|
|
7428
|
-
--dt-color-surface-contrast-opaque: rgba(0, 0, 0, 0.87);
|
|
7429
|
-
--dt-color-surface-backdrop: rgba(0, 0, 0, 0.7);
|
|
7430
|
-
--dt-color-surface-critical-opaque: rgba(236, 14, 14, 0.11);
|
|
7431
|
-
--dt-color-surface-critical-subtle-opaque: rgba(236, 14, 14, 0.05);
|
|
7432
|
-
--dt-color-surface-warning-opaque: rgba(255, 219, 128, 0.38);
|
|
7433
|
-
--dt-color-surface-warning-subtle-opaque: rgba(255, 219, 128, 0.18);
|
|
7434
|
-
--dt-color-surface-success-opaque: rgba(26, 163, 65, 0.08);
|
|
7435
|
-
--dt-color-surface-success-subtle-opaque: rgba(26, 163, 65, 0.03);
|
|
7436
|
-
--dt-color-surface-info-opaque: rgba(23, 105, 198, 0.09);
|
|
7437
|
-
--dt-color-surface-info-subtle-opaque: rgba(23, 105, 198, 0.04);
|
|
7438
|
-
--dt-color-surface-primary: #ffffff;
|
|
7439
|
-
--dt-color-surface-secondary: #f9f9f9;
|
|
7440
|
-
--dt-color-surface-moderate: #e9e9e9;
|
|
7441
|
-
--dt-color-surface-bold: #d2d2d2;
|
|
7442
|
-
--dt-color-surface-strong: #555555;
|
|
7443
|
-
--dt-color-surface-contrast: #222222;
|
|
7444
|
-
--dt-color-surface-critical: #ffe5e6;
|
|
7445
|
-
--dt-color-surface-critical-subtle: #fff2f3;
|
|
7446
|
-
--dt-color-surface-critical-strong: #b70b0b;
|
|
7447
|
-
--dt-color-surface-warning: #fff4cc;
|
|
7448
|
-
--dt-color-surface-warning-subtle: #fffae5;
|
|
7449
|
-
--dt-color-surface-warning-strong: #ffdb80;
|
|
7450
|
-
--dt-color-surface-success: #edf9eb;
|
|
7451
|
-
--dt-color-surface-success-subtle: #f8fdf7;
|
|
7452
|
-
--dt-color-surface-success-strong: #1aa340;
|
|
7453
|
-
--dt-color-surface-info: #eaf2fa;
|
|
7454
|
-
--dt-color-surface-info-subtle: #f5f9fd;
|
|
7455
|
-
--dt-color-surface-info-strong: #1768c6;
|
|
7456
|
-
--dt-color-border-subtle: rgba(0, 0, 0, 0.1);
|
|
7457
|
-
--dt-color-border-default: rgba(0, 0, 0, 0.18);
|
|
7458
|
-
--dt-color-border-moderate: rgba(0, 0, 0, 0.34);
|
|
7459
|
-
--dt-color-border-bold: rgba(0, 0, 0, 0.5);
|
|
7460
|
-
--dt-color-border-subtle-inverted: rgba(255, 255, 255, 0.14);
|
|
7461
|
-
--dt-color-border-default-inverted: rgba(255, 255, 255, 0.22);
|
|
7462
|
-
--dt-color-border-moderate-inverted: rgba(255, 255, 255, 0.38);
|
|
7463
|
-
--dt-color-border-bold-inverted: rgba(255, 255, 255, 0.5);
|
|
7464
|
-
--dt-color-border-focus: #51a0fe;
|
|
7465
|
-
--dt-color-border-critical: #ec0e0e;
|
|
7466
|
-
--dt-color-border-success: #1aa340;
|
|
7467
|
-
--dt-color-border-warning: #d28f2b;
|
|
7468
|
-
--dt-color-border-brand: #7c52ff;
|
|
7469
|
-
--dt-color-border-ai: #000000;
|
|
7470
|
-
--dt-color-border-accent: #f9008e;
|
|
7471
|
-
--dt-color-border-critical-subtle: #ff8585;
|
|
7472
|
-
--dt-color-border-critical-strong: #b70b0b;
|
|
7473
|
-
--dt-color-border-success-subtle: #b0ffa3;
|
|
7474
|
-
--dt-color-border-success-strong: #124620;
|
|
7475
|
-
--dt-color-border-warning-subtle: #ffdb80;
|
|
7476
|
-
--dt-color-border-warning-strong: #674006;
|
|
7477
|
-
--dt-color-border-brand-subtle: #dac7ff;
|
|
7478
|
-
--dt-color-border-brand-strong: #3a1d95;
|
|
7479
|
-
--dt-color-border-critical-inverted: #ff8585;
|
|
7480
|
-
--dt-color-border-success-inverted: #b0ffa3;
|
|
7481
|
-
--dt-color-border-warning-inverted: #ffdb80;
|
|
7482
|
-
--dt-color-border-brand-inverted: #7c52ff;
|
|
7483
|
-
--dt-color-border-critical-subtle-inverted: #b70b0b;
|
|
7484
|
-
--dt-color-border-critical-strong-inverted: #ffe5e6;
|
|
7485
|
-
--dt-color-border-success-subtle-inverted: #1aa340;
|
|
7486
|
-
--dt-color-border-success-strong-inverted: #edf9eb;
|
|
7487
|
-
--dt-color-border-warning-subtle-inverted: #d28f2b;
|
|
7488
|
-
--dt-color-border-warning-strong-inverted: #fff4cc;
|
|
7489
|
-
--dt-color-border-brand-subtle-inverted: #3a1d95;
|
|
7490
|
-
--dt-color-border-brand-strong-inverted: #dac7ff;
|
|
7491
7232
|
--dt-color-neutral-white: #ffffff;
|
|
7492
7233
|
--dt-color-neutral-black: #000000;
|
|
7493
|
-
--dt-color-neutral-transparent:
|
|
7494
|
-
--dt-color-black-100: #
|
|
7495
|
-
--dt-color-black-200: #
|
|
7496
|
-
--dt-color-black-300: #
|
|
7497
|
-
--dt-color-black-400: #
|
|
7234
|
+
--dt-color-neutral-transparent: transparent;
|
|
7235
|
+
--dt-color-black-100: #F9F9F9;
|
|
7236
|
+
--dt-color-black-200: #E9E9E9;
|
|
7237
|
+
--dt-color-black-300: #D2D2D2;
|
|
7238
|
+
--dt-color-black-400: #AAAAAA;
|
|
7498
7239
|
--dt-color-black-500: #808080;
|
|
7499
7240
|
--dt-color-black-600: #555555;
|
|
7500
|
-
--dt-color-black-700: #
|
|
7241
|
+
--dt-color-black-700: #3A3A3A;
|
|
7501
7242
|
--dt-color-black-800: #222222;
|
|
7502
7243
|
--dt-color-black-900: #000000;
|
|
7503
|
-
--dt-color-purple-100: #
|
|
7504
|
-
--dt-color-purple-200: #
|
|
7505
|
-
--dt-color-purple-300: #
|
|
7506
|
-
--dt-color-purple-400: #
|
|
7507
|
-
--dt-color-purple-500: #
|
|
7508
|
-
--dt-color-purple-600: #
|
|
7509
|
-
--dt-color-blue-100: #
|
|
7510
|
-
--dt-color-blue-200: #
|
|
7511
|
-
--dt-color-blue-300: #
|
|
7512
|
-
--dt-color-blue-400: #
|
|
7513
|
-
--dt-color-blue-500: #
|
|
7514
|
-
--dt-color-magenta-100: #
|
|
7515
|
-
--dt-color-magenta-200: #
|
|
7516
|
-
--dt-color-magenta-300: #
|
|
7517
|
-
--dt-color-magenta-400: #
|
|
7518
|
-
--dt-color-magenta-500: #
|
|
7519
|
-
--dt-color-gold-100: #
|
|
7520
|
-
--dt-color-gold-200: #
|
|
7521
|
-
--dt-color-gold-300: #
|
|
7522
|
-
--dt-color-gold-400: #
|
|
7244
|
+
--dt-color-purple-100: #F5F0FF;
|
|
7245
|
+
--dt-color-purple-200: #DAC7FF;
|
|
7246
|
+
--dt-color-purple-300: #AB7EFF;
|
|
7247
|
+
--dt-color-purple-400: #7C52FF;
|
|
7248
|
+
--dt-color-purple-500: #3A1D95;
|
|
7249
|
+
--dt-color-purple-600: #10022C;
|
|
7250
|
+
--dt-color-blue-100: #EAF2FA;
|
|
7251
|
+
--dt-color-blue-200: #99C8FF;
|
|
7252
|
+
--dt-color-blue-300: #51A0FE;
|
|
7253
|
+
--dt-color-blue-400: #1768C6;
|
|
7254
|
+
--dt-color-blue-500: #01326D;
|
|
7255
|
+
--dt-color-magenta-100: #FFE0F2;
|
|
7256
|
+
--dt-color-magenta-200: #F985C7;
|
|
7257
|
+
--dt-color-magenta-300: #F9008E;
|
|
7258
|
+
--dt-color-magenta-400: #8C0E56;
|
|
7259
|
+
--dt-color-magenta-500: #541A3B;
|
|
7260
|
+
--dt-color-gold-100: #FFF4CC;
|
|
7261
|
+
--dt-color-gold-200: #FFDB80;
|
|
7262
|
+
--dt-color-gold-300: #F6AB3C;
|
|
7263
|
+
--dt-color-gold-400: #D28F2B;
|
|
7523
7264
|
--dt-color-gold-500: #815008;
|
|
7524
|
-
--dt-color-green-100: #
|
|
7525
|
-
--dt-color-green-200: #
|
|
7526
|
-
--dt-color-green-300: #
|
|
7527
|
-
--dt-color-green-400: #
|
|
7265
|
+
--dt-color-green-100: #EDF9EB;
|
|
7266
|
+
--dt-color-green-200: #B0FFA3;
|
|
7267
|
+
--dt-color-green-300: #45F777;
|
|
7268
|
+
--dt-color-green-400: #1AA340;
|
|
7528
7269
|
--dt-color-green-500: #124620;
|
|
7529
|
-
--dt-color-red-100: #
|
|
7530
|
-
--dt-color-red-200: #
|
|
7531
|
-
--dt-color-red-300: #
|
|
7532
|
-
--dt-color-red-400: #
|
|
7533
|
-
--dt-color-red-500: #
|
|
7534
|
-
--dt-color-tan-100: #
|
|
7535
|
-
--dt-color-tan-200: #
|
|
7536
|
-
--dt-color-tan-300: #
|
|
7537
|
-
--dt-color-tan-400: #
|
|
7270
|
+
--dt-color-red-100: #FFE5E6;
|
|
7271
|
+
--dt-color-red-200: #FF8585;
|
|
7272
|
+
--dt-color-red-300: #EC0E0E;
|
|
7273
|
+
--dt-color-red-400: #B70B0B;
|
|
7274
|
+
--dt-color-red-500: #5B0505;
|
|
7275
|
+
--dt-color-tan-100: #F2F0EE;
|
|
7276
|
+
--dt-color-tan-200: #CEC8C4;
|
|
7277
|
+
--dt-color-tan-300: #87807B;
|
|
7278
|
+
--dt-color-tan-400: #3F3D3C;
|
|
7538
7279
|
--dt-color-tan-500: #121212;
|
|
7539
|
-
--dt-color-gradient-magenta-purple: #
|
|
7540
|
-
--dt-color-brand-purple: #
|
|
7541
|
-
--dt-color-brand-magenta: #
|
|
7542
|
-
--dt-
|
|
7543
|
-
--dt-
|
|
7544
|
-
--dt-
|
|
7545
|
-
--dt-
|
|
7546
|
-
--dt-
|
|
7547
|
-
--dt-
|
|
7548
|
-
--dt-
|
|
7549
|
-
--dt-
|
|
7550
|
-
--dt-
|
|
7551
|
-
--dt-
|
|
7552
|
-
--dt-
|
|
7553
|
-
--dt-
|
|
7554
|
-
--dt-
|
|
7555
|
-
--dt-
|
|
7556
|
-
--dt-
|
|
7557
|
-
--dt-
|
|
7558
|
-
--dt-
|
|
7559
|
-
--dt-
|
|
7560
|
-
--dt-
|
|
7561
|
-
--dt-
|
|
7562
|
-
--dt-
|
|
7563
|
-
--dt-
|
|
7564
|
-
--dt-
|
|
7565
|
-
--dt-
|
|
7566
|
-
--dt-
|
|
7567
|
-
--dt-
|
|
7568
|
-
--dt-
|
|
7569
|
-
--dt-
|
|
7570
|
-
--dt-
|
|
7571
|
-
--dt-
|
|
7572
|
-
--dt-
|
|
7573
|
-
--dt-
|
|
7574
|
-
--dt-
|
|
7575
|
-
--dt-
|
|
7576
|
-
--dt-
|
|
7577
|
-
--dt-
|
|
7578
|
-
--dt-
|
|
7579
|
-
--dt-
|
|
7580
|
-
--dt-
|
|
7581
|
-
--dt-
|
|
7582
|
-
--dt-
|
|
7583
|
-
--dt-
|
|
7584
|
-
--dt-
|
|
7585
|
-
--dt-
|
|
7586
|
-
--dt-
|
|
7587
|
-
--dt-
|
|
7588
|
-
--dt-
|
|
7589
|
-
--dt-
|
|
7590
|
-
--dt-
|
|
7591
|
-
--dt-
|
|
7592
|
-
--dt-
|
|
7593
|
-
--dt-
|
|
7594
|
-
--dt-
|
|
7595
|
-
--dt-
|
|
7596
|
-
--dt-
|
|
7597
|
-
--dt-
|
|
7598
|
-
--dt-
|
|
7599
|
-
--dt-
|
|
7600
|
-
--dt-
|
|
7601
|
-
--dt-
|
|
7602
|
-
--dt-
|
|
7603
|
-
--dt-
|
|
7604
|
-
--dt-
|
|
7605
|
-
--dt-
|
|
7606
|
-
--dt-
|
|
7607
|
-
--dt-
|
|
7608
|
-
--dt-
|
|
7609
|
-
--dt-
|
|
7610
|
-
--dt-
|
|
7611
|
-
--dt-
|
|
7612
|
-
--dt-
|
|
7613
|
-
--dt-
|
|
7614
|
-
--dt-
|
|
7615
|
-
--dt-
|
|
7616
|
-
--dt-
|
|
7617
|
-
--dt-
|
|
7618
|
-
--dt-
|
|
7619
|
-
--dt-
|
|
7620
|
-
--dt-
|
|
7621
|
-
--dt-
|
|
7622
|
-
--dt-
|
|
7623
|
-
--dt-
|
|
7624
|
-
--dt-
|
|
7625
|
-
--dt-
|
|
7626
|
-
--dt-
|
|
7627
|
-
--dt-
|
|
7628
|
-
--dt-
|
|
7629
|
-
--dt-
|
|
7630
|
-
--dt-
|
|
7631
|
-
--dt-
|
|
7632
|
-
--dt-
|
|
7633
|
-
--dt-
|
|
7634
|
-
--dt-
|
|
7635
|
-
--dt-
|
|
7636
|
-
--dt-
|
|
7637
|
-
--dt-
|
|
7638
|
-
--dt-
|
|
7639
|
-
--dt-
|
|
7640
|
-
--dt-
|
|
7641
|
-
--dt-
|
|
7642
|
-
--dt-
|
|
7643
|
-
--dt-
|
|
7644
|
-
--dt-
|
|
7645
|
-
--dt-
|
|
7646
|
-
--dt-
|
|
7647
|
-
--dt-
|
|
7648
|
-
--dt-
|
|
7649
|
-
--dt-
|
|
7650
|
-
--dt-
|
|
7651
|
-
--dt-
|
|
7652
|
-
--dt-
|
|
7653
|
-
--dt-
|
|
7654
|
-
--dt-
|
|
7655
|
-
--dt-
|
|
7656
|
-
--dt-
|
|
7657
|
-
--dt-
|
|
7658
|
-
--dt-
|
|
7659
|
-
--dt-
|
|
7660
|
-
--dt-
|
|
7661
|
-
--dt-
|
|
7662
|
-
--dt-
|
|
7663
|
-
--dt-
|
|
7664
|
-
--dt-
|
|
7665
|
-
--dt-
|
|
7666
|
-
--dt-
|
|
7667
|
-
--dt-
|
|
7668
|
-
--dt-
|
|
7669
|
-
--dt-
|
|
7670
|
-
--dt-
|
|
7671
|
-
--dt-
|
|
7672
|
-
--dt-
|
|
7673
|
-
--dt-
|
|
7674
|
-
--dt-
|
|
7675
|
-
--dt-
|
|
7676
|
-
--dt-
|
|
7677
|
-
--dt-size-
|
|
7280
|
+
--dt-color-gradient-magenta-purple: linear-gradient(135deg, #F9008E 10%, #7C52FF 90%);
|
|
7281
|
+
--dt-color-brand-purple: #7C52FF;
|
|
7282
|
+
--dt-color-brand-magenta: #F9008E;
|
|
7283
|
+
--dt-color-foreground-primary: #000000; /* Default text color throughout the UI. */
|
|
7284
|
+
--dt-color-foreground-secondary: #3A3A3A; /* Example uses include introduction paragraphs, labels, and descriptions paired with form elements. */
|
|
7285
|
+
--dt-color-foreground-tertiary: #555555; /* Used to imply visual hierarchy relative to primary and secondary text colors, e.g. headlines and labels. */
|
|
7286
|
+
--dt-color-foreground-muted: hsl(0 0% 13.3% / 0.5);
|
|
7287
|
+
--dt-color-foreground-placeholder: #808080; /* Text color for placeholder text within form elements. */
|
|
7288
|
+
--dt-color-foreground-disabled: #808080; /* Used for text paired with disabled content or components, like the form elements. */
|
|
7289
|
+
--dt-color-foreground-critical: #EC0E0E; /* Expresses an error, danger, or otherwise critical state. */
|
|
7290
|
+
--dt-color-foreground-critical-strong: #B70B0B; /* Expresses an error, danger, or otherwise critical state on surfaces that require a stronger contrast. */
|
|
7291
|
+
--dt-color-foreground-success: #1AA340; /* Indicates a positive state. */
|
|
7292
|
+
--dt-color-foreground-success-strong: #124620; /* Indicates a strong positive state on surfaces that require a stronger contrast. */
|
|
7293
|
+
--dt-color-foreground-warning: #815008; /* Indicates information that requires user’s attention and further action may be necessary. */
|
|
7294
|
+
--dt-color-foreground-primary-inverted: #ffffff; /* Primary text that sits on high-contrast surfaces or backgrounds. */
|
|
7295
|
+
--dt-color-foreground-secondary-inverted: #E9E9E9; /* Secondary text color that sits on high-contrast surfaces or backgrounds. */
|
|
7296
|
+
--dt-color-foreground-tertiary-inverted: #D2D2D2; /* Tertiary text color that sits on high-contrast surfaces or backgrounds. */
|
|
7297
|
+
--dt-color-foreground-muted-inverted: hsl(0 0% 91.4% / 0.6); /* Muted text color that sits on high-contrast surfaces or backgrounds. */
|
|
7298
|
+
--dt-color-foreground-placeholder-inverted: #808080; /* Placeholder text color that sits on high-contrast surfaces or backgrounds. */
|
|
7299
|
+
--dt-color-foreground-disabled-inverted: #808080; /* Disabled text color that sits on high-contrast surfaces or backgrounds. */
|
|
7300
|
+
--dt-color-foreground-critical-inverted: #FF8585; /* Critical text that sits on high-contrast surfaces or backgrounds */
|
|
7301
|
+
--dt-color-foreground-critical-strong-inverted: hsl(0 100% 82.1%); /* Critical strong text that sits on high-contrast surfaces or backgrounds */
|
|
7302
|
+
--dt-color-foreground-success-inverted: #B0FFA3; /* Success text that sits on high-contrast surfaces or backgrounds */
|
|
7303
|
+
--dt-color-foreground-success-strong-inverted: hsl(112 100% 90.1%); /* Success strong text that sits on high-contrast surfaces or backgrounds */
|
|
7304
|
+
--dt-color-foreground-warning-inverted: #FFF4CC; /* Warning text that sits on high-contrast surfaces or backgrounds */
|
|
7305
|
+
--dt-color-link-primary: #7C52FF;
|
|
7306
|
+
--dt-color-link-critical: #EC0E0E;
|
|
7307
|
+
--dt-color-link-success: #1AA340; /* positive */
|
|
7308
|
+
--dt-color-link-warning: #815008;
|
|
7309
|
+
--dt-color-link-muted: #3A3A3A;
|
|
7310
|
+
--dt-color-link-disabled: #808080;
|
|
7311
|
+
--dt-color-link-primary-inverted: #AB7EFF;
|
|
7312
|
+
--dt-color-link-critical-inverted: #FF8585;
|
|
7313
|
+
--dt-color-link-success-inverted: #B0FFA3;
|
|
7314
|
+
--dt-color-link-warning-inverted: #FFF4CC;
|
|
7315
|
+
--dt-color-link-muted-inverted: #E9E9E9;
|
|
7316
|
+
--dt-color-link-disabled-inverted: #808080;
|
|
7317
|
+
--dt-color-link-primary-hover: #3A1D95;
|
|
7318
|
+
--dt-color-link-critical-hover: #B70B0B;
|
|
7319
|
+
--dt-color-link-success-hover: #124620;
|
|
7320
|
+
--dt-color-link-warning-hover: #555555;
|
|
7321
|
+
--dt-color-link-muted-hover: #000000;
|
|
7322
|
+
--dt-color-link-disabled-hover: #808080;
|
|
7323
|
+
--dt-color-link-primary-inverted-hover: #DAC7FF;
|
|
7324
|
+
--dt-color-link-critical-inverted-hover: hsl(0 100% 82.1%);
|
|
7325
|
+
--dt-color-link-success-inverted-hover: hsl(112 100% 90.1%);
|
|
7326
|
+
--dt-color-link-warning-inverted-hover: #F9F9F9;
|
|
7327
|
+
--dt-color-link-muted-inverted-hover: #F9F9F9;
|
|
7328
|
+
--dt-color-link-disabled-inverted-hover: #808080;
|
|
7329
|
+
--dt-color-surface-secondary-opaque: hsl(0 0% 0% / 0.02); /* Secondary surface as opaque background color. */
|
|
7330
|
+
--dt-color-surface-moderate-opaque: hsl(0 0% 0% / 0.09); /* Moderate surface as opaque background color. */
|
|
7331
|
+
--dt-color-surface-bold-opaque: hsl(0 0% 0% / 0.18); /* Bold surface as opaque background color. */
|
|
7332
|
+
--dt-color-surface-strong-opaque: hsl(0 0% 0% / 0.67); /* Strong surface as opaque background color. */
|
|
7333
|
+
--dt-color-surface-contrast-opaque: hsl(0 0% 0% / 0.87); /* Contrast surface as opaque background color. */
|
|
7334
|
+
--dt-color-surface-backdrop: hsl(0 0% 0% / 0.7); /* Background color for a modal-like backdrop. */
|
|
7335
|
+
--dt-color-surface-critical-opaque: hsl(0 88.8% 49% / 0.11); /* Critical surface as opaque background color. */
|
|
7336
|
+
--dt-color-surface-critical-subtle-opaque: hsl(0 88.8% 49% / 0.05); /* Critical subtle surface as opaque background color. */
|
|
7337
|
+
--dt-color-surface-warning-opaque: hsl(43 100% 75.1% / 0.38); /* Warning surface as opaque background color */
|
|
7338
|
+
--dt-color-surface-warning-subtle-opaque: hsl(43 100% 75.1% / 0.18); /* Warning subtle surface as opaque background color */
|
|
7339
|
+
--dt-color-surface-success-opaque: hsl(137 72.5% 37.1% / 0.08); /* Success surface as opaque background color. */
|
|
7340
|
+
--dt-color-surface-success-subtle-opaque: hsl(137 72.5% 37.1% / 0.03); /* Success subtle surface as opaque background color. */
|
|
7341
|
+
--dt-color-surface-info-opaque: hsl(212 79.2% 43.3% / 0.09); /* Info surface as opaque background color. */
|
|
7342
|
+
--dt-color-surface-info-subtle-opaque: hsl(212 79.2% 43.3% / 0.04); /* Info surface as opaque background color. */
|
|
7343
|
+
--dt-color-surface-primary: #ffffff; /* Default surface color for the majority of surfaces. */
|
|
7344
|
+
--dt-color-surface-secondary: #F9F9F9; /* For adjacent or complementary regions. */
|
|
7345
|
+
--dt-color-surface-moderate: #E9E9E9; /* A tertiary surface level, prominent without being too overpowering. */
|
|
7346
|
+
--dt-color-surface-bold: #D2D2D2; /* Highlight or call attention to specific areas of the interface. */
|
|
7347
|
+
--dt-color-surface-strong: #555555; /* Use sparingly to draw the eye to a relatively important region. */
|
|
7348
|
+
--dt-color-surface-contrast: #222222; /* An inverted surface for lightened content and elements, most likely paired with inverted foreground colors. */
|
|
7349
|
+
--dt-color-surface-critical: #FFE5E6; /* Background surface color containing error, danger, or otherwise critical messaging or elements. */
|
|
7350
|
+
--dt-color-surface-critical-subtle: hsl(358 100% 97.5%); /* A softer version of the Critical surface. */
|
|
7351
|
+
--dt-color-surface-critical-strong: #B70B0B; /* A contrasting critical surface, most likely paired with inverted foreground colors. */
|
|
7352
|
+
--dt-color-surface-warning: #FFF4CC; /* Background surface color highlighting messaging or elements that may require user's attention. */
|
|
7353
|
+
--dt-color-surface-warning-subtle: hsl(47.1 100% 95%); /* A softer version of the default warning surface. */
|
|
7354
|
+
--dt-color-surface-warning-strong: #FFDB80; /* A contrasting warning surface, most likely paired with inverted foreground colors. */
|
|
7355
|
+
--dt-color-surface-success: #EDF9EB; /* Background surface color containing messaging or elements expressing a positive or successful state. */
|
|
7356
|
+
--dt-color-surface-success-subtle: hsl(111 53.8% 98%); /* A softer version of the default success surface. */
|
|
7357
|
+
--dt-color-surface-success-strong: #1AA340; /* A contrasting positive state surface, most likely paired with inverted foreground colors. */
|
|
7358
|
+
--dt-color-surface-info: #EAF2FA; /* Background surface color containing messaging or elements communicated as generally informational. */
|
|
7359
|
+
--dt-color-surface-info-subtle: hsl(210 61.5% 97.5%); /* A softer version of the default informational surface. */
|
|
7360
|
+
--dt-color-surface-info-strong: #1768C6; /* A contrasting informational surface, most likely paired with inverted foreground colors. */
|
|
7361
|
+
--dt-color-border-subtle: hsl(0 0% 0% / 0.1);
|
|
7362
|
+
--dt-color-border-default: hsl(0 0% 0% / 0.18);
|
|
7363
|
+
--dt-color-border-moderate: hsl(0 0% 0% / 0.34);
|
|
7364
|
+
--dt-color-border-bold: hsl(0 0% 0% / 0.5);
|
|
7365
|
+
--dt-color-border-subtle-inverted: hsl(0 0% 100% / 0.14);
|
|
7366
|
+
--dt-color-border-default-inverted: hsl(0 0% 100% / 0.22);
|
|
7367
|
+
--dt-color-border-moderate-inverted: hsl(0 0% 100% / 0.38);
|
|
7368
|
+
--dt-color-border-bold-inverted: hsl(0 0% 100% / 0.5);
|
|
7369
|
+
--dt-color-border-focus: #51A0FE;
|
|
7370
|
+
--dt-color-border-critical: #EC0E0E;
|
|
7371
|
+
--dt-color-border-success: #1AA340;
|
|
7372
|
+
--dt-color-border-warning: #D28F2B;
|
|
7373
|
+
--dt-color-border-brand: #7C52FF;
|
|
7374
|
+
--dt-color-border-ai: linear-gradient(135deg, #F9008E 10%, #7C52FF 90%);
|
|
7375
|
+
--dt-color-border-accent: #F9008E;
|
|
7376
|
+
--dt-color-border-critical-subtle: #FF8585;
|
|
7377
|
+
--dt-color-border-critical-strong: #B70B0B;
|
|
7378
|
+
--dt-color-border-success-subtle: #B0FFA3;
|
|
7379
|
+
--dt-color-border-success-strong: #124620;
|
|
7380
|
+
--dt-color-border-warning-subtle: #FFDB80;
|
|
7381
|
+
--dt-color-border-warning-strong: hsl(35.7 88.3% 21.5%);
|
|
7382
|
+
--dt-color-border-brand-subtle: #DAC7FF;
|
|
7383
|
+
--dt-color-border-brand-strong: #3A1D95;
|
|
7384
|
+
--dt-color-border-critical-inverted: #FF8585;
|
|
7385
|
+
--dt-color-border-success-inverted: #B0FFA3;
|
|
7386
|
+
--dt-color-border-warning-inverted: #FFDB80;
|
|
7387
|
+
--dt-color-border-brand-inverted: #7C52FF;
|
|
7388
|
+
--dt-color-border-critical-subtle-inverted: #B70B0B;
|
|
7389
|
+
--dt-color-border-critical-strong-inverted: #FFE5E6;
|
|
7390
|
+
--dt-color-border-success-subtle-inverted: #1AA340;
|
|
7391
|
+
--dt-color-border-success-strong-inverted: #EDF9EB;
|
|
7392
|
+
--dt-color-border-warning-subtle-inverted: #D28F2B;
|
|
7393
|
+
--dt-color-border-warning-strong-inverted: #FFF4CC;
|
|
7394
|
+
--dt-color-border-brand-subtle-inverted: #3A1D95;
|
|
7395
|
+
--dt-color-border-brand-strong-inverted: #DAC7FF;
|
|
7396
|
+
--dt-opacity-0: 0;
|
|
7397
|
+
--dt-opacity-100: 0.05;
|
|
7398
|
+
--dt-opacity-200: 0.1;
|
|
7399
|
+
--dt-opacity-300: 0.2;
|
|
7400
|
+
--dt-opacity-400: 0.25;
|
|
7401
|
+
--dt-opacity-500: 0.3;
|
|
7402
|
+
--dt-opacity-600: 0.4;
|
|
7403
|
+
--dt-opacity-700: 0.5;
|
|
7404
|
+
--dt-opacity-800: 0.6;
|
|
7405
|
+
--dt-opacity-900: 0.7;
|
|
7406
|
+
--dt-opacity-1000: 0.75;
|
|
7407
|
+
--dt-opacity-1100: 0.8;
|
|
7408
|
+
--dt-opacity-1200: 0.9;
|
|
7409
|
+
--dt-opacity-1300: 1;
|
|
7410
|
+
--dt-font-family-body: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
7411
|
+
--dt-font-family-expressive: Archivo,-apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
7412
|
+
--dt-font-family-mono: SFMono-Regular, '"SF Mono"', Consolas, '"Liberation Mono"', Menlo, Courier, monospace;
|
|
7413
|
+
--dt-font-size-100: 1.2rem; /* small */
|
|
7414
|
+
--dt-font-size-200: 1.5rem; /* medium / base */
|
|
7415
|
+
--dt-font-size-300: 1.9rem; /* large */
|
|
7416
|
+
--dt-font-size-400: 2.7rem; /* extra large / xl */
|
|
7417
|
+
--dt-font-size-500: 3.8rem; /* extra large / xxl */
|
|
7418
|
+
--dt-font-size-root: 1rem;
|
|
7419
|
+
--dt-font-line-height-100: 1;
|
|
7420
|
+
--dt-font-line-height-200: 1.2;
|
|
7421
|
+
--dt-font-line-height-300: 1.4;
|
|
7422
|
+
--dt-font-line-height-400: 1.6;
|
|
7423
|
+
--dt-font-line-height-500: 1.8;
|
|
7424
|
+
--dt-font-line-height-600: 2;
|
|
7425
|
+
--dt-font-weight-normal: 400;
|
|
7426
|
+
--dt-font-weight-medium: 500;
|
|
7427
|
+
--dt-font-weight-semi-bold: 600;
|
|
7428
|
+
--dt-font-weight-bold: 700;
|
|
7429
|
+
--dt-font-text-case-uppercase: uppercase;
|
|
7430
|
+
--dt-font-text-case-lowercase: lowercase;
|
|
7431
|
+
--dt-font-text-case-capitalize: capitalize;
|
|
7432
|
+
--dt-font-text-case-none: none;
|
|
7433
|
+
--dt-size-0: 0rem;
|
|
7678
7434
|
--dt-size-50: 0.05rem;
|
|
7679
7435
|
--dt-size-100: 0.1rem;
|
|
7680
7436
|
--dt-size-200: 0.2rem;
|
|
@@ -7716,14 +7472,6 @@ body {
|
|
|
7716
7472
|
--dt-size-1130: 134rem;
|
|
7717
7473
|
--dt-size-1150: 153.6rem;
|
|
7718
7474
|
--dt-size-1200: 204.8rem;
|
|
7719
|
-
--dt-size-border-0: 0;
|
|
7720
|
-
--dt-size-border-50: 0.05rem;
|
|
7721
|
-
--dt-size-border-100: 0.1rem;
|
|
7722
|
-
--dt-size-border-150: 0.15rem;
|
|
7723
|
-
--dt-size-border-200: 0.2rem;
|
|
7724
|
-
--dt-size-border-300: 0.4rem;
|
|
7725
|
-
--dt-size-border-400: 0.8rem;
|
|
7726
|
-
--dt-size-border-focus: 0.3rem;
|
|
7727
7475
|
--dt-size-50-negative: -0.05rem;
|
|
7728
7476
|
--dt-size-100-negative: -0.1rem;
|
|
7729
7477
|
--dt-size-200-negative: -0.2rem;
|
|
@@ -7783,7 +7531,15 @@ body {
|
|
|
7783
7531
|
--dt-size-95-percent: 95%;
|
|
7784
7532
|
--dt-size-100-percent: 100%;
|
|
7785
7533
|
--dt-size-base: 0.8rem;
|
|
7786
|
-
--dt-size-
|
|
7534
|
+
--dt-size-border-0: 0rem;
|
|
7535
|
+
--dt-size-border-50: 0.05rem;
|
|
7536
|
+
--dt-size-border-100: 0.1rem;
|
|
7537
|
+
--dt-size-border-150: 0.15rem;
|
|
7538
|
+
--dt-size-border-200: 0.2rem;
|
|
7539
|
+
--dt-size-border-300: 0.4rem;
|
|
7540
|
+
--dt-size-border-400: 0.8rem;
|
|
7541
|
+
--dt-size-border-focus: 0.3rem;
|
|
7542
|
+
--dt-size-radius-0: 0rem;
|
|
7787
7543
|
--dt-size-radius-100: 0.1rem;
|
|
7788
7544
|
--dt-size-radius-200: 0.2rem;
|
|
7789
7545
|
--dt-size-radius-300: 0.4rem;
|
|
@@ -7792,151 +7548,7 @@ body {
|
|
|
7792
7548
|
--dt-size-radius-600: 3.2rem;
|
|
7793
7549
|
--dt-size-radius-pill: 10rem;
|
|
7794
7550
|
--dt-size-radius-circle: 50%;
|
|
7795
|
-
--dt-
|
|
7796
|
-
--dt-inputs-size-border-status: 0.2rem;
|
|
7797
|
-
--dt-inputs-size-radius-xs: 0.4rem;
|
|
7798
|
-
--dt-inputs-size-radius-sm: 0.8rem;
|
|
7799
|
-
--dt-inputs-size-radius-md: 0.8rem;
|
|
7800
|
-
--dt-inputs-size-radius-lg: 1.2rem;
|
|
7801
|
-
--dt-inputs-size-radius-xl: 1.6rem;
|
|
7802
|
-
--dt-inputs-line-height-default: 1.2;
|
|
7803
|
-
--dt-inputs-font-size-xs: 1.2rem;
|
|
7804
|
-
--dt-inputs-font-size-sm: 1.2rem;
|
|
7805
|
-
--dt-inputs-font-size-md: 1.5rem;
|
|
7806
|
-
--dt-inputs-font-size-lg: 1.9rem;
|
|
7807
|
-
--dt-inputs-font-size-xl: 2.7rem;
|
|
7808
|
-
--dt-inputs-color-foreground-default: #3A3A3A;
|
|
7809
|
-
--dt-inputs-color-foreground-placeholder: #808080;
|
|
7810
|
-
--dt-inputs-color-foreground-disabled: #808080;
|
|
7811
|
-
--dt-inputs-color-border-default: #0000001a;
|
|
7812
|
-
--dt-inputs-color-border-focus: #51A0FE;
|
|
7813
|
-
--dt-inputs-color-border-critical: #EC0E0E;
|
|
7814
|
-
--dt-inputs-color-border-success: #1AA340;
|
|
7815
|
-
--dt-inputs-color-border-warning: #D28F2B;
|
|
7816
|
-
--dt-inputs-color-border-disabled: transparent;
|
|
7817
|
-
--dt-inputs-color-background-default: #00000008;
|
|
7818
|
-
--dt-inputs-color-background-focus: #00000003;
|
|
7819
|
-
--dt-inputs-color-background-disabled: #0000001f;
|
|
7820
|
-
--dt-action-color-foreground-base-default: #7C52FF;
|
|
7821
|
-
--dt-action-color-foreground-base-hover: #551FFF;
|
|
7822
|
-
--dt-action-color-foreground-base-active: #551FFF;
|
|
7823
|
-
--dt-action-color-foreground-base-primary-default: #ffffff;
|
|
7824
|
-
--dt-action-color-foreground-critical-default: #EC0E0E;
|
|
7825
|
-
--dt-action-color-foreground-critical-hover: #D90D0D;
|
|
7826
|
-
--dt-action-color-foreground-critical-active: #D90D0D;
|
|
7827
|
-
--dt-action-color-foreground-critical-primary-default: #ffffff;
|
|
7828
|
-
--dt-action-color-foreground-inverted-default: #ffffff;
|
|
7829
|
-
--dt-action-color-foreground-inverted-hover: #ffffff;
|
|
7830
|
-
--dt-action-color-foreground-inverted-active: #ffffff;
|
|
7831
|
-
--dt-action-color-foreground-inverted-primary-default: #7C52FF;
|
|
7832
|
-
--dt-action-color-foreground-inverted-primary-hover: #3A1D95;
|
|
7833
|
-
--dt-action-color-foreground-inverted-primary-active: #3A1D95;
|
|
7834
|
-
--dt-action-color-foreground-muted-default: #3A3A3A;
|
|
7835
|
-
--dt-action-color-foreground-muted-hover: #3A3A3A;
|
|
7836
|
-
--dt-action-color-foreground-muted-active: #3A3A3A;
|
|
7837
|
-
--dt-action-color-foreground-disabled-default: #808080;
|
|
7838
|
-
--dt-action-color-background-base-default: transparent;
|
|
7839
|
-
--dt-action-color-background-base-hover: #7c52ff24;
|
|
7840
|
-
--dt-action-color-background-base-active: #7c52ff2e;
|
|
7841
|
-
--dt-action-color-background-base-primary-default: #7C52FF;
|
|
7842
|
-
--dt-action-color-background-base-primary-hover: #6533FF;
|
|
7843
|
-
--dt-action-color-background-base-primary-active: #4D14FF;
|
|
7844
|
-
--dt-action-color-background-critical-default: transparent;
|
|
7845
|
-
--dt-action-color-background-critical-hover: #ec0e0e08;
|
|
7846
|
-
--dt-action-color-background-critical-active: #ec0e0e17;
|
|
7847
|
-
--dt-action-color-background-critical-primary-default: #EC0E0E;
|
|
7848
|
-
--dt-action-color-background-critical-primary-hover: #D90D0D;
|
|
7849
|
-
--dt-action-color-background-critical-primary-active: #C50C0C;
|
|
7850
|
-
--dt-action-color-background-inverted-default: transparent;
|
|
7851
|
-
--dt-action-color-background-inverted-hover: #ffffff26;
|
|
7852
|
-
--dt-action-color-background-inverted-active: #ffffff4d;
|
|
7853
|
-
--dt-action-color-background-inverted-primary-default: #ffffff;
|
|
7854
|
-
--dt-action-color-background-inverted-primary-hover: #F5F0FF;
|
|
7855
|
-
--dt-action-color-background-inverted-primary-active: #E1D1FF;
|
|
7856
|
-
--dt-action-color-background-muted-default: transparent;
|
|
7857
|
-
--dt-action-color-background-muted-hover: #2222221a;
|
|
7858
|
-
--dt-action-color-background-muted-active: #22222229;
|
|
7859
|
-
--dt-action-color-background-disabled-default: #D2D2D2;
|
|
7860
|
-
--dt-action-color-border-base-outlined-default: #7C52FF;
|
|
7861
|
-
--dt-action-color-border-critical-outlined-default: #EC0E0E;
|
|
7862
|
-
--dt-action-color-border-inverted-outlined-default: #F9F9F9;
|
|
7863
|
-
--dt-action-color-border-muted-outlined-default: #555555;
|
|
7864
|
-
--dt-theme-color-base: #000000;
|
|
7865
|
-
--dt-theme-topbar-color-foreground: #000000bf;
|
|
7866
|
-
--dt-theme-topbar-color-background: #F9F9F9;
|
|
7867
|
-
--dt-theme-topbar-field-color-foreground: #00000080;
|
|
7868
|
-
--dt-theme-topbar-field-color-foreground-hover: #000000bf;
|
|
7869
|
-
--dt-theme-topbar-field-color-background: #0000000d;
|
|
7870
|
-
--dt-theme-topbar-field-color-background-hover: #fff;
|
|
7871
|
-
--dt-theme-topbar-field-color-border: #0000;
|
|
7872
|
-
--dt-theme-topbar-field-color-border-hover: #0000001a;
|
|
7873
|
-
--dt-theme-topbar-field-color-border-active: #0003;
|
|
7874
|
-
--dt-theme-topbar-button-color-foreground: #000000a6;
|
|
7875
|
-
--dt-theme-topbar-button-color-foreground-hover: #000000;
|
|
7876
|
-
--dt-theme-topbar-button-color-background: #0000;
|
|
7877
|
-
--dt-theme-topbar-button-color-background-hover: #0000000d;
|
|
7878
|
-
--dt-theme-topbar-button-color-background-active: #0000001a;
|
|
7879
|
-
--dt-theme-topbar-profile-color-foreground: #000000bf;
|
|
7880
|
-
--dt-theme-topbar-profile-color-foreground-inverted: #ffffffbf;
|
|
7881
|
-
--dt-theme-topbar-profile-color-background: #0000000d;
|
|
7882
|
-
--dt-theme-topbar-profile-color-background-inverted: #000000bf;
|
|
7883
|
-
--dt-theme-topbar-profile-color-background-hover: #0000001a;
|
|
7884
|
-
--dt-theme-topbar-profile-color-background-active: #00000024;
|
|
7885
|
-
--dt-theme-sidebar-color-foreground: #3A3A3A;
|
|
7886
|
-
--dt-theme-sidebar-color-foreground-unread: #000000;
|
|
7887
|
-
--dt-theme-sidebar-color-background: #F9F9F9;
|
|
7888
|
-
--dt-theme-sidebar-icon-color-foreground: #3A3A3A;
|
|
7889
|
-
--dt-theme-sidebar-status-color-foreground: #555555;
|
|
7890
|
-
--dt-theme-sidebar-row-color-background: #0000;
|
|
7891
|
-
--dt-theme-sidebar-row-color-background-hover: #0000001f;
|
|
7892
|
-
--dt-theme-sidebar-row-color-background-active: #00000029;
|
|
7893
|
-
--dt-theme-sidebar-selected-row-color-foreground: #000000;
|
|
7894
|
-
--dt-theme-sidebar-selected-row-color-background: #0000001a;
|
|
7895
|
-
--dt-theme-sidebar-section-color-foreground: #555555;
|
|
7896
|
-
--dt-theme-presence-color-background-available: #1AA340;
|
|
7897
|
-
--dt-theme-presence-color-background-busy-unavailable: #EC0E0E;
|
|
7898
|
-
--dt-theme-presence-color-background-busy: #F6AB3C;
|
|
7899
|
-
--dt-theme-presence-color-background-offline: #ffffff;
|
|
7900
|
-
--dt-theme-mention-color-foreground: #ffffff;
|
|
7901
|
-
--dt-theme-mention-color-background: #7C52FF;
|
|
7902
|
-
--dt-opacity-0: 0;
|
|
7903
|
-
--dt-opacity-100: 0.05;
|
|
7904
|
-
--dt-opacity-200: 0.1;
|
|
7905
|
-
--dt-opacity-300: 0.2;
|
|
7906
|
-
--dt-opacity-400: 0.25;
|
|
7907
|
-
--dt-opacity-500: 0.3;
|
|
7908
|
-
--dt-opacity-600: 0.4;
|
|
7909
|
-
--dt-opacity-700: 0.5;
|
|
7910
|
-
--dt-opacity-800: 0.6;
|
|
7911
|
-
--dt-opacity-900: 0.7;
|
|
7912
|
-
--dt-opacity-1000: 0.75;
|
|
7913
|
-
--dt-opacity-1100: 0.8;
|
|
7914
|
-
--dt-opacity-1200: 0.9;
|
|
7915
|
-
--dt-opacity-1300: 1;
|
|
7916
|
-
--dt-font-family-body: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji", -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
|
|
7917
|
-
--dt-font-family-expressive: Archivo,-apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji", -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
|
|
7918
|
-
--dt-font-family-mono: SFMono-Regular, "SF Mono", Consolas, "Liberation Mono", Menlo, Courier, monospace, SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier, monospace;
|
|
7919
|
-
--dt-font-size-100: 1.2rem;
|
|
7920
|
-
--dt-font-size-200: 1.5rem;
|
|
7921
|
-
--dt-font-size-300: 1.9rem;
|
|
7922
|
-
--dt-font-size-400: 2.7rem;
|
|
7923
|
-
--dt-font-size-500: 3.8rem;
|
|
7924
|
-
--dt-font-size-root: 1rem;
|
|
7925
|
-
--dt-font-line-height-100: 1;
|
|
7926
|
-
--dt-font-line-height-200: 1.2;
|
|
7927
|
-
--dt-font-line-height-300: 1.4;
|
|
7928
|
-
--dt-font-line-height-400: 1.6;
|
|
7929
|
-
--dt-font-line-height-500: 1.8;
|
|
7930
|
-
--dt-font-line-height-600: 2;
|
|
7931
|
-
--dt-font-weight-normal: 400;
|
|
7932
|
-
--dt-font-weight-medium: 500;
|
|
7933
|
-
--dt-font-weight-semi-bold: 600;
|
|
7934
|
-
--dt-font-weight-bold: 700;
|
|
7935
|
-
--dt-font-text-case-uppercase: uppercase;
|
|
7936
|
-
--dt-font-text-case-lowercase: lowercase;
|
|
7937
|
-
--dt-font-text-case-capitalize: capitalize;
|
|
7938
|
-
--dt-font-text-case-none: none;
|
|
7939
|
-
--dt-space-0: 0;
|
|
7551
|
+
--dt-space-0: 0rem;
|
|
7940
7552
|
--dt-space-50: 0.05rem;
|
|
7941
7553
|
--dt-space-100: 0.1rem;
|
|
7942
7554
|
--dt-space-200: 0.2rem;
|
|
@@ -8037,835 +7649,537 @@ body {
|
|
|
8037
7649
|
--dt-space-95-percent: 95%;
|
|
8038
7650
|
--dt-space-100-percent: 100%;
|
|
8039
7651
|
--dt-space-base: 0.8rem;
|
|
8040
|
-
--dt-shadow-small-
|
|
8041
|
-
--dt-shadow-small-
|
|
8042
|
-
--dt-shadow-small-
|
|
8043
|
-
--dt-shadow-small-
|
|
8044
|
-
--dt-shadow-small-
|
|
8045
|
-
--dt-shadow-small-
|
|
8046
|
-
--dt-shadow-medium-
|
|
8047
|
-
--dt-shadow-medium-
|
|
8048
|
-
--dt-shadow-medium-
|
|
8049
|
-
--dt-shadow-medium-
|
|
8050
|
-
--dt-shadow-medium-
|
|
8051
|
-
--dt-shadow-medium-
|
|
8052
|
-
--dt-shadow-large-
|
|
8053
|
-
--dt-shadow-large-
|
|
8054
|
-
--dt-shadow-large-
|
|
8055
|
-
--dt-shadow-large-
|
|
8056
|
-
--dt-shadow-large-
|
|
8057
|
-
--dt-shadow-large-
|
|
8058
|
-
--dt-shadow-extra-large-
|
|
8059
|
-
--dt-shadow-extra-large-
|
|
8060
|
-
--dt-shadow-extra-large-
|
|
8061
|
-
--dt-shadow-extra-large-
|
|
8062
|
-
--dt-shadow-extra-large-
|
|
8063
|
-
--dt-shadow-extra-large-
|
|
8064
|
-
--dt-shadow-card-
|
|
8065
|
-
--dt-shadow-card-
|
|
8066
|
-
--dt-shadow-card-
|
|
8067
|
-
--dt-shadow-card-
|
|
8068
|
-
--dt-shadow-card-
|
|
8069
|
-
--dt-shadow-card-0-type: dropShadow;
|
|
8070
|
-
--dt-shadow-card-1-x: 0;
|
|
8071
|
-
--dt-shadow-card-1-y: 0.2rem;
|
|
8072
|
-
--dt-shadow-card-1-blur: 0.4rem;
|
|
8073
|
-
--dt-shadow-card-1-spread: 0;
|
|
8074
|
-
--dt-shadow-card-1-color: #0000000a;
|
|
7652
|
+
--dt-shadow-small-1-x: 0rem;
|
|
7653
|
+
--dt-shadow-small-1-y: 0.2rem;
|
|
7654
|
+
--dt-shadow-small-1-blur: 0.4rem;
|
|
7655
|
+
--dt-shadow-small-1-spread: 0rem;
|
|
7656
|
+
--dt-shadow-small-1-color: rgba(0, 0, 0, 0.15);
|
|
7657
|
+
--dt-shadow-small-1-type: dropShadow;
|
|
7658
|
+
--dt-shadow-medium-1-x: 0rem;
|
|
7659
|
+
--dt-shadow-medium-1-y: 0.2rem;
|
|
7660
|
+
--dt-shadow-medium-1-blur: 0.8rem;
|
|
7661
|
+
--dt-shadow-medium-1-spread: 0rem;
|
|
7662
|
+
--dt-shadow-medium-1-color: rgba(0, 0, 0, 0.25);
|
|
7663
|
+
--dt-shadow-medium-1-type: dropShadow;
|
|
7664
|
+
--dt-shadow-large-1-x: 0rem;
|
|
7665
|
+
--dt-shadow-large-1-y: 0.2rem;
|
|
7666
|
+
--dt-shadow-large-1-blur: 1.6rem;
|
|
7667
|
+
--dt-shadow-large-1-spread: 0rem;
|
|
7668
|
+
--dt-shadow-large-1-color: rgba(0, 0, 0, 0.3);
|
|
7669
|
+
--dt-shadow-large-1-type: dropShadow;
|
|
7670
|
+
--dt-shadow-extra-large-1-x: 0rem;
|
|
7671
|
+
--dt-shadow-extra-large-1-y: 0.2rem;
|
|
7672
|
+
--dt-shadow-extra-large-1-blur: 3.2rem;
|
|
7673
|
+
--dt-shadow-extra-large-1-spread: 0rem;
|
|
7674
|
+
--dt-shadow-extra-large-1-color: rgba(0, 0, 0, 0.3);
|
|
7675
|
+
--dt-shadow-extra-large-1-type: dropShadow;
|
|
7676
|
+
--dt-shadow-card-1-x: 0rem;
|
|
7677
|
+
--dt-shadow-card-1-y: 0.1rem;
|
|
7678
|
+
--dt-shadow-card-1-blur: 0.2rem;
|
|
7679
|
+
--dt-shadow-card-1-spread: 0rem;
|
|
7680
|
+
--dt-shadow-card-1-color: rgba(0, 0, 0, 0.03);
|
|
8075
7681
|
--dt-shadow-card-1-type: dropShadow;
|
|
8076
|
-
--dt-shadow-card-2-x:
|
|
7682
|
+
--dt-shadow-card-2-x: 0rem;
|
|
8077
7683
|
--dt-shadow-card-2-y: 0.2rem;
|
|
8078
|
-
--dt-shadow-card-2-blur:
|
|
8079
|
-
--dt-shadow-card-2-spread:
|
|
8080
|
-
--dt-shadow-card-2-color:
|
|
7684
|
+
--dt-shadow-card-2-blur: 0.4rem;
|
|
7685
|
+
--dt-shadow-card-2-spread: 0rem;
|
|
7686
|
+
--dt-shadow-card-2-color: rgba(0, 0, 0, 0.04);
|
|
8081
7687
|
--dt-shadow-card-2-type: dropShadow;
|
|
8082
|
-
--dt-shadow-
|
|
8083
|
-
--dt-shadow-
|
|
8084
|
-
--dt-shadow-
|
|
8085
|
-
--dt-shadow-
|
|
8086
|
-
--dt-shadow-
|
|
8087
|
-
--dt-shadow-
|
|
8088
|
-
--dt-shadow-focus-1-x:
|
|
8089
|
-
--dt-shadow-focus-1-y:
|
|
8090
|
-
--dt-shadow-focus-1-blur:
|
|
8091
|
-
--dt-shadow-focus-1-spread: 0.
|
|
8092
|
-
--dt-shadow-focus-1-color: #
|
|
7688
|
+
--dt-shadow-card-3-x: 0rem;
|
|
7689
|
+
--dt-shadow-card-3-y: 0.2rem;
|
|
7690
|
+
--dt-shadow-card-3-blur: 1.6rem;
|
|
7691
|
+
--dt-shadow-card-3-spread: 0rem;
|
|
7692
|
+
--dt-shadow-card-3-color: rgba(0, 0, 0, 0.08);
|
|
7693
|
+
--dt-shadow-card-3-type: dropShadow;
|
|
7694
|
+
--dt-shadow-focus-1-x: 0rem;
|
|
7695
|
+
--dt-shadow-focus-1-y: 0rem;
|
|
7696
|
+
--dt-shadow-focus-1-blur: 0rem;
|
|
7697
|
+
--dt-shadow-focus-1-spread: 0.1rem;
|
|
7698
|
+
--dt-shadow-focus-1-color: #F9F9F9;
|
|
8093
7699
|
--dt-shadow-focus-1-type: dropShadow;
|
|
8094
|
-
--dt-shadow-focus-
|
|
8095
|
-
--dt-shadow-focus-
|
|
8096
|
-
--dt-shadow-focus-
|
|
8097
|
-
--dt-shadow-focus-
|
|
8098
|
-
--dt-shadow-focus-
|
|
8099
|
-
--dt-shadow-focus-
|
|
8100
|
-
|
|
8101
|
-
|
|
8102
|
-
|
|
8103
|
-
|
|
8104
|
-
|
|
8105
|
-
|
|
8106
|
-
|
|
8107
|
-
.dialtone-theme-dark {
|
|
8108
|
-
--dt-radio-color-border-unchecked: #808080;
|
|
8109
|
-
--dt-radio-color-border-checked: #7C52FF;
|
|
8110
|
-
--dt-radio-color-background-checked: #7C52FF;
|
|
8111
|
-
--dt-radio-size-width: 1.6rem;
|
|
8112
|
-
--dt-radio-size-height: 1.6rem;
|
|
8113
|
-
--dt-radio-size-radius: 50%;
|
|
8114
|
-
--dt-icon-size-100: 1.2rem;
|
|
8115
|
-
--dt-icon-size-200: 1.4rem;
|
|
8116
|
-
--dt-icon-size-300: 1.8rem;
|
|
8117
|
-
--dt-icon-size-400: 2rem;
|
|
8118
|
-
--dt-icon-size-500: 2.4rem;
|
|
8119
|
-
--dt-icon-size-600: 3.2rem;
|
|
8120
|
-
--dt-icon-size-700: 3.8rem;
|
|
8121
|
-
--dt-icon-size-800: 4.8rem;
|
|
8122
|
-
--dt-icon-size-border-100: 0.1rem;
|
|
8123
|
-
--dt-icon-size-border-200: 0.125rem;
|
|
8124
|
-
--dt-icon-size-border-300: 0.15rem;
|
|
8125
|
-
--dt-icon-size-border-400: 0.175rem;
|
|
8126
|
-
--dt-icon-size-border-500: 0.175rem;
|
|
8127
|
-
--dt-icon-size-border-600: 0.25rem;
|
|
8128
|
-
--dt-icon-size-border-700: 0.275rem;
|
|
8129
|
-
--dt-icon-size-border-800: 0.35rem;
|
|
8130
|
-
--dt-checkbox-color-border-unchecked: #808080;
|
|
8131
|
-
--dt-checkbox-color-border-checked: #7C52FF;
|
|
8132
|
-
--dt-checkbox-color-background-checked: #7C52FF;
|
|
8133
|
-
--dt-checkbox-size-width: 1.6rem;
|
|
8134
|
-
--dt-checkbox-size-height: 1.6rem;
|
|
8135
|
-
--dt-checkbox-size-radius: 0.4rem;
|
|
8136
|
-
--dt-badge-color-background-default: #e6e6e626;
|
|
8137
|
-
--dt-badge-color-background-info: #01326D;
|
|
8138
|
-
--dt-badge-color-background-success: #124620;
|
|
8139
|
-
--dt-badge-color-background-warning: #815008;
|
|
8140
|
-
--dt-badge-color-background-critical: #5B0505;
|
|
8141
|
-
--dt-badge-color-background-bulletin: #7C52FF;
|
|
8142
|
-
--dt-badge-color-background-ai: linear-gradient(135deg, #F9008E 10%, #7C52FF 90%);
|
|
8143
|
-
--dt-badge-color-foreground-default: #E6E6E6;
|
|
8144
|
-
--dt-badge-color-foreground-bulletin: #ffffff;
|
|
8145
|
-
--dt-avatar-color-foreground: #000000;
|
|
8146
|
-
--dt-avatar-color-background-100: #1aa340;
|
|
8147
|
-
--dt-avatar-color-background-200: #aaff83;
|
|
8148
|
-
--dt-avatar-color-background-300: #adea88;
|
|
8149
|
-
--dt-avatar-color-background-400: #77eca6;
|
|
8150
|
-
--dt-avatar-color-background-500: #7aedbd;
|
|
8151
|
-
--dt-avatar-color-background-600: #77deec;
|
|
8152
|
-
--dt-avatar-color-background-700: #5ed8ff;
|
|
8153
|
-
--dt-avatar-color-background-800: #99e7ff;
|
|
8154
|
-
--dt-avatar-color-background-900: #51a0fe;
|
|
8155
|
-
--dt-avatar-color-background-1000: #b6cfff;
|
|
8156
|
-
--dt-avatar-color-background-1100: #f1b7e8;
|
|
8157
|
-
--dt-avatar-color-background-1200: #ec77bd;
|
|
8158
|
-
--dt-avatar-color-background-1300: #ff67be;
|
|
8159
|
-
--dt-avatar-color-background-1400: #f87e7e;
|
|
8160
|
-
--dt-avatar-color-background-1500: #eca877;
|
|
8161
|
-
--dt-avatar-color-background-1600: #ffbe41;
|
|
8162
|
-
--dt-avatar-color-background-1700: #ffd646;
|
|
8163
|
-
--dt-avatar-color-background-1800: #f1dab7;
|
|
8164
|
-
--dt-avatar-color-background-000: #e0e0e0;
|
|
8165
|
-
--dt-color-foreground-primary: #e6e6e6;
|
|
8166
|
-
--dt-color-foreground-secondary: #c2c2c2;
|
|
8167
|
-
--dt-color-foreground-tertiary: #aaaaaa;
|
|
8168
|
-
--dt-color-foreground-muted: rgba(212, 212, 212, 0.6);
|
|
8169
|
-
--dt-color-foreground-placeholder: #aaaaaa;
|
|
8170
|
-
--dt-color-foreground-disabled: #aaaaaa;
|
|
8171
|
-
--dt-color-foreground-critical: #ff8585;
|
|
8172
|
-
--dt-color-foreground-critical-strong: #ffa4a4;
|
|
8173
|
-
--dt-color-foreground-success: #b0ffa3;
|
|
8174
|
-
--dt-color-foreground-success-strong: #cbffc3;
|
|
8175
|
-
--dt-color-foreground-warning: #ffdb80;
|
|
8176
|
-
--dt-color-foreground-primary-inverted: #000000;
|
|
8177
|
-
--dt-color-foreground-secondary-inverted: #3a3a3a;
|
|
8178
|
-
--dt-color-foreground-tertiary-inverted: #555555;
|
|
8179
|
-
--dt-color-foreground-muted-inverted: rgba(38, 38, 38, 0.6);
|
|
8180
|
-
--dt-color-foreground-placeholder-inverted: #808080;
|
|
8181
|
-
--dt-color-foreground-disabled-inverted: #808080;
|
|
8182
|
-
--dt-color-foreground-critical-inverted: #ec0e0e;
|
|
8183
|
-
--dt-color-foreground-critical-strong-inverted: #b70b0b;
|
|
8184
|
-
--dt-color-foreground-success-inverted: #1aa340;
|
|
8185
|
-
--dt-color-foreground-success-strong-inverted: #124620;
|
|
8186
|
-
--dt-color-foreground-warning-inverted: #815008;
|
|
8187
|
-
--dt-color-link-primary: #b790ff;
|
|
8188
|
-
--dt-color-link-critical: #ff8585;
|
|
8189
|
-
--dt-color-link-success: #b0ffa3;
|
|
8190
|
-
--dt-color-link-warning: #ffdb80;
|
|
8191
|
-
--dt-color-link-disabled: #aaaaaa;
|
|
8192
|
-
--dt-color-link-primary-hover: #dac7ff;
|
|
8193
|
-
--dt-color-link-critical-hover: #ffe5e6;
|
|
8194
|
-
--dt-color-link-success-hover: #edf9eb;
|
|
8195
|
-
--dt-color-link-warning-hover: #fff4cc;
|
|
8196
|
-
--dt-color-link-disabled-hover: #aaaaaa;
|
|
8197
|
-
--dt-color-link-primary-inverted: #7c52ff;
|
|
8198
|
-
--dt-color-link-primary-inverted-hover: #3a1d95;
|
|
8199
|
-
--dt-color-link-critical-inverted: #ec0e0e;
|
|
8200
|
-
--dt-color-link-critical-inverted-hover: #b70b0b;
|
|
8201
|
-
--dt-color-link-success-inverted: #1aa340;
|
|
8202
|
-
--dt-color-link-success-inverted-hover: #124620;
|
|
8203
|
-
--dt-color-link-warning-inverted: #815008;
|
|
8204
|
-
--dt-color-link-warning-inverted-hover: #262626;
|
|
8205
|
-
--dt-color-link-disabled-inverted: #808080;
|
|
8206
|
-
--dt-color-link-disabled-inverted-hover: #808080;
|
|
8207
|
-
--dt-color-link-muted: #c2c2c2;
|
|
8208
|
-
--dt-color-link-muted-inverted: #3a3a3a;
|
|
8209
|
-
--dt-color-link-muted-hover: #e6e6e6;
|
|
8210
|
-
--dt-color-link-muted-inverted-hover: #000000;
|
|
8211
|
-
--dt-color-surface-primary: #1f1f1f;
|
|
8212
|
-
--dt-color-surface-secondary: #262626;
|
|
8213
|
-
--dt-color-surface-moderate: #3a3a3a;
|
|
8214
|
-
--dt-color-surface-bold: #555555;
|
|
8215
|
-
--dt-color-surface-strong: #aaaaaa;
|
|
8216
|
-
--dt-color-surface-contrast: #e6e6e6;
|
|
8217
|
-
--dt-color-surface-critical: #5b0505;
|
|
8218
|
-
--dt-color-surface-critical-subtle: #2d0202;
|
|
8219
|
-
--dt-color-surface-warning: #815008;
|
|
8220
|
-
--dt-color-surface-warning-subtle: #402804;
|
|
8221
|
-
--dt-color-surface-success: #124620;
|
|
8222
|
-
--dt-color-surface-success-subtle: #092310;
|
|
8223
|
-
--dt-color-surface-info: #01326d;
|
|
8224
|
-
--dt-color-surface-info-subtle: #011e41;
|
|
8225
|
-
--dt-color-surface-secondary-opaque: rgba(230, 230, 230, 0.06);
|
|
8226
|
-
--dt-color-surface-moderate-opaque: rgba(230, 230, 230, 0.15);
|
|
8227
|
-
--dt-color-surface-bold-opaque: rgba(230, 230, 230, 0.27);
|
|
8228
|
-
--dt-color-surface-strong-opaque: rgba(230, 230, 230, 0.65);
|
|
8229
|
-
--dt-color-surface-contrast-opaque: rgba(230, 230, 230, 0.96);
|
|
8230
|
-
--dt-color-surface-critical-opaque: rgba(183, 11, 11, 0.32);
|
|
8231
|
-
--dt-color-surface-critical-subtle-opaque: rgba(45, 2, 2, 0.5);
|
|
8232
|
-
--dt-color-surface-warning-opaque: rgba(210, 143, 43, 0.48);
|
|
8233
|
-
--dt-color-surface-warning-subtle-opaque: rgba(64, 40, 4, 0.5);
|
|
8234
|
-
--dt-color-surface-success-opaque: rgba(26, 163, 65, 0.26);
|
|
8235
|
-
--dt-color-surface-success-subtle-opaque: rgba(9, 35, 16, 0.5);
|
|
8236
|
-
--dt-color-surface-info-opaque: rgba(23, 105, 198, 0.29);
|
|
8237
|
-
--dt-color-surface-info-subtle-opaque: rgba(1, 30, 65, 0.5);
|
|
8238
|
-
--dt-color-surface-backdrop: rgba(0, 0, 0, 0.7);
|
|
8239
|
-
--dt-color-surface-critical-strong: #ff8585;
|
|
8240
|
-
--dt-color-surface-warning-strong: #d28f2b;
|
|
8241
|
-
--dt-color-surface-success-strong: #b0ffa3;
|
|
8242
|
-
--dt-color-surface-info-strong: #99c8ff;
|
|
8243
|
-
--dt-color-border-subtle: rgba(255, 255, 255, 0.14);
|
|
8244
|
-
--dt-color-border-default: rgba(255, 255, 255, 0.22);
|
|
8245
|
-
--dt-color-border-moderate: rgba(255, 255, 255, 0.36);
|
|
8246
|
-
--dt-color-border-bold: rgba(255, 255, 255, 0.5);
|
|
8247
|
-
--dt-color-border-subtle-inverted: rgba(0, 0, 0, 0.1);
|
|
8248
|
-
--dt-color-border-default-inverted: rgba(0, 0, 0, 0.18);
|
|
8249
|
-
--dt-color-border-moderate-inverted: rgba(0, 0, 0, 0.34);
|
|
8250
|
-
--dt-color-border-bold-inverted: rgba(0, 0, 0, 0.5);
|
|
8251
|
-
--dt-color-border-focus: #51a0fe;
|
|
8252
|
-
--dt-color-border-critical: #ff8585;
|
|
8253
|
-
--dt-color-border-critical-inverted: #ec0e0e;
|
|
8254
|
-
--dt-color-border-critical-strong: #ffe5e6;
|
|
8255
|
-
--dt-color-border-success: #b0ffa3;
|
|
8256
|
-
--dt-color-border-success-inverted: #1aa340;
|
|
8257
|
-
--dt-color-border-warning: #ffdb80;
|
|
8258
|
-
--dt-color-border-warning-inverted: #d28f2b;
|
|
8259
|
-
--dt-color-border-warning-strong: #fff4cc;
|
|
8260
|
-
--dt-color-border-brand-inverted: #7c52ff;
|
|
8261
|
-
--dt-color-border-critical-subtle-inverted: #ff8585;
|
|
8262
|
-
--dt-color-border-success-subtle-inverted: #b0ffa3;
|
|
8263
|
-
--dt-color-border-warning-subtle-inverted: #ffdb80;
|
|
8264
|
-
--dt-color-border-brand-subtle-inverted: #dac7ff;
|
|
8265
|
-
--dt-color-border-critical-strong-inverted: #b70b0b;
|
|
8266
|
-
--dt-color-border-success-strong-inverted: #124620;
|
|
8267
|
-
--dt-color-border-warning-strong-inverted: #815008;
|
|
8268
|
-
--dt-color-border-brand-strong-inverted: #3a1d95;
|
|
8269
|
-
--dt-color-border-brand: #7c52ff;
|
|
8270
|
-
--dt-color-border-ai: #000000;
|
|
8271
|
-
--dt-color-border-accent: #f9008e;
|
|
8272
|
-
--dt-color-border-critical-subtle: #b70b0b;
|
|
8273
|
-
--dt-color-border-success-subtle: #1aa340;
|
|
8274
|
-
--dt-color-border-success-strong: #edf9eb;
|
|
8275
|
-
--dt-color-border-warning-subtle: #d28f2b;
|
|
8276
|
-
--dt-color-border-brand-subtle: #3a1d95;
|
|
8277
|
-
--dt-color-border-brand-strong: #dac7ff;
|
|
8278
|
-
--dt-color-black-100: #000000;
|
|
8279
|
-
--dt-color-black-200: #262626;
|
|
8280
|
-
--dt-color-black-300: #3a3a3a;
|
|
8281
|
-
--dt-color-black-400: #555555;
|
|
8282
|
-
--dt-color-black-500: #808080;
|
|
8283
|
-
--dt-color-black-600: #aaaaaa;
|
|
8284
|
-
--dt-color-black-700: #c2c2c2;
|
|
8285
|
-
--dt-color-black-800: #d4d4d4;
|
|
8286
|
-
--dt-color-black-900: #e6e6e6;
|
|
8287
|
-
--dt-color-purple-100: #10022c;
|
|
8288
|
-
--dt-color-purple-200: #3a1d95;
|
|
8289
|
-
--dt-color-purple-300: #7c52ff;
|
|
8290
|
-
--dt-color-purple-400: #ab7eff;
|
|
8291
|
-
--dt-color-purple-500: #dac7ff;
|
|
8292
|
-
--dt-color-purple-600: #f5f0ff;
|
|
8293
|
-
--dt-color-blue-100: #01326d;
|
|
8294
|
-
--dt-color-blue-200: #1768c6;
|
|
8295
|
-
--dt-color-blue-300: #51a0fe;
|
|
8296
|
-
--dt-color-blue-400: #99c8ff;
|
|
8297
|
-
--dt-color-blue-500: #eaf2fa;
|
|
8298
|
-
--dt-color-magenta-100: #541a3b;
|
|
8299
|
-
--dt-color-magenta-200: #8c0e56;
|
|
8300
|
-
--dt-color-magenta-300: #f9008e;
|
|
8301
|
-
--dt-color-magenta-400: #f985c7;
|
|
8302
|
-
--dt-color-magenta-500: #ffe0f2;
|
|
8303
|
-
--dt-color-gold-100: #815008;
|
|
8304
|
-
--dt-color-gold-200: #d28f2b;
|
|
8305
|
-
--dt-color-gold-300: #f6ab3c;
|
|
8306
|
-
--dt-color-gold-400: #ffdb80;
|
|
8307
|
-
--dt-color-gold-500: #fff4cc;
|
|
8308
|
-
--dt-color-green-100: #124620;
|
|
8309
|
-
--dt-color-green-200: #1aa340;
|
|
8310
|
-
--dt-color-green-300: #45f777;
|
|
8311
|
-
--dt-color-green-400: #b0ffa3;
|
|
8312
|
-
--dt-color-green-500: #edf9eb;
|
|
8313
|
-
--dt-color-red-100: #5b0505;
|
|
8314
|
-
--dt-color-red-200: #b70b0b;
|
|
8315
|
-
--dt-color-red-300: #ec0e0e;
|
|
8316
|
-
--dt-color-red-400: #ff8585;
|
|
8317
|
-
--dt-color-red-500: #ffe5e6;
|
|
8318
|
-
--dt-color-tan-100: #121212;
|
|
8319
|
-
--dt-color-tan-200: #3f3d3c;
|
|
8320
|
-
--dt-color-tan-300: #87807b;
|
|
8321
|
-
--dt-color-tan-400: #cec8c4;
|
|
8322
|
-
--dt-color-tan-500: #f2f0ee;
|
|
8323
|
-
--dt-color-neutral-white: #ffffff;
|
|
8324
|
-
--dt-color-neutral-black: #000000;
|
|
8325
|
-
--dt-color-neutral-transparent: rgba(0, 0, 0, 0);
|
|
8326
|
-
--dt-color-gradient-magenta-purple: #000000;
|
|
8327
|
-
--dt-color-brand-purple: #7c52ff;
|
|
8328
|
-
--dt-color-brand-magenta: #f9008e;
|
|
8329
|
-
--dt-inputs-color-foreground-default: #E6E6E6;
|
|
8330
|
-
--dt-inputs-color-foreground-placeholder: #AAAAAA;
|
|
8331
|
-
--dt-inputs-color-foreground-disabled: #AAAAAA;
|
|
8332
|
-
--dt-inputs-color-border-focus: #51A0FE;
|
|
8333
|
-
--dt-inputs-color-border-critical: #FF8585;
|
|
8334
|
-
--dt-inputs-color-border-success: #B0FFA3;
|
|
8335
|
-
--dt-inputs-color-border-warning: #FFDB80;
|
|
8336
|
-
--dt-inputs-color-border-disabled: transparent;
|
|
8337
|
-
--dt-inputs-color-border-default: #ffffff24;
|
|
8338
|
-
--dt-inputs-color-background-default: #e6e6e60f;
|
|
8339
|
-
--dt-inputs-color-background-focus: #e6e6e608;
|
|
8340
|
-
--dt-inputs-color-background-disabled: #e6e6e626;
|
|
8341
|
-
--dt-inputs-size-border-default: 0.15rem;
|
|
8342
|
-
--dt-inputs-size-border-status: 0.2rem;
|
|
8343
|
-
--dt-inputs-size-radius-xs: 0.4rem;
|
|
8344
|
-
--dt-inputs-size-radius-sm: 0.8rem;
|
|
8345
|
-
--dt-inputs-size-radius-md: 0.8rem;
|
|
8346
|
-
--dt-inputs-size-radius-lg: 1.2rem;
|
|
8347
|
-
--dt-inputs-size-radius-xl: 1.6rem;
|
|
8348
|
-
--dt-inputs-line-height-default: 1.2;
|
|
8349
|
-
--dt-inputs-font-size-xs: 1.2rem;
|
|
8350
|
-
--dt-inputs-font-size-sm: 1.2rem;
|
|
8351
|
-
--dt-inputs-font-size-md: 1.5rem;
|
|
8352
|
-
--dt-inputs-font-size-lg: 1.9rem;
|
|
8353
|
-
--dt-inputs-font-size-xl: 2.7rem;
|
|
8354
|
-
--dt-action-color-foreground-base-hover: #be97ff;
|
|
8355
|
-
--dt-action-color-foreground-base-default: #AB7EFF;
|
|
8356
|
-
--dt-action-color-foreground-base-active: #be97ff;
|
|
8357
|
-
--dt-action-color-foreground-base-primary-default: #ffffff;
|
|
8358
|
-
--dt-action-color-foreground-critical-hover: #ffa5a2;
|
|
8359
|
-
--dt-action-color-foreground-critical-default: #FF8585;
|
|
8360
|
-
--dt-action-color-foreground-critical-active: #ffa5a2;
|
|
8361
|
-
--dt-action-color-foreground-critical-primary-default: #ffffff;
|
|
8362
|
-
--dt-action-color-foreground-inverted-default: #000000;
|
|
8363
|
-
--dt-action-color-foreground-inverted-hover: #000000;
|
|
8364
|
-
--dt-action-color-foreground-inverted-active: #000000;
|
|
8365
|
-
--dt-action-color-foreground-inverted-primary-default: #AB7EFF;
|
|
8366
|
-
--dt-action-color-foreground-inverted-primary-hover: #DAC7FF;
|
|
8367
|
-
--dt-action-color-foreground-inverted-primary-active: #DAC7FF;
|
|
8368
|
-
--dt-action-color-foreground-muted-default: #C2C2C2;
|
|
8369
|
-
--dt-action-color-foreground-muted-hover: #C2C2C2;
|
|
8370
|
-
--dt-action-color-foreground-muted-active: #C2C2C2;
|
|
8371
|
-
--dt-action-color-foreground-disabled-default: #AAAAAA;
|
|
8372
|
-
--dt-action-color-background-base-hover: #ab7eff1a;
|
|
8373
|
-
--dt-action-color-background-base-active: #ab7eff33;
|
|
8374
|
-
--dt-action-color-background-base-default: transparent;
|
|
8375
|
-
--dt-action-color-background-base-primary-default: #7C52FF;
|
|
8376
|
-
--dt-action-color-background-base-primary-hover: #6533FF;
|
|
8377
|
-
--dt-action-color-background-base-primary-active: #4D14FF;
|
|
8378
|
-
--dt-action-color-background-critical-hover: #ec0e0e33;
|
|
8379
|
-
--dt-action-color-background-critical-active: #ec0e0e4d;
|
|
8380
|
-
--dt-action-color-background-critical-default: transparent;
|
|
8381
|
-
--dt-action-color-background-critical-primary-default: #EC0E0E;
|
|
8382
|
-
--dt-action-color-background-critical-primary-hover: #D90D0D;
|
|
8383
|
-
--dt-action-color-background-critical-primary-active: #C50C0C;
|
|
8384
|
-
--dt-action-color-background-inverted-primary-active: #3A1D95;
|
|
8385
|
-
--dt-action-color-background-inverted-primary-default: #1f1f1f;
|
|
8386
|
-
--dt-action-color-background-inverted-primary-hover: #10022C;
|
|
8387
|
-
--dt-action-color-background-inverted-default: transparent;
|
|
8388
|
-
--dt-action-color-background-inverted-hover: #1f1f1f26;
|
|
8389
|
-
--dt-action-color-background-inverted-active: #1f1f1f4d;
|
|
8390
|
-
--dt-action-color-background-muted-default: transparent;
|
|
8391
|
-
--dt-action-color-background-muted-hover: #d4d4d41a;
|
|
8392
|
-
--dt-action-color-background-muted-active: #d4d4d429;
|
|
8393
|
-
--dt-action-color-background-disabled-default: #3A3A3A;
|
|
8394
|
-
--dt-action-color-border-base-outlined-default: #AB7EFF;
|
|
8395
|
-
--dt-action-color-border-critical-outlined-default: #FF8585;
|
|
8396
|
-
--dt-action-color-border-inverted-outlined-default: #000000;
|
|
8397
|
-
--dt-action-color-border-muted-outlined-default: #AAAAAA;
|
|
8398
|
-
--dt-theme-topbar-field-color-background-hover: #000;
|
|
8399
|
-
--dt-theme-topbar-field-color-foreground: #e6e6e680;
|
|
8400
|
-
--dt-theme-topbar-field-color-foreground-hover: #e6e6e6bf;
|
|
8401
|
-
--dt-theme-topbar-field-color-background: #e6e6e60d;
|
|
8402
|
-
--dt-theme-topbar-field-color-border: #e6e6e600;
|
|
8403
|
-
--dt-theme-topbar-field-color-border-hover: #e6e6e61a;
|
|
8404
|
-
--dt-theme-topbar-field-color-border-active: #e6e6e633;
|
|
8405
|
-
--dt-theme-topbar-button-color-background-hover: #e6e6e626;
|
|
8406
|
-
--dt-theme-topbar-button-color-foreground: #e6e6e6a6;
|
|
8407
|
-
--dt-theme-topbar-button-color-foreground-hover: #E6E6E6;
|
|
8408
|
-
--dt-theme-topbar-button-color-background: #e6e6e600;
|
|
8409
|
-
--dt-theme-topbar-button-color-background-active: #e6e6e61a;
|
|
8410
|
-
--dt-theme-topbar-color-foreground: #e6e6e6bf;
|
|
8411
|
-
--dt-theme-topbar-color-background: #262626;
|
|
8412
|
-
--dt-theme-topbar-profile-color-foreground: #e6e6e6bf;
|
|
8413
|
-
--dt-theme-topbar-profile-color-foreground-inverted: #000000bf;
|
|
8414
|
-
--dt-theme-topbar-profile-color-background: #e6e6e60d;
|
|
8415
|
-
--dt-theme-topbar-profile-color-background-inverted: #e6e6e6bf;
|
|
8416
|
-
--dt-theme-topbar-profile-color-background-hover: #e6e6e61a;
|
|
8417
|
-
--dt-theme-topbar-profile-color-background-active: #e6e6e624;
|
|
8418
|
-
--dt-theme-sidebar-row-color-background-hover: #e6e6e62e;
|
|
8419
|
-
--dt-theme-sidebar-row-color-background-active: #e6e6e63d;
|
|
8420
|
-
--dt-theme-sidebar-row-color-background: #e6e6e600;
|
|
8421
|
-
--dt-theme-sidebar-selected-row-color-background: #e6e6e633;
|
|
8422
|
-
--dt-theme-sidebar-selected-row-color-foreground: #E6E6E6;
|
|
8423
|
-
--dt-theme-sidebar-color-foreground: #C2C2C2;
|
|
8424
|
-
--dt-theme-sidebar-color-foreground-unread: #E6E6E6;
|
|
8425
|
-
--dt-theme-sidebar-color-background: #262626;
|
|
8426
|
-
--dt-theme-sidebar-icon-color-foreground: #C2C2C2;
|
|
8427
|
-
--dt-theme-sidebar-status-color-foreground: #AAAAAA;
|
|
8428
|
-
--dt-theme-sidebar-section-color-foreground: #AAAAAA;
|
|
8429
|
-
--dt-theme-color-base: #E6E6E6;
|
|
8430
|
-
--dt-theme-presence-color-background-available: #B0FFA3;
|
|
8431
|
-
--dt-theme-presence-color-background-busy-unavailable: #EC0E0E;
|
|
8432
|
-
--dt-theme-presence-color-background-busy: #F6AB3C;
|
|
8433
|
-
--dt-theme-presence-color-background-offline: #ffffff;
|
|
8434
|
-
--dt-theme-mention-color-foreground: #ffffff;
|
|
8435
|
-
--dt-theme-mention-color-background: #7C52FF;
|
|
8436
|
-
--dt-typography-body-small-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
7700
|
+
--dt-shadow-focus-2-x: 0rem;
|
|
7701
|
+
--dt-shadow-focus-2-y: 0rem;
|
|
7702
|
+
--dt-shadow-focus-2-blur: 0rem;
|
|
7703
|
+
--dt-shadow-focus-2-spread: 0.4rem;
|
|
7704
|
+
--dt-shadow-focus-2-color: #51A0FE;
|
|
7705
|
+
--dt-shadow-focus-2-type: dropShadow;
|
|
7706
|
+
--dt-shadow-focus-inset-1-x: 0rem;
|
|
7707
|
+
--dt-shadow-focus-inset-1-y: 0rem;
|
|
7708
|
+
--dt-shadow-focus-inset-1-blur: 0rem;
|
|
7709
|
+
--dt-shadow-focus-inset-1-spread: 0.3rem;
|
|
7710
|
+
--dt-shadow-focus-inset-1-color: #51A0FE;
|
|
7711
|
+
--dt-shadow-focus-inset-1-type: innerShadow;
|
|
7712
|
+
--dt-typography-body-small-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8437
7713
|
--dt-typography-body-small-font-weight: 400;
|
|
8438
7714
|
--dt-typography-body-small-line-height: 1.4;
|
|
8439
7715
|
--dt-typography-body-small-font-size: 1.2rem;
|
|
8440
7716
|
--dt-typography-body-small-text-case: none;
|
|
8441
|
-
--dt-typography-body-base-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
7717
|
+
--dt-typography-body-base-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8442
7718
|
--dt-typography-body-base-font-weight: 400;
|
|
8443
7719
|
--dt-typography-body-base-line-height: 1.6;
|
|
8444
7720
|
--dt-typography-body-base-font-size: 1.5rem;
|
|
8445
7721
|
--dt-typography-body-base-text-case: none;
|
|
8446
|
-
--dt-typography-body-compact-small-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
7722
|
+
--dt-typography-body-compact-small-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8447
7723
|
--dt-typography-body-compact-small-font-weight: 400;
|
|
8448
7724
|
--dt-typography-body-compact-small-line-height: 1.2;
|
|
8449
7725
|
--dt-typography-body-compact-small-font-size: 1.2rem;
|
|
8450
7726
|
--dt-typography-body-compact-small-text-case: none;
|
|
8451
|
-
--dt-typography-body-compact-base-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
7727
|
+
--dt-typography-body-compact-base-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8452
7728
|
--dt-typography-body-compact-base-font-weight: 400;
|
|
8453
7729
|
--dt-typography-body-compact-base-line-height: 1.4;
|
|
8454
7730
|
--dt-typography-body-compact-base-font-size: 1.5rem;
|
|
8455
7731
|
--dt-typography-body-compact-base-text-case: none;
|
|
8456
|
-
--dt-typography-headline-eyebrow-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
7732
|
+
--dt-typography-headline-eyebrow-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8457
7733
|
--dt-typography-headline-eyebrow-font-weight: 400;
|
|
8458
7734
|
--dt-typography-headline-eyebrow-line-height: 1.4;
|
|
8459
7735
|
--dt-typography-headline-eyebrow-font-size: 1.2rem;
|
|
8460
7736
|
--dt-typography-headline-eyebrow-text-case: uppercase;
|
|
8461
|
-
--dt-typography-headline-small-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
7737
|
+
--dt-typography-headline-small-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8462
7738
|
--dt-typography-headline-small-font-weight: 700;
|
|
8463
7739
|
--dt-typography-headline-small-line-height: 1.4;
|
|
8464
7740
|
--dt-typography-headline-small-font-size: 1.2rem;
|
|
8465
7741
|
--dt-typography-headline-small-text-case: none;
|
|
8466
|
-
--dt-typography-headline-medium-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
7742
|
+
--dt-typography-headline-medium-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8467
7743
|
--dt-typography-headline-medium-font-weight: 700;
|
|
8468
7744
|
--dt-typography-headline-medium-line-height: 1.6;
|
|
8469
7745
|
--dt-typography-headline-medium-font-size: 1.5rem;
|
|
8470
7746
|
--dt-typography-headline-medium-text-case: none;
|
|
8471
|
-
--dt-typography-headline-large-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
7747
|
+
--dt-typography-headline-large-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8472
7748
|
--dt-typography-headline-large-font-weight: 700;
|
|
8473
7749
|
--dt-typography-headline-large-line-height: 1.6;
|
|
8474
7750
|
--dt-typography-headline-large-font-size: 1.9rem;
|
|
8475
7751
|
--dt-typography-headline-large-text-case: none;
|
|
8476
|
-
--dt-typography-headline-extra-large-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
7752
|
+
--dt-typography-headline-extra-large-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8477
7753
|
--dt-typography-headline-extra-large-font-weight: 500;
|
|
8478
7754
|
--dt-typography-headline-extra-large-line-height: 1.2;
|
|
8479
7755
|
--dt-typography-headline-extra-large-font-size: 2.7rem;
|
|
8480
7756
|
--dt-typography-headline-extra-large-text-case: none;
|
|
8481
|
-
--dt-typography-headline-extra-extra-large-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
7757
|
+
--dt-typography-headline-extra-extra-large-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8482
7758
|
--dt-typography-headline-extra-extra-large-font-weight: 500;
|
|
8483
7759
|
--dt-typography-headline-extra-extra-large-line-height: 1.2;
|
|
8484
7760
|
--dt-typography-headline-extra-extra-large-font-size: 3.8rem;
|
|
8485
7761
|
--dt-typography-headline-extra-extra-large-text-case: none;
|
|
8486
|
-
--dt-typography-headline-soft-small-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
7762
|
+
--dt-typography-headline-soft-small-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8487
7763
|
--dt-typography-headline-soft-small-font-weight: 500;
|
|
8488
7764
|
--dt-typography-headline-soft-small-line-height: 1.4;
|
|
8489
7765
|
--dt-typography-headline-soft-small-font-size: 1.2rem;
|
|
8490
7766
|
--dt-typography-headline-soft-small-text-case: none;
|
|
8491
|
-
--dt-typography-headline-compact-small-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
7767
|
+
--dt-typography-headline-compact-small-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8492
7768
|
--dt-typography-headline-compact-small-font-weight: 700;
|
|
8493
7769
|
--dt-typography-headline-compact-small-line-height: 1.2;
|
|
8494
7770
|
--dt-typography-headline-compact-small-font-size: 1.2rem;
|
|
8495
7771
|
--dt-typography-headline-compact-small-text-case: none;
|
|
8496
|
-
--dt-typography-headline-compact-medium-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
7772
|
+
--dt-typography-headline-compact-medium-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8497
7773
|
--dt-typography-headline-compact-medium-font-weight: 700;
|
|
8498
7774
|
--dt-typography-headline-compact-medium-line-height: 1.4;
|
|
8499
7775
|
--dt-typography-headline-compact-medium-font-size: 1.5rem;
|
|
8500
7776
|
--dt-typography-headline-compact-medium-text-case: none;
|
|
8501
|
-
--dt-typography-headline-compact-large-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
7777
|
+
--dt-typography-headline-compact-large-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8502
7778
|
--dt-typography-headline-compact-large-font-weight: 700;
|
|
8503
7779
|
--dt-typography-headline-compact-large-line-height: 1.2;
|
|
8504
7780
|
--dt-typography-headline-compact-large-font-size: 1.9rem;
|
|
8505
7781
|
--dt-typography-headline-compact-large-text-case: none;
|
|
8506
|
-
--dt-typography-headline-compact-soft-small-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
7782
|
+
--dt-typography-headline-compact-soft-small-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8507
7783
|
--dt-typography-headline-compact-soft-small-font-weight: 500;
|
|
8508
7784
|
--dt-typography-headline-compact-soft-small-line-height: 1.2;
|
|
8509
7785
|
--dt-typography-headline-compact-soft-small-font-size: 1.2rem;
|
|
8510
7786
|
--dt-typography-headline-compact-soft-small-text-case: none;
|
|
8511
|
-
--dt-typography-label-small-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
7787
|
+
--dt-typography-label-small-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8512
7788
|
--dt-typography-label-small-font-weight: 600;
|
|
8513
7789
|
--dt-typography-label-small-line-height: 1.4;
|
|
8514
7790
|
--dt-typography-label-small-font-size: 1.2rem;
|
|
8515
7791
|
--dt-typography-label-small-text-case: none;
|
|
8516
|
-
--dt-typography-label-base-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
7792
|
+
--dt-typography-label-base-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8517
7793
|
--dt-typography-label-base-font-weight: 600;
|
|
8518
7794
|
--dt-typography-label-base-line-height: 1.6;
|
|
8519
7795
|
--dt-typography-label-base-font-size: 1.5rem;
|
|
8520
7796
|
--dt-typography-label-base-text-case: none;
|
|
8521
|
-
--dt-typography-label-compact-small-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
7797
|
+
--dt-typography-label-compact-small-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8522
7798
|
--dt-typography-label-compact-small-font-weight: 600;
|
|
8523
7799
|
--dt-typography-label-compact-small-line-height: 1.2;
|
|
8524
7800
|
--dt-typography-label-compact-small-font-size: 1.2rem;
|
|
8525
7801
|
--dt-typography-label-compact-small-text-case: none;
|
|
8526
|
-
--dt-typography-label-compact-base-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
7802
|
+
--dt-typography-label-compact-base-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8527
7803
|
--dt-typography-label-compact-base-font-weight: 600;
|
|
8528
7804
|
--dt-typography-label-compact-base-line-height: 1.4;
|
|
8529
7805
|
--dt-typography-label-compact-base-font-size: 1.5rem;
|
|
8530
7806
|
--dt-typography-label-compact-base-text-case: none;
|
|
8531
|
-
--dt-typography-label-compact-plain-small-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
7807
|
+
--dt-typography-label-compact-plain-small-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8532
7808
|
--dt-typography-label-compact-plain-small-font-weight: 400;
|
|
8533
7809
|
--dt-typography-label-compact-plain-small-line-height: 1.2;
|
|
8534
7810
|
--dt-typography-label-compact-plain-small-font-size: 1.2rem;
|
|
8535
7811
|
--dt-typography-label-compact-plain-small-text-case: none;
|
|
8536
|
-
--dt-typography-label-compact-plain-base-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
7812
|
+
--dt-typography-label-compact-plain-base-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8537
7813
|
--dt-typography-label-compact-plain-base-font-weight: 400;
|
|
8538
7814
|
--dt-typography-label-compact-plain-base-line-height: 1.4;
|
|
8539
7815
|
--dt-typography-label-compact-plain-base-font-size: 1.5rem;
|
|
8540
7816
|
--dt-typography-label-compact-plain-base-text-case: none;
|
|
8541
|
-
--dt-typography-label-plain-small-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
7817
|
+
--dt-typography-label-plain-small-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8542
7818
|
--dt-typography-label-plain-small-font-weight: 400;
|
|
8543
7819
|
--dt-typography-label-plain-small-line-height: 1.4;
|
|
8544
7820
|
--dt-typography-label-plain-small-font-size: 1.2rem;
|
|
8545
7821
|
--dt-typography-label-plain-small-text-case: none;
|
|
8546
|
-
--dt-typography-label-plain-base-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
7822
|
+
--dt-typography-label-plain-base-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8547
7823
|
--dt-typography-label-plain-base-font-weight: 400;
|
|
8548
7824
|
--dt-typography-label-plain-base-line-height: 1.6;
|
|
8549
7825
|
--dt-typography-label-plain-base-font-size: 1.5rem;
|
|
8550
7826
|
--dt-typography-label-plain-base-text-case: none;
|
|
8551
|
-
--dt-typography-helper-small-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
7827
|
+
--dt-typography-helper-small-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8552
7828
|
--dt-typography-helper-small-font-weight: 400;
|
|
8553
7829
|
--dt-typography-helper-small-line-height: 1.2;
|
|
8554
7830
|
--dt-typography-helper-small-font-size: 1.2rem;
|
|
8555
7831
|
--dt-typography-helper-small-text-case: none;
|
|
8556
|
-
--dt-typography-helper-base-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
7832
|
+
--dt-typography-helper-base-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8557
7833
|
--dt-typography-helper-base-font-weight: 400;
|
|
8558
7834
|
--dt-typography-helper-base-line-height: 1.4;
|
|
8559
7835
|
--dt-typography-helper-base-font-size: 1.5rem;
|
|
8560
7836
|
--dt-typography-helper-base-text-case: none;
|
|
8561
|
-
--dt-typography-code-small-font-family: SFMono-Regular, "SF Mono", Consolas, "Liberation Mono", Menlo, Courier, monospace;
|
|
7837
|
+
--dt-typography-code-small-font-family: SFMono-Regular, '"SF Mono"', Consolas, '"Liberation Mono"', Menlo, Courier, monospace;
|
|
8562
7838
|
--dt-typography-code-small-font-weight: 400;
|
|
8563
7839
|
--dt-typography-code-small-line-height: 1.2;
|
|
8564
7840
|
--dt-typography-code-small-font-size: 1.2rem;
|
|
8565
7841
|
--dt-typography-code-small-text-case: none;
|
|
8566
|
-
--dt-typography-code-base-font-family: SFMono-Regular, "SF Mono", Consolas, "Liberation Mono", Menlo, Courier, monospace;
|
|
7842
|
+
--dt-typography-code-base-font-family: SFMono-Regular, '"SF Mono"', Consolas, '"Liberation Mono"', Menlo, Courier, monospace;
|
|
8567
7843
|
--dt-typography-code-base-font-weight: 400;
|
|
8568
7844
|
--dt-typography-code-base-line-height: 1.2;
|
|
8569
7845
|
--dt-typography-code-base-font-size: 1.5rem;
|
|
8570
7846
|
--dt-typography-code-base-text-case: none;
|
|
8571
|
-
--dt-size-
|
|
8572
|
-
--dt-size-
|
|
8573
|
-
--dt-size-
|
|
8574
|
-
--dt-size-
|
|
8575
|
-
--dt-size-
|
|
8576
|
-
--dt-size-
|
|
8577
|
-
--dt-size-
|
|
8578
|
-
--dt-
|
|
8579
|
-
--dt-size-
|
|
8580
|
-
--dt-size-
|
|
8581
|
-
--dt-size-
|
|
8582
|
-
--dt-size-
|
|
8583
|
-
--dt-size-
|
|
8584
|
-
--dt-
|
|
8585
|
-
--dt-
|
|
8586
|
-
--dt-
|
|
8587
|
-
--dt-
|
|
8588
|
-
--dt-
|
|
8589
|
-
--dt-
|
|
8590
|
-
--dt-
|
|
8591
|
-
--dt-
|
|
8592
|
-
--dt-
|
|
8593
|
-
--dt-
|
|
8594
|
-
--dt-
|
|
8595
|
-
--dt-
|
|
8596
|
-
--dt-
|
|
8597
|
-
--dt-
|
|
8598
|
-
--dt-
|
|
8599
|
-
--dt-
|
|
8600
|
-
--dt-
|
|
8601
|
-
--dt-
|
|
8602
|
-
--dt-
|
|
8603
|
-
--dt-
|
|
8604
|
-
--dt-
|
|
8605
|
-
--dt-
|
|
8606
|
-
--dt-
|
|
8607
|
-
--dt-
|
|
8608
|
-
--dt-
|
|
8609
|
-
--dt-
|
|
8610
|
-
--dt-
|
|
8611
|
-
--dt-
|
|
8612
|
-
--dt-
|
|
8613
|
-
--dt-
|
|
8614
|
-
--dt-
|
|
8615
|
-
--dt-
|
|
8616
|
-
--dt-
|
|
8617
|
-
--dt-
|
|
8618
|
-
--dt-
|
|
8619
|
-
--dt-
|
|
8620
|
-
--dt-
|
|
8621
|
-
--dt-
|
|
8622
|
-
--dt-
|
|
8623
|
-
--dt-
|
|
8624
|
-
--dt-
|
|
8625
|
-
--dt-
|
|
8626
|
-
--dt-
|
|
8627
|
-
--dt-
|
|
8628
|
-
--dt-
|
|
8629
|
-
--dt-
|
|
8630
|
-
--dt-
|
|
8631
|
-
--dt-
|
|
8632
|
-
--dt-
|
|
8633
|
-
--dt-
|
|
8634
|
-
--dt-
|
|
8635
|
-
--dt-
|
|
8636
|
-
--dt-
|
|
8637
|
-
--dt-
|
|
8638
|
-
--dt-
|
|
8639
|
-
--dt-
|
|
8640
|
-
--dt-
|
|
8641
|
-
--dt-
|
|
8642
|
-
--dt-
|
|
8643
|
-
--dt-
|
|
8644
|
-
--dt-
|
|
8645
|
-
--dt-
|
|
8646
|
-
--dt-
|
|
8647
|
-
--dt-
|
|
8648
|
-
--dt-
|
|
8649
|
-
--dt-
|
|
8650
|
-
--dt-
|
|
8651
|
-
--dt-
|
|
8652
|
-
--dt-
|
|
8653
|
-
--dt-
|
|
8654
|
-
--dt-
|
|
8655
|
-
--dt-
|
|
8656
|
-
--dt-
|
|
8657
|
-
--dt-
|
|
8658
|
-
--dt-
|
|
8659
|
-
--dt-
|
|
8660
|
-
--dt-
|
|
8661
|
-
--dt-
|
|
8662
|
-
--dt-
|
|
8663
|
-
--dt-
|
|
8664
|
-
--dt-
|
|
8665
|
-
--dt-
|
|
8666
|
-
--dt-
|
|
8667
|
-
--dt-
|
|
8668
|
-
--dt-
|
|
8669
|
-
--dt-
|
|
8670
|
-
--dt-
|
|
8671
|
-
--dt-
|
|
8672
|
-
--dt-
|
|
8673
|
-
--dt-
|
|
8674
|
-
--dt-
|
|
8675
|
-
--dt-
|
|
8676
|
-
--dt-
|
|
8677
|
-
--dt-
|
|
8678
|
-
--dt-
|
|
8679
|
-
--dt-
|
|
8680
|
-
--dt-
|
|
8681
|
-
--dt-
|
|
8682
|
-
--dt-
|
|
8683
|
-
--dt-
|
|
8684
|
-
--dt-
|
|
8685
|
-
--dt-
|
|
8686
|
-
--dt-
|
|
8687
|
-
--dt-
|
|
8688
|
-
--dt-
|
|
8689
|
-
--dt-
|
|
8690
|
-
--dt-
|
|
8691
|
-
--dt-
|
|
8692
|
-
--dt-
|
|
8693
|
-
--dt-
|
|
8694
|
-
--dt-
|
|
8695
|
-
--dt-
|
|
8696
|
-
--dt-
|
|
8697
|
-
--dt-
|
|
8698
|
-
--dt-
|
|
8699
|
-
--dt-
|
|
8700
|
-
--dt-
|
|
8701
|
-
--dt-
|
|
8702
|
-
--dt-
|
|
8703
|
-
--dt-
|
|
8704
|
-
--dt-
|
|
8705
|
-
--dt-
|
|
8706
|
-
--dt-
|
|
8707
|
-
--dt-
|
|
8708
|
-
--dt-
|
|
8709
|
-
--dt-
|
|
8710
|
-
--dt-
|
|
8711
|
-
--dt-
|
|
8712
|
-
--dt-
|
|
8713
|
-
--dt-
|
|
8714
|
-
--dt-
|
|
8715
|
-
--dt-
|
|
8716
|
-
--dt-
|
|
8717
|
-
--dt-
|
|
8718
|
-
--dt-
|
|
8719
|
-
--dt-
|
|
8720
|
-
--dt-
|
|
8721
|
-
--dt-
|
|
8722
|
-
--dt-
|
|
8723
|
-
--dt-
|
|
8724
|
-
--dt-
|
|
8725
|
-
--dt-
|
|
8726
|
-
--dt-
|
|
8727
|
-
--dt-
|
|
8728
|
-
--dt-
|
|
8729
|
-
--dt-
|
|
8730
|
-
--dt-
|
|
8731
|
-
--dt-
|
|
8732
|
-
--dt-
|
|
8733
|
-
--dt-
|
|
8734
|
-
--dt-
|
|
8735
|
-
|
|
8736
|
-
|
|
8737
|
-
|
|
8738
|
-
|
|
8739
|
-
|
|
8740
|
-
|
|
8741
|
-
|
|
8742
|
-
|
|
8743
|
-
--dt-
|
|
8744
|
-
--dt-
|
|
8745
|
-
--dt-
|
|
8746
|
-
--dt-
|
|
8747
|
-
--dt-
|
|
8748
|
-
--dt-
|
|
8749
|
-
--dt-
|
|
8750
|
-
--dt-
|
|
8751
|
-
--dt-
|
|
8752
|
-
--dt-
|
|
8753
|
-
--dt-
|
|
8754
|
-
--dt-
|
|
8755
|
-
--dt-
|
|
8756
|
-
--dt-
|
|
8757
|
-
--dt-
|
|
8758
|
-
--dt-
|
|
8759
|
-
--dt-
|
|
8760
|
-
--dt-
|
|
8761
|
-
--dt-
|
|
8762
|
-
--dt-
|
|
8763
|
-
--dt-
|
|
8764
|
-
--dt-
|
|
8765
|
-
--dt-
|
|
8766
|
-
--dt-
|
|
8767
|
-
--dt-
|
|
8768
|
-
--dt-
|
|
8769
|
-
--dt-
|
|
8770
|
-
--dt-
|
|
8771
|
-
--dt-
|
|
8772
|
-
--dt-
|
|
8773
|
-
--dt-
|
|
8774
|
-
--dt-
|
|
8775
|
-
--dt-
|
|
8776
|
-
--dt-
|
|
8777
|
-
--dt-
|
|
8778
|
-
--dt-
|
|
8779
|
-
--dt-
|
|
8780
|
-
--dt-
|
|
8781
|
-
--dt-
|
|
8782
|
-
--dt-
|
|
8783
|
-
--dt-
|
|
8784
|
-
--dt-
|
|
8785
|
-
--dt-
|
|
8786
|
-
--dt-
|
|
8787
|
-
--dt-
|
|
8788
|
-
--dt-
|
|
8789
|
-
--dt-
|
|
8790
|
-
--dt-
|
|
8791
|
-
--dt-
|
|
8792
|
-
--dt-
|
|
8793
|
-
--dt-
|
|
8794
|
-
--dt-
|
|
8795
|
-
--dt-
|
|
8796
|
-
--dt-
|
|
8797
|
-
--dt-
|
|
8798
|
-
--dt-
|
|
8799
|
-
--dt-
|
|
8800
|
-
--dt-
|
|
8801
|
-
--dt-
|
|
8802
|
-
--dt-
|
|
8803
|
-
--dt-
|
|
8804
|
-
--dt-
|
|
8805
|
-
--dt-
|
|
8806
|
-
--dt-
|
|
8807
|
-
--dt-
|
|
8808
|
-
--dt-
|
|
8809
|
-
--dt-
|
|
8810
|
-
--dt-
|
|
8811
|
-
--dt-
|
|
8812
|
-
--dt-
|
|
8813
|
-
--dt-
|
|
8814
|
-
--dt-
|
|
8815
|
-
--dt-
|
|
8816
|
-
--dt-
|
|
8817
|
-
--dt-
|
|
8818
|
-
--dt-
|
|
8819
|
-
--dt-
|
|
8820
|
-
--dt-
|
|
8821
|
-
--dt-
|
|
8822
|
-
--dt-
|
|
8823
|
-
--dt-
|
|
8824
|
-
--dt-
|
|
8825
|
-
--dt-
|
|
8826
|
-
--dt-
|
|
8827
|
-
--dt-
|
|
8828
|
-
--dt-
|
|
8829
|
-
--dt-
|
|
8830
|
-
--dt-
|
|
8831
|
-
--dt-
|
|
8832
|
-
--dt-
|
|
8833
|
-
--dt-
|
|
8834
|
-
--dt-
|
|
8835
|
-
--dt-
|
|
8836
|
-
--dt-
|
|
8837
|
-
--dt-
|
|
8838
|
-
--dt-
|
|
8839
|
-
--dt-
|
|
8840
|
-
--dt-
|
|
8841
|
-
--dt-
|
|
8842
|
-
--dt-
|
|
8843
|
-
--dt-
|
|
8844
|
-
--dt-
|
|
8845
|
-
--dt-
|
|
8846
|
-
--dt-
|
|
8847
|
-
--dt-
|
|
8848
|
-
--dt-
|
|
8849
|
-
--dt-
|
|
8850
|
-
--dt-
|
|
8851
|
-
--dt-
|
|
8852
|
-
--dt-
|
|
8853
|
-
--dt-
|
|
8854
|
-
--dt-
|
|
8855
|
-
--dt-
|
|
8856
|
-
--dt-
|
|
8857
|
-
--dt-
|
|
8858
|
-
--dt-
|
|
8859
|
-
--dt-
|
|
8860
|
-
--dt-
|
|
8861
|
-
--dt-
|
|
8862
|
-
--dt-
|
|
8863
|
-
--dt-
|
|
8864
|
-
--dt-
|
|
8865
|
-
--dt-
|
|
8866
|
-
--dt-
|
|
8867
|
-
--dt-
|
|
8868
|
-
--dt-
|
|
7847
|
+
--dt-inputs-size-border-default: 0.15rem;
|
|
7848
|
+
--dt-inputs-size-border-status: 0.2rem;
|
|
7849
|
+
--dt-inputs-size-radius-xs: 0.4rem;
|
|
7850
|
+
--dt-inputs-size-radius-sm: 0.8rem;
|
|
7851
|
+
--dt-inputs-size-radius-md: 0.8rem;
|
|
7852
|
+
--dt-inputs-size-radius-lg: 1.2rem;
|
|
7853
|
+
--dt-inputs-size-radius-xl: 1.6rem;
|
|
7854
|
+
--dt-inputs-line-height-default: 1.2;
|
|
7855
|
+
--dt-inputs-font-size-xs: 1.2rem;
|
|
7856
|
+
--dt-inputs-font-size-sm: 1.2rem;
|
|
7857
|
+
--dt-inputs-font-size-md: 1.5rem;
|
|
7858
|
+
--dt-inputs-font-size-lg: 1.9rem;
|
|
7859
|
+
--dt-inputs-font-size-xl: 2.7rem;
|
|
7860
|
+
--dt-inputs-color-foreground-default: #3A3A3A;
|
|
7861
|
+
--dt-inputs-color-foreground-placeholder: #808080;
|
|
7862
|
+
--dt-inputs-color-foreground-disabled: #808080;
|
|
7863
|
+
--dt-inputs-color-border-default: hsl(0 0% 0% / 0.1);
|
|
7864
|
+
--dt-inputs-color-border-focus: #51A0FE;
|
|
7865
|
+
--dt-inputs-color-border-critical: #EC0E0E;
|
|
7866
|
+
--dt-inputs-color-border-success: #1AA340;
|
|
7867
|
+
--dt-inputs-color-border-warning: #D28F2B;
|
|
7868
|
+
--dt-inputs-color-border-disabled: transparent;
|
|
7869
|
+
--dt-inputs-color-background-default: hsl(0 0% 0% / 0.03);
|
|
7870
|
+
--dt-inputs-color-background-focus: hsl(0 0% 0% / 0.01);
|
|
7871
|
+
--dt-inputs-color-background-disabled: hsl(0 0% 0% / 0.12);
|
|
7872
|
+
--dt-action-color-foreground-base-default: #7C52FF;
|
|
7873
|
+
--dt-action-color-foreground-base-hover: hsl(255 100% 63.4%);
|
|
7874
|
+
--dt-action-color-foreground-base-active: hsl(255 100% 63.4%);
|
|
7875
|
+
--dt-action-color-foreground-base-primary-default: #ffffff;
|
|
7876
|
+
--dt-action-color-foreground-critical-default: #EC0E0E;
|
|
7877
|
+
--dt-action-color-foreground-critical-hover: hsl(0 88.8% 45.1%);
|
|
7878
|
+
--dt-action-color-foreground-critical-active: hsl(0 88.8% 45.1%);
|
|
7879
|
+
--dt-action-color-foreground-critical-primary-default: #ffffff;
|
|
7880
|
+
--dt-action-color-foreground-inverted-default: #ffffff;
|
|
7881
|
+
--dt-action-color-foreground-inverted-hover: #ffffff;
|
|
7882
|
+
--dt-action-color-foreground-inverted-active: #ffffff;
|
|
7883
|
+
--dt-action-color-foreground-inverted-primary-default: #7C52FF;
|
|
7884
|
+
--dt-action-color-foreground-inverted-primary-hover: #3A1D95;
|
|
7885
|
+
--dt-action-color-foreground-inverted-primary-active: #3A1D95;
|
|
7886
|
+
--dt-action-color-foreground-muted-default: #3A3A3A;
|
|
7887
|
+
--dt-action-color-foreground-muted-hover: #3A3A3A;
|
|
7888
|
+
--dt-action-color-foreground-muted-active: #3A3A3A;
|
|
7889
|
+
--dt-action-color-foreground-disabled-default: #808080;
|
|
7890
|
+
--dt-action-color-background-base-default: transparent;
|
|
7891
|
+
--dt-action-color-background-base-hover: hsl(255 100% 66.1% / 0.14);
|
|
7892
|
+
--dt-action-color-background-base-active: hsl(255 100% 66.1% / 0.18);
|
|
7893
|
+
--dt-action-color-background-base-primary-default: #7C52FF;
|
|
7894
|
+
--dt-action-color-background-base-primary-hover: hsl(255 100% 63.4%);
|
|
7895
|
+
--dt-action-color-background-base-primary-active: hsl(255 100% 60.8%);
|
|
7896
|
+
--dt-action-color-background-critical-default: transparent;
|
|
7897
|
+
--dt-action-color-background-critical-hover: hsl(0 88.8% 49% / 0.03);
|
|
7898
|
+
--dt-action-color-background-critical-active: hsl(0 88.8% 49% / 0.09);
|
|
7899
|
+
--dt-action-color-background-critical-primary-default: #EC0E0E;
|
|
7900
|
+
--dt-action-color-background-critical-primary-hover: hsl(0 88.8% 45.1%);
|
|
7901
|
+
--dt-action-color-background-critical-primary-active: hsl(0 88.8% 43.1%);
|
|
7902
|
+
--dt-action-color-background-inverted-default: transparent;
|
|
7903
|
+
--dt-action-color-background-inverted-hover: hsl(0 0% 100% / 0.15);
|
|
7904
|
+
--dt-action-color-background-inverted-active: hsl(0 0% 100% / 0.3);
|
|
7905
|
+
--dt-action-color-background-inverted-primary-default: #ffffff;
|
|
7906
|
+
--dt-action-color-background-inverted-primary-hover: #F5F0FF;
|
|
7907
|
+
--dt-action-color-background-inverted-primary-active: hsl(260 100% 93.2%);
|
|
7908
|
+
--dt-action-color-background-muted-default: transparent;
|
|
7909
|
+
--dt-action-color-background-muted-hover: hsl(0 0% 13.3% / 0.1);
|
|
7910
|
+
--dt-action-color-background-muted-active: hsl(0 0% 13.3% / 0.16);
|
|
7911
|
+
--dt-action-color-background-disabled-default: #D2D2D2;
|
|
7912
|
+
--dt-action-color-border-base-outlined-default: #7C52FF;
|
|
7913
|
+
--dt-action-color-border-critical-outlined-default: #EC0E0E;
|
|
7914
|
+
--dt-action-color-border-inverted-outlined-default: #F9F9F9;
|
|
7915
|
+
--dt-action-color-border-muted-outlined-default: #555555;
|
|
7916
|
+
--dt-theme-color-base: #000000;
|
|
7917
|
+
--dt-theme-topbar-color-foreground: hsl(0 0% 0% / 0.75);
|
|
7918
|
+
--dt-theme-topbar-color-background: #F9F9F9;
|
|
7919
|
+
--dt-theme-topbar-field-color-foreground: hsl(0 0% 0% / 0.5);
|
|
7920
|
+
--dt-theme-topbar-field-color-foreground-hover: hsl(0 0% 0% / 0.75);
|
|
7921
|
+
--dt-theme-topbar-field-color-background: hsl(0 0% 0% / 0.05);
|
|
7922
|
+
--dt-theme-topbar-field-color-background-hover: hsl(0 0% 100%);
|
|
7923
|
+
--dt-theme-topbar-field-color-border: hsl(0 0% 0% / 0);
|
|
7924
|
+
--dt-theme-topbar-field-color-border-hover: hsl(0 0% 0% / 0.1);
|
|
7925
|
+
--dt-theme-topbar-field-color-border-active: hsl(0 0% 0% / 0.2);
|
|
7926
|
+
--dt-theme-topbar-button-color-foreground: hsl(0 0% 0% / 0.65);
|
|
7927
|
+
--dt-theme-topbar-button-color-foreground-hover: #000000;
|
|
7928
|
+
--dt-theme-topbar-button-color-background: hsl(0 0% 0% / 0);
|
|
7929
|
+
--dt-theme-topbar-button-color-background-hover: hsl(0 0% 0% / 0.05);
|
|
7930
|
+
--dt-theme-topbar-button-color-background-active: hsl(0 0% 0% / 0.1);
|
|
7931
|
+
--dt-theme-topbar-profile-color-foreground: hsl(0 0% 0% / 0.75);
|
|
7932
|
+
--dt-theme-topbar-profile-color-foreground-inverted: hsl(0 0% 100% / 0.75);
|
|
7933
|
+
--dt-theme-topbar-profile-color-background: hsl(0 0% 0% / 0.05);
|
|
7934
|
+
--dt-theme-topbar-profile-color-background-inverted: hsl(0 0% 0% / 0.75);
|
|
7935
|
+
--dt-theme-topbar-profile-color-background-hover: hsl(0 0% 0% / 0.1);
|
|
7936
|
+
--dt-theme-topbar-profile-color-background-active: hsl(0 0% 0% / 0.14);
|
|
7937
|
+
--dt-theme-sidebar-color-foreground: #3A3A3A;
|
|
7938
|
+
--dt-theme-sidebar-color-foreground-unread: #000000;
|
|
7939
|
+
--dt-theme-sidebar-color-background: #F9F9F9;
|
|
7940
|
+
--dt-theme-sidebar-icon-color-foreground: #3A3A3A;
|
|
7941
|
+
--dt-theme-sidebar-status-color-foreground: #555555;
|
|
7942
|
+
--dt-theme-sidebar-row-color-background: hsl(0 0% 0% / 0);
|
|
7943
|
+
--dt-theme-sidebar-row-color-background-hover: hsl(0 0% 0% / 0.12);
|
|
7944
|
+
--dt-theme-sidebar-row-color-background-active: hsl(0 0% 0% / 0.16);
|
|
7945
|
+
--dt-theme-sidebar-selected-row-color-foreground: #000000;
|
|
7946
|
+
--dt-theme-sidebar-selected-row-color-background: hsl(0 0% 0% / 0.1);
|
|
7947
|
+
--dt-theme-sidebar-section-color-foreground: #555555;
|
|
7948
|
+
--dt-theme-presence-color-background-available: #1AA340;
|
|
7949
|
+
--dt-theme-presence-color-background-busy-unavailable: #EC0E0E;
|
|
7950
|
+
--dt-theme-presence-color-background-busy: #F6AB3C;
|
|
7951
|
+
--dt-theme-presence-color-background-offline: #ffffff;
|
|
7952
|
+
--dt-theme-mention-color-foreground: #ffffff;
|
|
7953
|
+
--dt-theme-mention-color-background: #7C52FF;
|
|
7954
|
+
--dt-avatar-color-foreground: #000000;
|
|
7955
|
+
--dt-avatar-color-background-100: #1aa340;
|
|
7956
|
+
--dt-avatar-color-background-200: #aaff83;
|
|
7957
|
+
--dt-avatar-color-background-300: #adea88;
|
|
7958
|
+
--dt-avatar-color-background-400: #77eca6;
|
|
7959
|
+
--dt-avatar-color-background-500: #7aedbd;
|
|
7960
|
+
--dt-avatar-color-background-600: #77deec;
|
|
7961
|
+
--dt-avatar-color-background-700: #5ed8ff;
|
|
7962
|
+
--dt-avatar-color-background-800: #99e7ff;
|
|
7963
|
+
--dt-avatar-color-background-900: #51a0fe;
|
|
7964
|
+
--dt-avatar-color-background-1000: #b6cfff;
|
|
7965
|
+
--dt-avatar-color-background-1100: #f1b7e8;
|
|
7966
|
+
--dt-avatar-color-background-1200: #ec77bd;
|
|
7967
|
+
--dt-avatar-color-background-1300: #ff67be;
|
|
7968
|
+
--dt-avatar-color-background-1400: #f87e7e;
|
|
7969
|
+
--dt-avatar-color-background-1500: #eca877;
|
|
7970
|
+
--dt-avatar-color-background-1600: #ffbe41;
|
|
7971
|
+
--dt-avatar-color-background-1700: #ffd646;
|
|
7972
|
+
--dt-avatar-color-background-1800: #f1dab7;
|
|
7973
|
+
--dt-avatar-color-background-000: #e0e0e0;
|
|
7974
|
+
--dt-badge-color-background-default: hsl(0 0% 0% / 0.09);
|
|
7975
|
+
--dt-badge-color-background-info: #EAF2FA;
|
|
7976
|
+
--dt-badge-color-background-success: #EDF9EB;
|
|
7977
|
+
--dt-badge-color-background-warning: #FFF4CC;
|
|
7978
|
+
--dt-badge-color-background-critical: #FFE5E6;
|
|
7979
|
+
--dt-badge-color-background-bulletin: #7C52FF;
|
|
7980
|
+
--dt-badge-color-background-ai: linear-gradient(135deg, #F9008E 10%, #7C52FF 90%);
|
|
7981
|
+
--dt-badge-color-foreground-default: #000000;
|
|
7982
|
+
--dt-badge-color-foreground-bulletin: #ffffff;
|
|
7983
|
+
--dt-checkbox-size-width: 1.6rem;
|
|
7984
|
+
--dt-checkbox-size-height: 1.6rem;
|
|
7985
|
+
--dt-checkbox-size-radius: 0.4rem;
|
|
7986
|
+
--dt-checkbox-color-border-unchecked: #AAAAAA;
|
|
7987
|
+
--dt-checkbox-color-border-checked: #7C52FF;
|
|
7988
|
+
--dt-checkbox-color-background-checked: #7C52FF;
|
|
7989
|
+
--dt-icon-size-100: 1.2rem;
|
|
7990
|
+
--dt-icon-size-200: 1.4rem;
|
|
7991
|
+
--dt-icon-size-300: 1.8rem;
|
|
7992
|
+
--dt-icon-size-400: 2rem;
|
|
7993
|
+
--dt-icon-size-500: 2.4rem;
|
|
7994
|
+
--dt-icon-size-600: 3.2rem;
|
|
7995
|
+
--dt-icon-size-700: 3.8rem;
|
|
7996
|
+
--dt-icon-size-800: 4.8rem;
|
|
7997
|
+
--dt-icon-size-border-100: 0.1rem;
|
|
7998
|
+
--dt-icon-size-border-200: 0.125rem;
|
|
7999
|
+
--dt-icon-size-border-300: 0.15rem;
|
|
8000
|
+
--dt-icon-size-border-400: 0.175rem;
|
|
8001
|
+
--dt-icon-size-border-500: 0.175rem;
|
|
8002
|
+
--dt-icon-size-border-600: 0.25rem;
|
|
8003
|
+
--dt-icon-size-border-700: 0.275rem;
|
|
8004
|
+
--dt-icon-size-border-800: 0.35rem;
|
|
8005
|
+
--dt-radio-size-width: 1.6rem;
|
|
8006
|
+
--dt-radio-size-height: 1.6rem;
|
|
8007
|
+
--dt-radio-size-radius: 50%;
|
|
8008
|
+
--dt-radio-color-border-unchecked: #AAAAAA;
|
|
8009
|
+
--dt-radio-color-border-checked: #7C52FF;
|
|
8010
|
+
--dt-radio-color-background-checked: #7C52FF;
|
|
8011
|
+
}
|
|
8012
|
+
|
|
8013
|
+
/**
|
|
8014
|
+
* Do not edit directly
|
|
8015
|
+
* Generated on Fri, 08 Sep 2023 20:38:02 GMT
|
|
8016
|
+
*/
|
|
8017
|
+
|
|
8018
|
+
.dialtone-theme-dark {
|
|
8019
|
+
--dt-color-neutral-white: #ffffff;
|
|
8020
|
+
--dt-color-neutral-black: #000000;
|
|
8021
|
+
--dt-color-neutral-transparent: transparent;
|
|
8022
|
+
--dt-color-black-100: #000000;
|
|
8023
|
+
--dt-color-black-200: #262626;
|
|
8024
|
+
--dt-color-black-300: #3A3A3A;
|
|
8025
|
+
--dt-color-black-400: #555555;
|
|
8026
|
+
--dt-color-black-500: #808080;
|
|
8027
|
+
--dt-color-black-600: #AAAAAA;
|
|
8028
|
+
--dt-color-black-700: #C2C2C2;
|
|
8029
|
+
--dt-color-black-800: #D4D4D4;
|
|
8030
|
+
--dt-color-black-900: #E6E6E6;
|
|
8031
|
+
--dt-color-purple-100: #10022C;
|
|
8032
|
+
--dt-color-purple-200: #3A1D95;
|
|
8033
|
+
--dt-color-purple-300: #7C52FF;
|
|
8034
|
+
--dt-color-purple-400: #AB7EFF;
|
|
8035
|
+
--dt-color-purple-500: #DAC7FF;
|
|
8036
|
+
--dt-color-purple-600: #F5F0FF;
|
|
8037
|
+
--dt-color-blue-100: #01326D;
|
|
8038
|
+
--dt-color-blue-200: #1768C6;
|
|
8039
|
+
--dt-color-blue-300: #51A0FE;
|
|
8040
|
+
--dt-color-blue-400: #99C8FF;
|
|
8041
|
+
--dt-color-blue-500: #EAF2FA;
|
|
8042
|
+
--dt-color-magenta-100: #541A3B; /* aka pink */
|
|
8043
|
+
--dt-color-magenta-200: #8C0E56; /* aka pink */
|
|
8044
|
+
--dt-color-magenta-300: #F9008E; /* aka pink */
|
|
8045
|
+
--dt-color-magenta-400: #F985C7; /* aka pink */
|
|
8046
|
+
--dt-color-magenta-500: #FFE0F2; /* aka pink */
|
|
8047
|
+
--dt-color-gold-100: #815008; /* aka yellow */
|
|
8048
|
+
--dt-color-gold-200: #D28F2B; /* aka yellow */
|
|
8049
|
+
--dt-color-gold-300: #F6AB3C; /* aka yellow */
|
|
8050
|
+
--dt-color-gold-400: #FFDB80; /* aka yellow */
|
|
8051
|
+
--dt-color-gold-500: #FFF4CC; /* aka yellow */
|
|
8052
|
+
--dt-color-green-100: #124620;
|
|
8053
|
+
--dt-color-green-200: #1AA340;
|
|
8054
|
+
--dt-color-green-300: #45F777;
|
|
8055
|
+
--dt-color-green-400: #B0FFA3;
|
|
8056
|
+
--dt-color-green-500: #EDF9EB;
|
|
8057
|
+
--dt-color-red-100: #5B0505;
|
|
8058
|
+
--dt-color-red-200: #B70B0B;
|
|
8059
|
+
--dt-color-red-300: #EC0E0E;
|
|
8060
|
+
--dt-color-red-400: #FF8585;
|
|
8061
|
+
--dt-color-red-500: #FFE5E6;
|
|
8062
|
+
--dt-color-tan-100: #121212;
|
|
8063
|
+
--dt-color-tan-200: #3F3D3C;
|
|
8064
|
+
--dt-color-tan-300: #87807B;
|
|
8065
|
+
--dt-color-tan-400: #CEC8C4;
|
|
8066
|
+
--dt-color-tan-500: #F2F0EE;
|
|
8067
|
+
--dt-color-gradient-magenta-purple: linear-gradient(135deg, #F9008E 10%, #7C52FF 90%);
|
|
8068
|
+
--dt-color-brand-purple: #7C52FF;
|
|
8069
|
+
--dt-color-brand-magenta: #F9008E;
|
|
8070
|
+
--dt-color-foreground-primary: #E6E6E6; /* Default text color throughout the UI. */
|
|
8071
|
+
--dt-color-foreground-secondary: #C2C2C2; /* Example uses include introduction paragraphs, labels, and descriptions paired with form elements. */
|
|
8072
|
+
--dt-color-foreground-tertiary: #AAAAAA; /* Used to imply visual hierarchy relative to primary and secondary text colors, e.g. headlines and labels. */
|
|
8073
|
+
--dt-color-foreground-muted: hsl(0 0% 83.1% / 0.6);
|
|
8074
|
+
--dt-color-foreground-placeholder: #AAAAAA; /* Text color for placeholder text within form elements. */
|
|
8075
|
+
--dt-color-foreground-disabled: #AAAAAA; /* Used for text paired with disabled content or components, like the form elements. */
|
|
8076
|
+
--dt-color-foreground-critical: #FF8585; /* Expresses an error, danger, or otherwise critical state. */
|
|
8077
|
+
--dt-color-foreground-critical-strong: hsl(0 100% 82.1%); /* Expresses an error, danger, or otherwise critical state on surfaces that require a stronger contrast. */
|
|
8078
|
+
--dt-color-foreground-success: #B0FFA3; /* Indicates a positive state. */
|
|
8079
|
+
--dt-color-foreground-success-strong: hsl(112 100% 88.3%); /* Indicates a strong positive state on surfaces that require a stronger contrast. */
|
|
8080
|
+
--dt-color-foreground-warning: #FFDB80; /* Indicates information that requires user’s attention and further action may be necessary. */
|
|
8081
|
+
--dt-color-foreground-primary-inverted: #000000; /* Primary text that sits on high-contrast surfaces or backgrounds. */
|
|
8082
|
+
--dt-color-foreground-secondary-inverted: #3A3A3A; /* Secondary text color that sits on high-contrast surfaces or backgrounds. */
|
|
8083
|
+
--dt-color-foreground-tertiary-inverted: #555555; /* Tertiary text color that sits on high-contrast surfaces or backgrounds. */
|
|
8084
|
+
--dt-color-foreground-muted-inverted: hsl(0 0% 14.9% / 0.6); /* Muted text color that sits on high-contrast surfaces or backgrounds. */
|
|
8085
|
+
--dt-color-foreground-placeholder-inverted: #808080; /* Placeholder text color that sits on high-contrast surfaces or backgrounds. */
|
|
8086
|
+
--dt-color-foreground-disabled-inverted: #808080; /* Disabled text color that sits on high-contrast surfaces or backgrounds. */
|
|
8087
|
+
--dt-color-foreground-critical-inverted: #EC0E0E; /* Critical text that sits on high-contrast surfaces or backgrounds */
|
|
8088
|
+
--dt-color-foreground-critical-strong-inverted: hsl(0 88.7% 53.5%); /* Critical strong text that sits on high-contrast surfaces or backgrounds */
|
|
8089
|
+
--dt-color-foreground-success-inverted: #1AA340; /* Success text that sits on high-contrast surfaces or backgrounds */
|
|
8090
|
+
--dt-color-foreground-success-strong-inverted: hsl(136 59.1% 54.5%); /* Success strong text that sits on high-contrast surfaces or backgrounds */
|
|
8091
|
+
--dt-color-foreground-warning-inverted: #815008; /* Warning text that sits on high-contrast surfaces or backgrounds */
|
|
8092
|
+
--dt-color-link-primary: hsl(261 100% 78.2%);
|
|
8093
|
+
--dt-color-link-critical: #FF8585;
|
|
8094
|
+
--dt-color-link-success: #B0FFA3; /* positive */
|
|
8095
|
+
--dt-color-link-warning: #FFDB80;
|
|
8096
|
+
--dt-color-link-muted: #C2C2C2;
|
|
8097
|
+
--dt-color-link-disabled: #AAAAAA;
|
|
8098
|
+
--dt-color-link-primary-inverted: #7C52FF;
|
|
8099
|
+
--dt-color-link-critical-inverted: #EC0E0E;
|
|
8100
|
+
--dt-color-link-success-inverted: #1AA340;
|
|
8101
|
+
--dt-color-link-warning-inverted: #815008;
|
|
8102
|
+
--dt-color-link-muted-inverted: #3A3A3A;
|
|
8103
|
+
--dt-color-link-disabled-inverted: #808080;
|
|
8104
|
+
--dt-color-link-primary-hover: #DAC7FF;
|
|
8105
|
+
--dt-color-link-critical-hover: #FFE5E6;
|
|
8106
|
+
--dt-color-link-success-hover: #EDF9EB;
|
|
8107
|
+
--dt-color-link-warning-hover: #FFF4CC;
|
|
8108
|
+
--dt-color-link-muted-hover: #E6E6E6;
|
|
8109
|
+
--dt-color-link-disabled-hover: #AAAAAA;
|
|
8110
|
+
--dt-color-link-primary-inverted-hover: #3A1D95;
|
|
8111
|
+
--dt-color-link-critical-inverted-hover: #B70B0B;
|
|
8112
|
+
--dt-color-link-success-inverted-hover: hsl(136 59.1% 54.5%);
|
|
8113
|
+
--dt-color-link-warning-inverted-hover: #262626;
|
|
8114
|
+
--dt-color-link-muted-inverted-hover: #000000;
|
|
8115
|
+
--dt-color-link-disabled-inverted-hover: #808080;
|
|
8116
|
+
--dt-color-surface-secondary-opaque: hsl(0 0% 90.2% / 0.06); /* Secondary surface as opaque background color. */
|
|
8117
|
+
--dt-color-surface-moderate-opaque: hsl(0 0% 90.2% / 0.15); /* Moderate surface as opaque background color. */
|
|
8118
|
+
--dt-color-surface-bold-opaque: hsl(0 0% 90.2% / 0.27); /* Bold surface as opaque background color. */
|
|
8119
|
+
--dt-color-surface-strong-opaque: hsl(0 0% 90.2% / 0.65); /* Strong surface as opaque background color. */
|
|
8120
|
+
--dt-color-surface-contrast-opaque: hsl(0 0% 90.2% / 0.96); /* Contrast surface as opaque background color. */
|
|
8121
|
+
--dt-color-surface-backdrop: hsl(0 0% 0% / 0.7); /* Background color for a modal-like backdrop. */
|
|
8122
|
+
--dt-color-surface-critical-opaque: hsl(0 88.7% 38% / 0.32); /* Critical surface as opaque background color. */
|
|
8123
|
+
--dt-color-surface-critical-subtle-opaque: hsl(0 89.6% 9.41% / 0.5); /* Critical subtle surface as opaque background color. */
|
|
8124
|
+
--dt-color-surface-warning-opaque: hsl(35.9 66% 49.6% / 0.48); /* Warning surface as opaque background color */
|
|
8125
|
+
--dt-color-surface-warning-subtle-opaque: hsl(35.7 88.3% 13.4% / 0.5); /* Warning subtle surface as opaque background color */
|
|
8126
|
+
--dt-color-surface-success-opaque: hsl(137 72.5% 37.1% / 0.26); /* Success surface as opaque background color. */
|
|
8127
|
+
--dt-color-surface-success-subtle-opaque: hsl(136 59.1% 8.63% / 0.5); /* Success subtle surface as opaque background color. */
|
|
8128
|
+
--dt-color-surface-info-opaque: hsl(212 79.2% 43.3% / 0.29); /* Info surface as opaque background color. */
|
|
8129
|
+
--dt-color-surface-info-subtle-opaque: hsl(213 98.2% 12.9% / 0.5); /* Info surface as opaque background color. */
|
|
8130
|
+
--dt-color-surface-primary: hsl(0 0% 12%); /* Default surface color for the majority of surfaces. */
|
|
8131
|
+
--dt-color-surface-secondary: #262626; /* For adjacent or complementary regions. */
|
|
8132
|
+
--dt-color-surface-moderate: #3A3A3A; /* A tertiary surface level, prominent without being too overpowering. */
|
|
8133
|
+
--dt-color-surface-bold: #555555; /* Highlight or call attention to specific areas of the interface. */
|
|
8134
|
+
--dt-color-surface-strong: #AAAAAA; /* Use sparingly to draw the eye to a relatively important region. */
|
|
8135
|
+
--dt-color-surface-contrast: #E6E6E6; /* An inverted surface for lightened content and elements, most likely paired with inverted foreground colors. */
|
|
8136
|
+
--dt-color-surface-critical: #5B0505; /* Background surface color containing error, danger, or otherwise critical messaging or elements. */
|
|
8137
|
+
--dt-color-surface-critical-subtle: hsl(0 89.6% 9.41%); /* A softer version of the Critical surface. */
|
|
8138
|
+
--dt-color-surface-critical-strong: #FF8585; /* A contrasting critical surface, most likely paired with inverted foreground colors. */
|
|
8139
|
+
--dt-color-surface-warning: #815008; /* Background surface color highlighting messaging or elements that may require user's attention. */
|
|
8140
|
+
--dt-color-surface-warning-subtle: hsl(35.7 88.3% 13.4%); /* A softer version of the default warning surface. */
|
|
8141
|
+
--dt-color-surface-warning-strong: #D28F2B; /* A contrasting warning surface, most likely paired with inverted foreground colors. */
|
|
8142
|
+
--dt-color-surface-success: #124620; /* Background surface color containing messaging or elements expressing a positive or successful state. */
|
|
8143
|
+
--dt-color-surface-success-subtle: hsl(136 59.1% 8.63%); /* A softer version of the default success surface. */
|
|
8144
|
+
--dt-color-surface-success-strong: #B0FFA3; /* A contrasting positive state surface, most likely paired with inverted foreground colors. */
|
|
8145
|
+
--dt-color-surface-info: #01326D; /* Background surface color containing messaging or elements communicated as generally informational. */
|
|
8146
|
+
--dt-color-surface-info-subtle: hsl(213 98.2% 12.9%); /* A softer version of the default informational surface. */
|
|
8147
|
+
--dt-color-surface-info-strong: #99C8FF; /* A contrasting informational surface, most likely paired with inverted foreground colors. */
|
|
8148
|
+
--dt-color-border-subtle: hsl(0 0% 100% / 0.14);
|
|
8149
|
+
--dt-color-border-default: hsl(0 0% 100% / 0.22);
|
|
8150
|
+
--dt-color-border-moderate: hsl(0 0% 100% / 0.36);
|
|
8151
|
+
--dt-color-border-bold: hsl(0 0% 100% / 0.5);
|
|
8152
|
+
--dt-color-border-subtle-inverted: hsl(0 0% 0% / 0.1);
|
|
8153
|
+
--dt-color-border-default-inverted: hsl(0 0% 0% / 0.18);
|
|
8154
|
+
--dt-color-border-moderate-inverted: hsl(0 0% 0% / 0.34);
|
|
8155
|
+
--dt-color-border-bold-inverted: hsl(0 0% 0% / 0.5);
|
|
8156
|
+
--dt-color-border-focus: #51A0FE;
|
|
8157
|
+
--dt-color-border-critical: #FF8585;
|
|
8158
|
+
--dt-color-border-success: #B0FFA3;
|
|
8159
|
+
--dt-color-border-warning: #FFDB80;
|
|
8160
|
+
--dt-color-border-brand: #7C52FF;
|
|
8161
|
+
--dt-color-border-ai: linear-gradient(135deg, #F9008E 10%, #7C52FF 90%);
|
|
8162
|
+
--dt-color-border-accent: #F9008E;
|
|
8163
|
+
--dt-color-border-critical-subtle: #B70B0B;
|
|
8164
|
+
--dt-color-border-critical-strong: #FFE5E6;
|
|
8165
|
+
--dt-color-border-success-subtle: #1AA340;
|
|
8166
|
+
--dt-color-border-success-strong: #EDF9EB;
|
|
8167
|
+
--dt-color-border-warning-subtle: #D28F2B;
|
|
8168
|
+
--dt-color-border-warning-strong: hsl(47.1 100% 72%);
|
|
8169
|
+
--dt-color-border-brand-subtle: #3A1D95;
|
|
8170
|
+
--dt-color-border-brand-strong: #DAC7FF;
|
|
8171
|
+
--dt-color-border-critical-inverted: #EC0E0E;
|
|
8172
|
+
--dt-color-border-success-inverted: #1AA340;
|
|
8173
|
+
--dt-color-border-warning-inverted: #D28F2B;
|
|
8174
|
+
--dt-color-border-brand-inverted: #7C52FF;
|
|
8175
|
+
--dt-color-border-critical-subtle-inverted: #FF8585;
|
|
8176
|
+
--dt-color-border-critical-strong-inverted: #B70B0B;
|
|
8177
|
+
--dt-color-border-success-subtle-inverted: #B0FFA3;
|
|
8178
|
+
--dt-color-border-success-strong-inverted: #124620;
|
|
8179
|
+
--dt-color-border-warning-subtle-inverted: #FFDB80;
|
|
8180
|
+
--dt-color-border-warning-strong-inverted: #815008;
|
|
8181
|
+
--dt-color-border-brand-subtle-inverted: #DAC7FF;
|
|
8182
|
+
--dt-color-border-brand-strong-inverted: #3A1D95;
|
|
8869
8183
|
--dt-opacity-0: 0;
|
|
8870
8184
|
--dt-opacity-100: 0.05;
|
|
8871
8185
|
--dt-opacity-200: 0.1;
|
|
@@ -8880,14 +8194,14 @@ body {
|
|
|
8880
8194
|
--dt-opacity-1100: 0.8;
|
|
8881
8195
|
--dt-opacity-1200: 0.9;
|
|
8882
8196
|
--dt-opacity-1300: 1;
|
|
8883
|
-
--dt-font-family-body: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"
|
|
8884
|
-
--dt-font-family-expressive: Archivo,-apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"
|
|
8885
|
-
--dt-font-family-mono: SFMono-Regular, "SF Mono", Consolas, "Liberation Mono", Menlo, Courier, monospace
|
|
8886
|
-
--dt-font-size-100: 1.2rem;
|
|
8887
|
-
--dt-font-size-200: 1.5rem;
|
|
8888
|
-
--dt-font-size-300: 1.9rem;
|
|
8889
|
-
--dt-font-size-400: 2.7rem;
|
|
8890
|
-
--dt-font-size-500: 3.8rem;
|
|
8197
|
+
--dt-font-family-body: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8198
|
+
--dt-font-family-expressive: Archivo,-apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8199
|
+
--dt-font-family-mono: SFMono-Regular, '"SF Mono"', Consolas, '"Liberation Mono"', Menlo, Courier, monospace;
|
|
8200
|
+
--dt-font-size-100: 1.2rem; /* small */
|
|
8201
|
+
--dt-font-size-200: 1.5rem; /* medium / base */
|
|
8202
|
+
--dt-font-size-300: 1.9rem; /* large */
|
|
8203
|
+
--dt-font-size-400: 2.7rem; /* extra large / xl */
|
|
8204
|
+
--dt-font-size-500: 3.8rem; /* extra large / xxl */
|
|
8891
8205
|
--dt-font-size-root: 1rem;
|
|
8892
8206
|
--dt-font-line-height-100: 1;
|
|
8893
8207
|
--dt-font-line-height-200: 1.2;
|
|
@@ -8903,99 +8217,217 @@ body {
|
|
|
8903
8217
|
--dt-font-text-case-lowercase: lowercase;
|
|
8904
8218
|
--dt-font-text-case-capitalize: capitalize;
|
|
8905
8219
|
--dt-font-text-case-none: none;
|
|
8906
|
-
--dt-
|
|
8907
|
-
--dt-
|
|
8908
|
-
--dt-
|
|
8909
|
-
--dt-
|
|
8910
|
-
--dt-
|
|
8911
|
-
--dt-
|
|
8912
|
-
--dt-
|
|
8913
|
-
--dt-
|
|
8914
|
-
--dt-
|
|
8915
|
-
--dt-
|
|
8916
|
-
--dt-
|
|
8917
|
-
--dt-
|
|
8918
|
-
--dt-
|
|
8919
|
-
--dt-
|
|
8920
|
-
--dt-
|
|
8921
|
-
--dt-
|
|
8922
|
-
--dt-
|
|
8923
|
-
--dt-
|
|
8924
|
-
--dt-
|
|
8925
|
-
--dt-
|
|
8926
|
-
--dt-
|
|
8927
|
-
--dt-
|
|
8928
|
-
--dt-
|
|
8929
|
-
--dt-
|
|
8930
|
-
--dt-
|
|
8931
|
-
--dt-
|
|
8932
|
-
--dt-
|
|
8933
|
-
--dt-
|
|
8934
|
-
--dt-
|
|
8935
|
-
--dt-
|
|
8936
|
-
--dt-
|
|
8937
|
-
--dt-
|
|
8938
|
-
--dt-
|
|
8939
|
-
--dt-
|
|
8940
|
-
--dt-
|
|
8941
|
-
--dt-
|
|
8942
|
-
--dt-
|
|
8943
|
-
--dt-
|
|
8944
|
-
--dt-
|
|
8945
|
-
--dt-
|
|
8946
|
-
--dt-
|
|
8947
|
-
--dt-
|
|
8948
|
-
--dt-
|
|
8949
|
-
--dt-
|
|
8950
|
-
--dt-
|
|
8951
|
-
--dt-
|
|
8952
|
-
--dt-
|
|
8953
|
-
--dt-
|
|
8954
|
-
--dt-
|
|
8955
|
-
--dt-
|
|
8956
|
-
--dt-
|
|
8957
|
-
--dt-
|
|
8958
|
-
--dt-
|
|
8959
|
-
--dt-
|
|
8960
|
-
--dt-
|
|
8961
|
-
--dt-
|
|
8962
|
-
--dt-
|
|
8963
|
-
--dt-
|
|
8964
|
-
--dt-
|
|
8965
|
-
--dt-
|
|
8966
|
-
--dt-
|
|
8967
|
-
--dt-
|
|
8968
|
-
--dt-
|
|
8969
|
-
--dt-
|
|
8970
|
-
--dt-
|
|
8971
|
-
--dt-
|
|
8972
|
-
--dt-
|
|
8973
|
-
--dt-
|
|
8974
|
-
--dt-
|
|
8975
|
-
--dt-
|
|
8976
|
-
--dt-
|
|
8977
|
-
--dt-
|
|
8978
|
-
--dt-
|
|
8979
|
-
--dt-
|
|
8980
|
-
--dt-
|
|
8981
|
-
--dt-
|
|
8982
|
-
--dt-
|
|
8983
|
-
--dt-
|
|
8984
|
-
--dt-
|
|
8985
|
-
--dt-
|
|
8986
|
-
--dt-
|
|
8987
|
-
--dt-
|
|
8988
|
-
--dt-
|
|
8989
|
-
--dt-
|
|
8990
|
-
--dt-
|
|
8991
|
-
--dt-
|
|
8992
|
-
--dt-
|
|
8993
|
-
--dt-
|
|
8994
|
-
--dt-
|
|
8995
|
-
--dt-
|
|
8996
|
-
--dt-
|
|
8997
|
-
--dt-
|
|
8998
|
-
--dt-
|
|
8220
|
+
--dt-size-0: 0rem;
|
|
8221
|
+
--dt-size-50: 0.05rem;
|
|
8222
|
+
--dt-size-100: 0.1rem;
|
|
8223
|
+
--dt-size-200: 0.2rem;
|
|
8224
|
+
--dt-size-300: 0.4rem;
|
|
8225
|
+
--dt-size-350: 0.6rem;
|
|
8226
|
+
--dt-size-400: 0.8rem;
|
|
8227
|
+
--dt-size-450: 1.2rem;
|
|
8228
|
+
--dt-size-500: 1.6rem;
|
|
8229
|
+
--dt-size-525: 2rem;
|
|
8230
|
+
--dt-size-550: 2.4rem;
|
|
8231
|
+
--dt-size-600: 3.2rem;
|
|
8232
|
+
--dt-size-625: 4.2rem;
|
|
8233
|
+
--dt-size-650: 4.8rem;
|
|
8234
|
+
--dt-size-700: 6.4rem;
|
|
8235
|
+
--dt-size-720: 7.2rem;
|
|
8236
|
+
--dt-size-730: 8.4rem;
|
|
8237
|
+
--dt-size-750: 9.6rem;
|
|
8238
|
+
--dt-size-760: 10.2rem;
|
|
8239
|
+
--dt-size-775: 11.4rem;
|
|
8240
|
+
--dt-size-800: 12.8rem;
|
|
8241
|
+
--dt-size-825: 16.4rem;
|
|
8242
|
+
--dt-size-850: 19.2rem;
|
|
8243
|
+
--dt-size-875: 21.6rem;
|
|
8244
|
+
--dt-size-900: 25.6rem;
|
|
8245
|
+
--dt-size-905: 26.4rem;
|
|
8246
|
+
--dt-size-925: 33.2rem;
|
|
8247
|
+
--dt-size-950: 38.4rem;
|
|
8248
|
+
--dt-size-975: 46.4rem;
|
|
8249
|
+
--dt-size-1000: 51.2rem;
|
|
8250
|
+
--dt-size-1020: 62.8rem;
|
|
8251
|
+
--dt-size-1040: 76.4rem;
|
|
8252
|
+
--dt-size-1050: 76.8rem;
|
|
8253
|
+
--dt-size-1060: 82.8rem;
|
|
8254
|
+
--dt-size-1080: 91.2rem;
|
|
8255
|
+
--dt-size-1100: 102.4rem;
|
|
8256
|
+
--dt-size-1115: 114rem;
|
|
8257
|
+
--dt-size-1120: 126.8rem;
|
|
8258
|
+
--dt-size-1125: 128rem;
|
|
8259
|
+
--dt-size-1130: 134rem;
|
|
8260
|
+
--dt-size-1150: 153.6rem;
|
|
8261
|
+
--dt-size-1200: 204.8rem;
|
|
8262
|
+
--dt-size-50-negative: -0.05rem;
|
|
8263
|
+
--dt-size-100-negative: -0.1rem;
|
|
8264
|
+
--dt-size-200-negative: -0.2rem;
|
|
8265
|
+
--dt-size-300-negative: -0.4rem;
|
|
8266
|
+
--dt-size-350-negative: -0.6rem;
|
|
8267
|
+
--dt-size-400-negative: -0.8rem;
|
|
8268
|
+
--dt-size-450-negative: -1.2rem;
|
|
8269
|
+
--dt-size-500-negative: -1.6rem;
|
|
8270
|
+
--dt-size-525-negative: -2rem;
|
|
8271
|
+
--dt-size-550-negative: -2.4rem;
|
|
8272
|
+
--dt-size-600-negative: -3.2rem;
|
|
8273
|
+
--dt-size-625-negative: -4.2rem;
|
|
8274
|
+
--dt-size-650-negative: -4.8rem;
|
|
8275
|
+
--dt-size-700-negative: -6.4rem;
|
|
8276
|
+
--dt-size-720-negative: -7.2rem;
|
|
8277
|
+
--dt-size-730-negative: -8.4rem;
|
|
8278
|
+
--dt-size-750-negative: -9.6rem;
|
|
8279
|
+
--dt-size-760-negative: -10.2rem;
|
|
8280
|
+
--dt-size-775-negative: -11.4rem;
|
|
8281
|
+
--dt-size-800-negative: -12.8rem;
|
|
8282
|
+
--dt-size-825-negative: -16.4rem;
|
|
8283
|
+
--dt-size-850-negative: -19.2rem;
|
|
8284
|
+
--dt-size-875-negative: -21.6rem;
|
|
8285
|
+
--dt-size-900-negative: -25.6rem;
|
|
8286
|
+
--dt-size-905-negative: -26.4rem;
|
|
8287
|
+
--dt-size-925-negative: -33.2rem;
|
|
8288
|
+
--dt-size-950-negative: -38.4rem;
|
|
8289
|
+
--dt-size-975-negative: -46.4rem;
|
|
8290
|
+
--dt-size-1000-negative: -51.2rem;
|
|
8291
|
+
--dt-size-1020-negative: -62.8rem;
|
|
8292
|
+
--dt-size-1040-negative: -76.4rem;
|
|
8293
|
+
--dt-size-1050-negative: -76.8rem;
|
|
8294
|
+
--dt-size-1060-negative: -82.8rem;
|
|
8295
|
+
--dt-size-1080-negative: -91.2rem;
|
|
8296
|
+
--dt-size-1100-negative: -102.4rem;
|
|
8297
|
+
--dt-size-1115-negative: -114rem;
|
|
8298
|
+
--dt-size-1120-negative: -126.8rem;
|
|
8299
|
+
--dt-size-1125-negative: -128rem;
|
|
8300
|
+
--dt-size-1130-negative: -134rem;
|
|
8301
|
+
--dt-size-1150-negative: -153.6rem;
|
|
8302
|
+
--dt-size-1200-negative: -204.8rem;
|
|
8303
|
+
--dt-size-0-percent: 0%;
|
|
8304
|
+
--dt-size-5-percent: 5%;
|
|
8305
|
+
--dt-size-10-percent: 10%;
|
|
8306
|
+
--dt-size-20-percent: 20%;
|
|
8307
|
+
--dt-size-25-percent: 25%;
|
|
8308
|
+
--dt-size-30-percent: 30%;
|
|
8309
|
+
--dt-size-33-percent: 33.333%;
|
|
8310
|
+
--dt-size-40-percent: 40%;
|
|
8311
|
+
--dt-size-50-percent: 50%;
|
|
8312
|
+
--dt-size-60-percent: 60%;
|
|
8313
|
+
--dt-size-66-percent: 66.7%;
|
|
8314
|
+
--dt-size-70-percent: 70%;
|
|
8315
|
+
--dt-size-75-percent: 75%;
|
|
8316
|
+
--dt-size-80-percent: 80%;
|
|
8317
|
+
--dt-size-90-percent: 90%;
|
|
8318
|
+
--dt-size-95-percent: 95%;
|
|
8319
|
+
--dt-size-100-percent: 100%;
|
|
8320
|
+
--dt-size-base: 0.8rem;
|
|
8321
|
+
--dt-size-border-0: 0rem;
|
|
8322
|
+
--dt-size-border-50: 0.05rem;
|
|
8323
|
+
--dt-size-border-100: 0.1rem;
|
|
8324
|
+
--dt-size-border-150: 0.15rem;
|
|
8325
|
+
--dt-size-border-200: 0.2rem;
|
|
8326
|
+
--dt-size-border-300: 0.4rem;
|
|
8327
|
+
--dt-size-border-400: 0.8rem;
|
|
8328
|
+
--dt-size-border-focus: 0.3rem;
|
|
8329
|
+
--dt-size-radius-0: 0rem;
|
|
8330
|
+
--dt-size-radius-100: 0.1rem;
|
|
8331
|
+
--dt-size-radius-200: 0.2rem;
|
|
8332
|
+
--dt-size-radius-300: 0.4rem;
|
|
8333
|
+
--dt-size-radius-400: 0.8rem;
|
|
8334
|
+
--dt-size-radius-500: 1.6rem;
|
|
8335
|
+
--dt-size-radius-600: 3.2rem;
|
|
8336
|
+
--dt-size-radius-pill: 10rem;
|
|
8337
|
+
--dt-size-radius-circle: 50%;
|
|
8338
|
+
--dt-space-0: 0rem;
|
|
8339
|
+
--dt-space-50: 0.05rem;
|
|
8340
|
+
--dt-space-100: 0.1rem;
|
|
8341
|
+
--dt-space-200: 0.2rem;
|
|
8342
|
+
--dt-space-300: 0.4rem;
|
|
8343
|
+
--dt-space-350: 0.6rem;
|
|
8344
|
+
--dt-space-400: 0.8rem;
|
|
8345
|
+
--dt-space-450: 1.2rem;
|
|
8346
|
+
--dt-space-500: 1.6rem;
|
|
8347
|
+
--dt-space-525: 2rem;
|
|
8348
|
+
--dt-space-550: 2.4rem;
|
|
8349
|
+
--dt-space-600: 3.2rem;
|
|
8350
|
+
--dt-space-625: 4.2rem;
|
|
8351
|
+
--dt-space-650: 4.8rem;
|
|
8352
|
+
--dt-space-700: 6.4rem;
|
|
8353
|
+
--dt-space-720: 7.2rem;
|
|
8354
|
+
--dt-space-730: 8.4rem;
|
|
8355
|
+
--dt-space-750: 9.6rem;
|
|
8356
|
+
--dt-space-760: 10.2rem;
|
|
8357
|
+
--dt-space-775: 11.4rem;
|
|
8358
|
+
--dt-space-800: 12.8rem;
|
|
8359
|
+
--dt-space-825: 16.4rem;
|
|
8360
|
+
--dt-space-850: 19.2rem;
|
|
8361
|
+
--dt-space-875: 21.6rem;
|
|
8362
|
+
--dt-space-900: 25.6rem;
|
|
8363
|
+
--dt-space-905: 26.4rem;
|
|
8364
|
+
--dt-space-925: 33.2rem;
|
|
8365
|
+
--dt-space-950: 38.4rem;
|
|
8366
|
+
--dt-space-975: 46.4rem;
|
|
8367
|
+
--dt-space-1000: 51.2rem;
|
|
8368
|
+
--dt-space-1020: 62.8rem;
|
|
8369
|
+
--dt-space-1040: 76.4rem;
|
|
8370
|
+
--dt-space-1050: 76.8rem;
|
|
8371
|
+
--dt-space-1060: 82.8rem;
|
|
8372
|
+
--dt-space-1080: 91.2rem;
|
|
8373
|
+
--dt-space-1100: 102.4rem;
|
|
8374
|
+
--dt-space-1115: 114rem;
|
|
8375
|
+
--dt-space-1120: 126.8rem;
|
|
8376
|
+
--dt-space-1125: 128rem;
|
|
8377
|
+
--dt-space-1130: 134rem;
|
|
8378
|
+
--dt-space-1150: 153.6rem;
|
|
8379
|
+
--dt-space-1200: 204.8rem;
|
|
8380
|
+
--dt-space-50-negative: -0.05rem;
|
|
8381
|
+
--dt-space-100-negative: -0.1rem;
|
|
8382
|
+
--dt-space-200-negative: -0.2rem;
|
|
8383
|
+
--dt-space-300-negative: -0.4rem;
|
|
8384
|
+
--dt-space-350-negative: -0.6rem;
|
|
8385
|
+
--dt-space-400-negative: -0.8rem;
|
|
8386
|
+
--dt-space-450-negative: -1.2rem;
|
|
8387
|
+
--dt-space-500-negative: -1.6rem;
|
|
8388
|
+
--dt-space-525-negative: -2rem;
|
|
8389
|
+
--dt-space-550-negative: -2.4rem;
|
|
8390
|
+
--dt-space-600-negative: -3.2rem;
|
|
8391
|
+
--dt-space-625-negative: -4.2rem;
|
|
8392
|
+
--dt-space-650-negative: -4.8rem;
|
|
8393
|
+
--dt-space-700-negative: -6.4rem;
|
|
8394
|
+
--dt-space-720-negative: -7.2rem;
|
|
8395
|
+
--dt-space-730-negative: -8.4rem;
|
|
8396
|
+
--dt-space-750-negative: -9.6rem;
|
|
8397
|
+
--dt-space-760-negative: -10.2rem;
|
|
8398
|
+
--dt-space-775-negative: -11.4rem;
|
|
8399
|
+
--dt-space-800-negative: -12.8rem;
|
|
8400
|
+
--dt-space-825-negative: -16.4rem;
|
|
8401
|
+
--dt-space-850-negative: -19.2rem;
|
|
8402
|
+
--dt-space-875-negative: -21.6rem;
|
|
8403
|
+
--dt-space-900-negative: -25.6rem;
|
|
8404
|
+
--dt-space-905-negative: -26.4rem;
|
|
8405
|
+
--dt-space-925-negative: -33.2rem;
|
|
8406
|
+
--dt-space-950-negative: -38.4rem;
|
|
8407
|
+
--dt-space-975-negative: -46.4rem;
|
|
8408
|
+
--dt-space-1000-negative: -51.2rem;
|
|
8409
|
+
--dt-space-1020-negative: -62.8rem;
|
|
8410
|
+
--dt-space-1040-negative: -76.4rem;
|
|
8411
|
+
--dt-space-1050-negative: -76.8rem;
|
|
8412
|
+
--dt-space-1060-negative: -82.8rem;
|
|
8413
|
+
--dt-space-1080-negative: -91.2rem;
|
|
8414
|
+
--dt-space-1100-negative: -102.4rem;
|
|
8415
|
+
--dt-space-1115-negative: -114rem;
|
|
8416
|
+
--dt-space-1120-negative: -126.8rem;
|
|
8417
|
+
--dt-space-1125-negative: -128rem;
|
|
8418
|
+
--dt-space-1130-negative: -134rem;
|
|
8419
|
+
--dt-space-1150-negative: -153.6rem;
|
|
8420
|
+
--dt-space-1200-negative: -204.8rem;
|
|
8421
|
+
--dt-space-0-percent: 0%;
|
|
8422
|
+
--dt-space-5-percent: 5%;
|
|
8423
|
+
--dt-space-10-percent: 10%;
|
|
8424
|
+
--dt-space-20-percent: 20%;
|
|
8425
|
+
--dt-space-25-percent: 25%;
|
|
8426
|
+
--dt-space-30-percent: 30%;
|
|
8427
|
+
--dt-space-33-percent: 33.333%;
|
|
8428
|
+
--dt-space-40-percent: 40%;
|
|
8429
|
+
--dt-space-50-percent: 50%;
|
|
8430
|
+
--dt-space-60-percent: 60%;
|
|
8999
8431
|
--dt-space-66-percent: 66.7%;
|
|
9000
8432
|
--dt-space-70-percent: 70%;
|
|
9001
8433
|
--dt-space-75-percent: 75%;
|
|
@@ -9004,6 +8436,485 @@ body {
|
|
|
9004
8436
|
--dt-space-95-percent: 95%;
|
|
9005
8437
|
--dt-space-100-percent: 100%;
|
|
9006
8438
|
--dt-space-base: 0.8rem;
|
|
8439
|
+
--dt-shadow-small-1-x: 0rem;
|
|
8440
|
+
--dt-shadow-small-1-y: 0.2rem;
|
|
8441
|
+
--dt-shadow-small-1-blur: 0.4rem;
|
|
8442
|
+
--dt-shadow-small-1-spread: 0rem;
|
|
8443
|
+
--dt-shadow-small-1-color: rgba(0, 0, 0, 0.45);
|
|
8444
|
+
--dt-shadow-small-1-type: dropShadow;
|
|
8445
|
+
--dt-shadow-small-2-x: 0.05rem;
|
|
8446
|
+
--dt-shadow-small-2-y: 0.05rem;
|
|
8447
|
+
--dt-shadow-small-2-blur: 0rem;
|
|
8448
|
+
--dt-shadow-small-2-spread: 0rem;
|
|
8449
|
+
--dt-shadow-small-2-color: #000000;
|
|
8450
|
+
--dt-shadow-small-2-type: dropShadow;
|
|
8451
|
+
--dt-shadow-small-3-x: -0.05rem;
|
|
8452
|
+
--dt-shadow-small-3-y: -0.05rem;
|
|
8453
|
+
--dt-shadow-small-3-blur: 0;
|
|
8454
|
+
--dt-shadow-small-3-spread: 0;
|
|
8455
|
+
--dt-shadow-small-3-color: #000000;
|
|
8456
|
+
--dt-shadow-small-3-type: dropShadow;
|
|
8457
|
+
--dt-shadow-small-4-x: -0.05rem;
|
|
8458
|
+
--dt-shadow-small-4-y: 0.05rem;
|
|
8459
|
+
--dt-shadow-small-4-blur: 0;
|
|
8460
|
+
--dt-shadow-small-4-spread: 0;
|
|
8461
|
+
--dt-shadow-small-4-color: #000000;
|
|
8462
|
+
--dt-shadow-small-4-type: dropShadow;
|
|
8463
|
+
--dt-shadow-small-5-x: 0.05rem;
|
|
8464
|
+
--dt-shadow-small-5-y: -0.05rem;
|
|
8465
|
+
--dt-shadow-small-5-blur: 0;
|
|
8466
|
+
--dt-shadow-small-5-spread: 0;
|
|
8467
|
+
--dt-shadow-small-5-color: #000000;
|
|
8468
|
+
--dt-shadow-small-5-type: dropShadow;
|
|
8469
|
+
--dt-shadow-medium-1-x: 0rem;
|
|
8470
|
+
--dt-shadow-medium-1-y: 0.2rem;
|
|
8471
|
+
--dt-shadow-medium-1-blur: 0.8rem;
|
|
8472
|
+
--dt-shadow-medium-1-spread: 0rem;
|
|
8473
|
+
--dt-shadow-medium-1-color: rgba(0, 0, 0, 0.55);
|
|
8474
|
+
--dt-shadow-medium-1-type: dropShadow;
|
|
8475
|
+
--dt-shadow-medium-2-x: 0.05rem;
|
|
8476
|
+
--dt-shadow-medium-2-y: 0.05rem;
|
|
8477
|
+
--dt-shadow-medium-2-blur: 0rem;
|
|
8478
|
+
--dt-shadow-medium-2-spread: 0rem;
|
|
8479
|
+
--dt-shadow-medium-2-color: #000000;
|
|
8480
|
+
--dt-shadow-medium-2-type: dropShadow;
|
|
8481
|
+
--dt-shadow-medium-3-x: -0.05rem;
|
|
8482
|
+
--dt-shadow-medium-3-y: -0.05rem;
|
|
8483
|
+
--dt-shadow-medium-3-blur: 0;
|
|
8484
|
+
--dt-shadow-medium-3-spread: 0;
|
|
8485
|
+
--dt-shadow-medium-3-color: #000000;
|
|
8486
|
+
--dt-shadow-medium-3-type: dropShadow;
|
|
8487
|
+
--dt-shadow-medium-4-x: -0.05rem;
|
|
8488
|
+
--dt-shadow-medium-4-y: 0.05rem;
|
|
8489
|
+
--dt-shadow-medium-4-blur: 0;
|
|
8490
|
+
--dt-shadow-medium-4-spread: 0;
|
|
8491
|
+
--dt-shadow-medium-4-color: #000000;
|
|
8492
|
+
--dt-shadow-medium-4-type: dropShadow;
|
|
8493
|
+
--dt-shadow-medium-5-x: 0.05rem;
|
|
8494
|
+
--dt-shadow-medium-5-y: -0.05rem;
|
|
8495
|
+
--dt-shadow-medium-5-blur: 0;
|
|
8496
|
+
--dt-shadow-medium-5-spread: 0;
|
|
8497
|
+
--dt-shadow-medium-5-color: #000000;
|
|
8498
|
+
--dt-shadow-medium-5-type: dropShadow;
|
|
8499
|
+
--dt-shadow-large-1-x: 0rem;
|
|
8500
|
+
--dt-shadow-large-1-y: 0.2rem;
|
|
8501
|
+
--dt-shadow-large-1-blur: 1.6rem;
|
|
8502
|
+
--dt-shadow-large-1-spread: 0rem;
|
|
8503
|
+
--dt-shadow-large-1-color: rgba(0, 0, 0, 0.55);
|
|
8504
|
+
--dt-shadow-large-1-type: dropShadow;
|
|
8505
|
+
--dt-shadow-large-2-x: -0.05rem;
|
|
8506
|
+
--dt-shadow-large-2-y: 0.05rem;
|
|
8507
|
+
--dt-shadow-large-2-blur: 0rem;
|
|
8508
|
+
--dt-shadow-large-2-spread: 0rem;
|
|
8509
|
+
--dt-shadow-large-2-color: #000000;
|
|
8510
|
+
--dt-shadow-large-2-type: dropShadow;
|
|
8511
|
+
--dt-shadow-large-3-x: -0.05rem;
|
|
8512
|
+
--dt-shadow-large-3-y: -0.05rem;
|
|
8513
|
+
--dt-shadow-large-3-blur: 0;
|
|
8514
|
+
--dt-shadow-large-3-spread: 0;
|
|
8515
|
+
--dt-shadow-large-3-color: #000000;
|
|
8516
|
+
--dt-shadow-large-3-type: dropShadow;
|
|
8517
|
+
--dt-shadow-large-4-x: -0.05rem;
|
|
8518
|
+
--dt-shadow-large-4-y: 0.05rem;
|
|
8519
|
+
--dt-shadow-large-4-blur: 0;
|
|
8520
|
+
--dt-shadow-large-4-spread: 0;
|
|
8521
|
+
--dt-shadow-large-4-color: #000000;
|
|
8522
|
+
--dt-shadow-large-4-type: dropShadow;
|
|
8523
|
+
--dt-shadow-large-5-x: 0.05rem;
|
|
8524
|
+
--dt-shadow-large-5-y: -0.05rem;
|
|
8525
|
+
--dt-shadow-large-5-blur: 0;
|
|
8526
|
+
--dt-shadow-large-5-spread: 0;
|
|
8527
|
+
--dt-shadow-large-5-color: #000000;
|
|
8528
|
+
--dt-shadow-large-5-type: dropShadow;
|
|
8529
|
+
--dt-shadow-extra-large-1-x: 0rem;
|
|
8530
|
+
--dt-shadow-extra-large-1-y: 0.2rem;
|
|
8531
|
+
--dt-shadow-extra-large-1-blur: 3.2rem;
|
|
8532
|
+
--dt-shadow-extra-large-1-spread: 0rem;
|
|
8533
|
+
--dt-shadow-extra-large-1-color: rgba(0, 0, 0, 0.55);
|
|
8534
|
+
--dt-shadow-extra-large-1-type: dropShadow;
|
|
8535
|
+
--dt-shadow-extra-large-2-x: 0.05rem;
|
|
8536
|
+
--dt-shadow-extra-large-2-y: 0.05rem;
|
|
8537
|
+
--dt-shadow-extra-large-2-blur: 0rem;
|
|
8538
|
+
--dt-shadow-extra-large-2-spread: 0rem;
|
|
8539
|
+
--dt-shadow-extra-large-2-color: #000000;
|
|
8540
|
+
--dt-shadow-extra-large-2-type: dropShadow;
|
|
8541
|
+
--dt-shadow-extra-large-3-x: -0.05rem;
|
|
8542
|
+
--dt-shadow-extra-large-3-y: -0.05rem;
|
|
8543
|
+
--dt-shadow-extra-large-3-blur: 0;
|
|
8544
|
+
--dt-shadow-extra-large-3-spread: 0;
|
|
8545
|
+
--dt-shadow-extra-large-3-color: #000000;
|
|
8546
|
+
--dt-shadow-extra-large-3-type: dropShadow;
|
|
8547
|
+
--dt-shadow-extra-large-4-x: -0.05rem;
|
|
8548
|
+
--dt-shadow-extra-large-4-y: 0.05rem;
|
|
8549
|
+
--dt-shadow-extra-large-4-blur: 0;
|
|
8550
|
+
--dt-shadow-extra-large-4-spread: 0;
|
|
8551
|
+
--dt-shadow-extra-large-4-color: #000000;
|
|
8552
|
+
--dt-shadow-extra-large-4-type: dropShadow;
|
|
8553
|
+
--dt-shadow-extra-large-5-x: 0.05rem;
|
|
8554
|
+
--dt-shadow-extra-large-5-y: -0.05rem;
|
|
8555
|
+
--dt-shadow-extra-large-5-blur: 0;
|
|
8556
|
+
--dt-shadow-extra-large-5-spread: 0;
|
|
8557
|
+
--dt-shadow-extra-large-5-color: #000000;
|
|
8558
|
+
--dt-shadow-extra-large-5-type: dropShadow;
|
|
8559
|
+
--dt-shadow-card-1-x: 0rem;
|
|
8560
|
+
--dt-shadow-card-1-y: 0.1rem;
|
|
8561
|
+
--dt-shadow-card-1-blur: 0.2rem;
|
|
8562
|
+
--dt-shadow-card-1-spread: 0rem;
|
|
8563
|
+
--dt-shadow-card-1-color: rgba(0, 0, 0, 0.35);
|
|
8564
|
+
--dt-shadow-card-1-type: dropShadow;
|
|
8565
|
+
--dt-shadow-card-2-x: 0rem;
|
|
8566
|
+
--dt-shadow-card-2-y: 0.2rem;
|
|
8567
|
+
--dt-shadow-card-2-blur: 0.4rem;
|
|
8568
|
+
--dt-shadow-card-2-spread: 0rem;
|
|
8569
|
+
--dt-shadow-card-2-color: rgba(0, 0, 0, 0.45);
|
|
8570
|
+
--dt-shadow-card-2-type: dropShadow;
|
|
8571
|
+
--dt-shadow-card-3-x: 0rem;
|
|
8572
|
+
--dt-shadow-card-3-y: 0.2rem;
|
|
8573
|
+
--dt-shadow-card-3-blur: 1.6rem;
|
|
8574
|
+
--dt-shadow-card-3-spread: 0rem;
|
|
8575
|
+
--dt-shadow-card-3-color: rgba(0, 0, 0, 0.58);
|
|
8576
|
+
--dt-shadow-card-3-type: dropShadow;
|
|
8577
|
+
--dt-shadow-card-4-x: 0.05rem;
|
|
8578
|
+
--dt-shadow-card-4-y: 0.05rem;
|
|
8579
|
+
--dt-shadow-card-4-blur: 0rem;
|
|
8580
|
+
--dt-shadow-card-4-spread: 0rem;
|
|
8581
|
+
--dt-shadow-card-4-color: #000000;
|
|
8582
|
+
--dt-shadow-card-4-type: dropShadow;
|
|
8583
|
+
--dt-shadow-card-5-x: -0.05rem;
|
|
8584
|
+
--dt-shadow-card-5-y: -0.05rem;
|
|
8585
|
+
--dt-shadow-card-5-blur: 0;
|
|
8586
|
+
--dt-shadow-card-5-spread: 0;
|
|
8587
|
+
--dt-shadow-card-5-color: #000000;
|
|
8588
|
+
--dt-shadow-card-5-type: dropShadow;
|
|
8589
|
+
--dt-shadow-card-6-x: -0.05rem;
|
|
8590
|
+
--dt-shadow-card-6-y: 0.05rem;
|
|
8591
|
+
--dt-shadow-card-6-blur: 0;
|
|
8592
|
+
--dt-shadow-card-6-spread: 0;
|
|
8593
|
+
--dt-shadow-card-6-color: #000000;
|
|
8594
|
+
--dt-shadow-card-6-type: dropShadow;
|
|
8595
|
+
--dt-shadow-card-7-x: 0.05rem;
|
|
8596
|
+
--dt-shadow-card-7-y: -0.05rem;
|
|
8597
|
+
--dt-shadow-card-7-blur: 0;
|
|
8598
|
+
--dt-shadow-card-7-spread: 0;
|
|
8599
|
+
--dt-shadow-card-7-color: #000000;
|
|
8600
|
+
--dt-shadow-card-7-type: dropShadow;
|
|
8601
|
+
--dt-shadow-focus-1-x: 0rem;
|
|
8602
|
+
--dt-shadow-focus-1-y: 0rem;
|
|
8603
|
+
--dt-shadow-focus-1-blur: 0rem;
|
|
8604
|
+
--dt-shadow-focus-1-spread: 0.1rem;
|
|
8605
|
+
--dt-shadow-focus-1-color: #000000;
|
|
8606
|
+
--dt-shadow-focus-1-type: dropShadow;
|
|
8607
|
+
--dt-shadow-focus-2-x: 0rem;
|
|
8608
|
+
--dt-shadow-focus-2-y: 0rem;
|
|
8609
|
+
--dt-shadow-focus-2-blur: 0rem;
|
|
8610
|
+
--dt-shadow-focus-2-spread: 0.4rem;
|
|
8611
|
+
--dt-shadow-focus-2-color: #51A0FE;
|
|
8612
|
+
--dt-shadow-focus-2-type: dropShadow;
|
|
8613
|
+
--dt-shadow-focus-inset-1-x: 0rem;
|
|
8614
|
+
--dt-shadow-focus-inset-1-y: 0rem;
|
|
8615
|
+
--dt-shadow-focus-inset-1-blur: 0rem;
|
|
8616
|
+
--dt-shadow-focus-inset-1-spread: 0.3rem;
|
|
8617
|
+
--dt-shadow-focus-inset-1-color: #51A0FE;
|
|
8618
|
+
--dt-shadow-focus-inset-1-type: innerShadow;
|
|
8619
|
+
--dt-typography-body-small-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8620
|
+
--dt-typography-body-small-font-weight: 400;
|
|
8621
|
+
--dt-typography-body-small-line-height: 1.4;
|
|
8622
|
+
--dt-typography-body-small-font-size: 1.2rem;
|
|
8623
|
+
--dt-typography-body-small-text-case: none;
|
|
8624
|
+
--dt-typography-body-base-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8625
|
+
--dt-typography-body-base-font-weight: 400;
|
|
8626
|
+
--dt-typography-body-base-line-height: 1.6;
|
|
8627
|
+
--dt-typography-body-base-font-size: 1.5rem;
|
|
8628
|
+
--dt-typography-body-base-text-case: none;
|
|
8629
|
+
--dt-typography-body-compact-small-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8630
|
+
--dt-typography-body-compact-small-font-weight: 400;
|
|
8631
|
+
--dt-typography-body-compact-small-line-height: 1.2;
|
|
8632
|
+
--dt-typography-body-compact-small-font-size: 1.2rem;
|
|
8633
|
+
--dt-typography-body-compact-small-text-case: none;
|
|
8634
|
+
--dt-typography-body-compact-base-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8635
|
+
--dt-typography-body-compact-base-font-weight: 400;
|
|
8636
|
+
--dt-typography-body-compact-base-line-height: 1.4;
|
|
8637
|
+
--dt-typography-body-compact-base-font-size: 1.5rem;
|
|
8638
|
+
--dt-typography-body-compact-base-text-case: none;
|
|
8639
|
+
--dt-typography-headline-eyebrow-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8640
|
+
--dt-typography-headline-eyebrow-font-weight: 400;
|
|
8641
|
+
--dt-typography-headline-eyebrow-line-height: 1.4;
|
|
8642
|
+
--dt-typography-headline-eyebrow-font-size: 1.2rem;
|
|
8643
|
+
--dt-typography-headline-eyebrow-text-case: uppercase;
|
|
8644
|
+
--dt-typography-headline-small-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8645
|
+
--dt-typography-headline-small-font-weight: 700;
|
|
8646
|
+
--dt-typography-headline-small-line-height: 1.4;
|
|
8647
|
+
--dt-typography-headline-small-font-size: 1.2rem;
|
|
8648
|
+
--dt-typography-headline-small-text-case: none;
|
|
8649
|
+
--dt-typography-headline-medium-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8650
|
+
--dt-typography-headline-medium-font-weight: 700;
|
|
8651
|
+
--dt-typography-headline-medium-line-height: 1.6;
|
|
8652
|
+
--dt-typography-headline-medium-font-size: 1.5rem;
|
|
8653
|
+
--dt-typography-headline-medium-text-case: none;
|
|
8654
|
+
--dt-typography-headline-large-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8655
|
+
--dt-typography-headline-large-font-weight: 700;
|
|
8656
|
+
--dt-typography-headline-large-line-height: 1.6;
|
|
8657
|
+
--dt-typography-headline-large-font-size: 1.9rem;
|
|
8658
|
+
--dt-typography-headline-large-text-case: none;
|
|
8659
|
+
--dt-typography-headline-extra-large-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8660
|
+
--dt-typography-headline-extra-large-font-weight: 500;
|
|
8661
|
+
--dt-typography-headline-extra-large-line-height: 1.2;
|
|
8662
|
+
--dt-typography-headline-extra-large-font-size: 2.7rem;
|
|
8663
|
+
--dt-typography-headline-extra-large-text-case: none;
|
|
8664
|
+
--dt-typography-headline-extra-extra-large-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8665
|
+
--dt-typography-headline-extra-extra-large-font-weight: 500;
|
|
8666
|
+
--dt-typography-headline-extra-extra-large-line-height: 1.2;
|
|
8667
|
+
--dt-typography-headline-extra-extra-large-font-size: 3.8rem;
|
|
8668
|
+
--dt-typography-headline-extra-extra-large-text-case: none;
|
|
8669
|
+
--dt-typography-headline-soft-small-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8670
|
+
--dt-typography-headline-soft-small-font-weight: 500;
|
|
8671
|
+
--dt-typography-headline-soft-small-line-height: 1.4;
|
|
8672
|
+
--dt-typography-headline-soft-small-font-size: 1.2rem;
|
|
8673
|
+
--dt-typography-headline-soft-small-text-case: none;
|
|
8674
|
+
--dt-typography-headline-compact-small-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8675
|
+
--dt-typography-headline-compact-small-font-weight: 700;
|
|
8676
|
+
--dt-typography-headline-compact-small-line-height: 1.2;
|
|
8677
|
+
--dt-typography-headline-compact-small-font-size: 1.2rem;
|
|
8678
|
+
--dt-typography-headline-compact-small-text-case: none;
|
|
8679
|
+
--dt-typography-headline-compact-medium-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8680
|
+
--dt-typography-headline-compact-medium-font-weight: 700;
|
|
8681
|
+
--dt-typography-headline-compact-medium-line-height: 1.4;
|
|
8682
|
+
--dt-typography-headline-compact-medium-font-size: 1.5rem;
|
|
8683
|
+
--dt-typography-headline-compact-medium-text-case: none;
|
|
8684
|
+
--dt-typography-headline-compact-large-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8685
|
+
--dt-typography-headline-compact-large-font-weight: 700;
|
|
8686
|
+
--dt-typography-headline-compact-large-line-height: 1.2;
|
|
8687
|
+
--dt-typography-headline-compact-large-font-size: 1.9rem;
|
|
8688
|
+
--dt-typography-headline-compact-large-text-case: none;
|
|
8689
|
+
--dt-typography-headline-compact-soft-small-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8690
|
+
--dt-typography-headline-compact-soft-small-font-weight: 500;
|
|
8691
|
+
--dt-typography-headline-compact-soft-small-line-height: 1.2;
|
|
8692
|
+
--dt-typography-headline-compact-soft-small-font-size: 1.2rem;
|
|
8693
|
+
--dt-typography-headline-compact-soft-small-text-case: none;
|
|
8694
|
+
--dt-typography-label-small-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8695
|
+
--dt-typography-label-small-font-weight: 600;
|
|
8696
|
+
--dt-typography-label-small-line-height: 1.4;
|
|
8697
|
+
--dt-typography-label-small-font-size: 1.2rem;
|
|
8698
|
+
--dt-typography-label-small-text-case: none;
|
|
8699
|
+
--dt-typography-label-base-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8700
|
+
--dt-typography-label-base-font-weight: 600;
|
|
8701
|
+
--dt-typography-label-base-line-height: 1.6;
|
|
8702
|
+
--dt-typography-label-base-font-size: 1.5rem;
|
|
8703
|
+
--dt-typography-label-base-text-case: none;
|
|
8704
|
+
--dt-typography-label-compact-small-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8705
|
+
--dt-typography-label-compact-small-font-weight: 600;
|
|
8706
|
+
--dt-typography-label-compact-small-line-height: 1.2;
|
|
8707
|
+
--dt-typography-label-compact-small-font-size: 1.2rem;
|
|
8708
|
+
--dt-typography-label-compact-small-text-case: none;
|
|
8709
|
+
--dt-typography-label-compact-base-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8710
|
+
--dt-typography-label-compact-base-font-weight: 600;
|
|
8711
|
+
--dt-typography-label-compact-base-line-height: 1.4;
|
|
8712
|
+
--dt-typography-label-compact-base-font-size: 1.5rem;
|
|
8713
|
+
--dt-typography-label-compact-base-text-case: none;
|
|
8714
|
+
--dt-typography-label-compact-plain-small-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8715
|
+
--dt-typography-label-compact-plain-small-font-weight: 400;
|
|
8716
|
+
--dt-typography-label-compact-plain-small-line-height: 1.2;
|
|
8717
|
+
--dt-typography-label-compact-plain-small-font-size: 1.2rem;
|
|
8718
|
+
--dt-typography-label-compact-plain-small-text-case: none;
|
|
8719
|
+
--dt-typography-label-compact-plain-base-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8720
|
+
--dt-typography-label-compact-plain-base-font-weight: 400;
|
|
8721
|
+
--dt-typography-label-compact-plain-base-line-height: 1.4;
|
|
8722
|
+
--dt-typography-label-compact-plain-base-font-size: 1.5rem;
|
|
8723
|
+
--dt-typography-label-compact-plain-base-text-case: none;
|
|
8724
|
+
--dt-typography-label-plain-small-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8725
|
+
--dt-typography-label-plain-small-font-weight: 400;
|
|
8726
|
+
--dt-typography-label-plain-small-line-height: 1.4;
|
|
8727
|
+
--dt-typography-label-plain-small-font-size: 1.2rem;
|
|
8728
|
+
--dt-typography-label-plain-small-text-case: none;
|
|
8729
|
+
--dt-typography-label-plain-base-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8730
|
+
--dt-typography-label-plain-base-font-weight: 400;
|
|
8731
|
+
--dt-typography-label-plain-base-line-height: 1.6;
|
|
8732
|
+
--dt-typography-label-plain-base-font-size: 1.5rem;
|
|
8733
|
+
--dt-typography-label-plain-base-text-case: none;
|
|
8734
|
+
--dt-typography-helper-small-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8735
|
+
--dt-typography-helper-small-font-weight: 400;
|
|
8736
|
+
--dt-typography-helper-small-line-height: 1.2;
|
|
8737
|
+
--dt-typography-helper-small-font-size: 1.2rem;
|
|
8738
|
+
--dt-typography-helper-small-text-case: none;
|
|
8739
|
+
--dt-typography-helper-base-font-family: -apple-system, BlinkMacSystemFont, '"SF Pro"', '"Segoe UI Adjusted"', '"Segoe UI"', SFMono, '"Helvetica Neue"', Cantarell, Ubuntu, Roboto, Arial, '"Noto Sans"', sans-serif, '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"';
|
|
8740
|
+
--dt-typography-helper-base-font-weight: 400;
|
|
8741
|
+
--dt-typography-helper-base-line-height: 1.4;
|
|
8742
|
+
--dt-typography-helper-base-font-size: 1.5rem;
|
|
8743
|
+
--dt-typography-helper-base-text-case: none;
|
|
8744
|
+
--dt-typography-code-small-font-family: SFMono-Regular, '"SF Mono"', Consolas, '"Liberation Mono"', Menlo, Courier, monospace;
|
|
8745
|
+
--dt-typography-code-small-font-weight: 400;
|
|
8746
|
+
--dt-typography-code-small-line-height: 1.2;
|
|
8747
|
+
--dt-typography-code-small-font-size: 1.2rem;
|
|
8748
|
+
--dt-typography-code-small-text-case: none;
|
|
8749
|
+
--dt-typography-code-base-font-family: SFMono-Regular, '"SF Mono"', Consolas, '"Liberation Mono"', Menlo, Courier, monospace;
|
|
8750
|
+
--dt-typography-code-base-font-weight: 400;
|
|
8751
|
+
--dt-typography-code-base-line-height: 1.2;
|
|
8752
|
+
--dt-typography-code-base-font-size: 1.5rem;
|
|
8753
|
+
--dt-typography-code-base-text-case: none;
|
|
8754
|
+
--dt-inputs-size-border-default: 0.15rem;
|
|
8755
|
+
--dt-inputs-size-border-status: 0.2rem;
|
|
8756
|
+
--dt-inputs-size-radius-xs: 0.4rem;
|
|
8757
|
+
--dt-inputs-size-radius-sm: 0.8rem;
|
|
8758
|
+
--dt-inputs-size-radius-md: 0.8rem;
|
|
8759
|
+
--dt-inputs-size-radius-lg: 1.2rem;
|
|
8760
|
+
--dt-inputs-size-radius-xl: 1.6rem;
|
|
8761
|
+
--dt-inputs-line-height-default: 1.2;
|
|
8762
|
+
--dt-inputs-font-size-xs: 1.2rem;
|
|
8763
|
+
--dt-inputs-font-size-sm: 1.2rem;
|
|
8764
|
+
--dt-inputs-font-size-md: 1.5rem;
|
|
8765
|
+
--dt-inputs-font-size-lg: 1.9rem;
|
|
8766
|
+
--dt-inputs-font-size-xl: 2.7rem;
|
|
8767
|
+
--dt-inputs-color-foreground-default: #E6E6E6;
|
|
8768
|
+
--dt-inputs-color-foreground-placeholder: #AAAAAA;
|
|
8769
|
+
--dt-inputs-color-foreground-disabled: #AAAAAA;
|
|
8770
|
+
--dt-inputs-color-border-default: hsl(0 0% 100% / 0.14);
|
|
8771
|
+
--dt-inputs-color-border-focus: #51A0FE;
|
|
8772
|
+
--dt-inputs-color-border-critical: #FF8585;
|
|
8773
|
+
--dt-inputs-color-border-success: #B0FFA3;
|
|
8774
|
+
--dt-inputs-color-border-warning: #FFDB80;
|
|
8775
|
+
--dt-inputs-color-border-disabled: transparent;
|
|
8776
|
+
--dt-inputs-color-background-default: hsl(0 0% 90.2% / 0.06);
|
|
8777
|
+
--dt-inputs-color-background-focus: hsl(0 0% 90.2% / 0.03);
|
|
8778
|
+
--dt-inputs-color-background-disabled: hsl(0 0% 90.2% / 0.15);
|
|
8779
|
+
--dt-action-color-foreground-base-default: #AB7EFF;
|
|
8780
|
+
--dt-action-color-foreground-base-hover: lch(69.4 56.1 303);
|
|
8781
|
+
--dt-action-color-foreground-base-active: lch(69.4 56.1 303);
|
|
8782
|
+
--dt-action-color-foreground-base-primary-default: #ffffff;
|
|
8783
|
+
--dt-action-color-foreground-critical-default: #FF8585;
|
|
8784
|
+
--dt-action-color-foreground-critical-hover: lch(77.4 39.2 25.4);
|
|
8785
|
+
--dt-action-color-foreground-critical-active: lch(77.4 39.2 25.4);
|
|
8786
|
+
--dt-action-color-foreground-critical-primary-default: #ffffff;
|
|
8787
|
+
--dt-action-color-foreground-inverted-default: #000000;
|
|
8788
|
+
--dt-action-color-foreground-inverted-hover: #000000;
|
|
8789
|
+
--dt-action-color-foreground-inverted-active: #000000;
|
|
8790
|
+
--dt-action-color-foreground-inverted-primary-default: #AB7EFF;
|
|
8791
|
+
--dt-action-color-foreground-inverted-primary-hover: #DAC7FF;
|
|
8792
|
+
--dt-action-color-foreground-inverted-primary-active: #DAC7FF;
|
|
8793
|
+
--dt-action-color-foreground-muted-default: #C2C2C2;
|
|
8794
|
+
--dt-action-color-foreground-muted-hover: #C2C2C2;
|
|
8795
|
+
--dt-action-color-foreground-muted-active: #C2C2C2;
|
|
8796
|
+
--dt-action-color-foreground-disabled-default: #AAAAAA;
|
|
8797
|
+
--dt-action-color-background-base-default: transparent;
|
|
8798
|
+
--dt-action-color-background-base-hover: hsl(261 100% 74.7% / 0.1);
|
|
8799
|
+
--dt-action-color-background-base-active: hsl(261 100% 74.7% / 0.2);
|
|
8800
|
+
--dt-action-color-background-base-primary-default: #7C52FF;
|
|
8801
|
+
--dt-action-color-background-base-primary-hover: hsl(255 100% 63.4%);
|
|
8802
|
+
--dt-action-color-background-base-primary-active: hsl(255 100% 60.8%);
|
|
8803
|
+
--dt-action-color-background-critical-default: transparent;
|
|
8804
|
+
--dt-action-color-background-critical-hover: hsl(0 88.8% 49% / 0.2);
|
|
8805
|
+
--dt-action-color-background-critical-active: hsl(0 88.8% 49% / 0.3);
|
|
8806
|
+
--dt-action-color-background-critical-primary-default: #EC0E0E;
|
|
8807
|
+
--dt-action-color-background-critical-primary-hover: hsl(0 88.8% 45.1%);
|
|
8808
|
+
--dt-action-color-background-critical-primary-active: hsl(0 88.8% 43.1%);
|
|
8809
|
+
--dt-action-color-background-inverted-default: transparent;
|
|
8810
|
+
--dt-action-color-background-inverted-hover: hsl(0 0% 12% / 0.15);
|
|
8811
|
+
--dt-action-color-background-inverted-active: hsl(0 0% 12% / 0.3);
|
|
8812
|
+
--dt-action-color-background-inverted-primary-default: hsl(0 0% 12%);
|
|
8813
|
+
--dt-action-color-background-inverted-primary-hover: #10022C;
|
|
8814
|
+
--dt-action-color-background-inverted-primary-active: hsl(254 67.4% 33.5%);
|
|
8815
|
+
--dt-action-color-background-muted-default: transparent;
|
|
8816
|
+
--dt-action-color-background-muted-hover: hsl(0 0% 83.1% / 0.1);
|
|
8817
|
+
--dt-action-color-background-muted-active: hsl(0 0% 83.1% / 0.16);
|
|
8818
|
+
--dt-action-color-background-disabled-default: #3A3A3A;
|
|
8819
|
+
--dt-action-color-border-base-outlined-default: #AB7EFF;
|
|
8820
|
+
--dt-action-color-border-critical-outlined-default: #FF8585;
|
|
8821
|
+
--dt-action-color-border-inverted-outlined-default: #000000;
|
|
8822
|
+
--dt-action-color-border-muted-outlined-default: #AAAAAA;
|
|
8823
|
+
--dt-theme-color-base: #E6E6E6;
|
|
8824
|
+
--dt-theme-topbar-color-foreground: hsl(0 0% 90.2% / 0.75);
|
|
8825
|
+
--dt-theme-topbar-color-background: #262626;
|
|
8826
|
+
--dt-theme-topbar-field-color-foreground: hsl(0 0% 90.2% / 0.5);
|
|
8827
|
+
--dt-theme-topbar-field-color-foreground-hover: hsl(0 0% 90.2% / 0.75);
|
|
8828
|
+
--dt-theme-topbar-field-color-background: hsl(0 0% 90.2% / 0.05);
|
|
8829
|
+
--dt-theme-topbar-field-color-background-hover: hsl(0 0% 10.1%);
|
|
8830
|
+
--dt-theme-topbar-field-color-border: hsl(0 0% 90.2% / 0);
|
|
8831
|
+
--dt-theme-topbar-field-color-border-hover: hsl(0 0% 90.2% / 0.1);
|
|
8832
|
+
--dt-theme-topbar-field-color-border-active: hsl(0 0% 90.2% / 0.2);
|
|
8833
|
+
--dt-theme-topbar-button-color-foreground: hsl(0 0% 90.2% / 0.65);
|
|
8834
|
+
--dt-theme-topbar-button-color-foreground-hover: #E6E6E6;
|
|
8835
|
+
--dt-theme-topbar-button-color-background: hsl(0 0% 90.2% / 0);
|
|
8836
|
+
--dt-theme-topbar-button-color-background-hover: hsl(0 0% 90.2% / 0.15);
|
|
8837
|
+
--dt-theme-topbar-button-color-background-active: hsl(0 0% 90.2% / 0.1);
|
|
8838
|
+
--dt-theme-topbar-profile-color-foreground: hsl(0 0% 90.2% / 0.75);
|
|
8839
|
+
--dt-theme-topbar-profile-color-foreground-inverted: hsl(0 0% 0% / 0.75);
|
|
8840
|
+
--dt-theme-topbar-profile-color-background: hsl(0 0% 90.2% / 0.05);
|
|
8841
|
+
--dt-theme-topbar-profile-color-background-inverted: hsl(0 0% 90.2% / 0.75);
|
|
8842
|
+
--dt-theme-topbar-profile-color-background-hover: hsl(0 0% 90.2% / 0.1);
|
|
8843
|
+
--dt-theme-topbar-profile-color-background-active: hsl(0 0% 90.2% / 0.14);
|
|
8844
|
+
--dt-theme-sidebar-color-foreground: #C2C2C2;
|
|
8845
|
+
--dt-theme-sidebar-color-foreground-unread: #E6E6E6;
|
|
8846
|
+
--dt-theme-sidebar-color-background: #262626;
|
|
8847
|
+
--dt-theme-sidebar-icon-color-foreground: #C2C2C2;
|
|
8848
|
+
--dt-theme-sidebar-status-color-foreground: #AAAAAA;
|
|
8849
|
+
--dt-theme-sidebar-row-color-background: hsl(0 0% 90.2% / 0);
|
|
8850
|
+
--dt-theme-sidebar-row-color-background-hover: hsl(0 0% 90.2% / 0.18);
|
|
8851
|
+
--dt-theme-sidebar-row-color-background-active: hsl(0 0% 90.2% / 0.24);
|
|
8852
|
+
--dt-theme-sidebar-selected-row-color-foreground: #E6E6E6;
|
|
8853
|
+
--dt-theme-sidebar-selected-row-color-background: hsl(0 0% 90.2% / 0.2);
|
|
8854
|
+
--dt-theme-sidebar-section-color-foreground: #AAAAAA;
|
|
8855
|
+
--dt-theme-presence-color-background-available: #B0FFA3;
|
|
8856
|
+
--dt-theme-presence-color-background-busy-unavailable: #EC0E0E;
|
|
8857
|
+
--dt-theme-presence-color-background-busy: #F6AB3C;
|
|
8858
|
+
--dt-theme-presence-color-background-offline: #ffffff;
|
|
8859
|
+
--dt-theme-mention-color-foreground: #ffffff;
|
|
8860
|
+
--dt-theme-mention-color-background: #7C52FF;
|
|
8861
|
+
--dt-avatar-color-foreground: #000000;
|
|
8862
|
+
--dt-avatar-color-background-100: #1aa340;
|
|
8863
|
+
--dt-avatar-color-background-200: #aaff83;
|
|
8864
|
+
--dt-avatar-color-background-300: #adea88;
|
|
8865
|
+
--dt-avatar-color-background-400: #77eca6;
|
|
8866
|
+
--dt-avatar-color-background-500: #7aedbd;
|
|
8867
|
+
--dt-avatar-color-background-600: #77deec;
|
|
8868
|
+
--dt-avatar-color-background-700: #5ed8ff;
|
|
8869
|
+
--dt-avatar-color-background-800: #99e7ff;
|
|
8870
|
+
--dt-avatar-color-background-900: #51a0fe;
|
|
8871
|
+
--dt-avatar-color-background-1000: #b6cfff;
|
|
8872
|
+
--dt-avatar-color-background-1100: #f1b7e8;
|
|
8873
|
+
--dt-avatar-color-background-1200: #ec77bd;
|
|
8874
|
+
--dt-avatar-color-background-1300: #ff67be;
|
|
8875
|
+
--dt-avatar-color-background-1400: #f87e7e;
|
|
8876
|
+
--dt-avatar-color-background-1500: #eca877;
|
|
8877
|
+
--dt-avatar-color-background-1600: #ffbe41;
|
|
8878
|
+
--dt-avatar-color-background-1700: #ffd646;
|
|
8879
|
+
--dt-avatar-color-background-1800: #f1dab7;
|
|
8880
|
+
--dt-avatar-color-background-000: #e0e0e0;
|
|
8881
|
+
--dt-badge-color-background-default: hsl(0 0% 90.2% / 0.15);
|
|
8882
|
+
--dt-badge-color-background-info: #01326D;
|
|
8883
|
+
--dt-badge-color-background-success: #124620;
|
|
8884
|
+
--dt-badge-color-background-warning: #815008;
|
|
8885
|
+
--dt-badge-color-background-critical: #5B0505;
|
|
8886
|
+
--dt-badge-color-background-bulletin: #7C52FF;
|
|
8887
|
+
--dt-badge-color-background-ai: linear-gradient(135deg, #F9008E 10%, #7C52FF 90%);
|
|
8888
|
+
--dt-badge-color-foreground-default: #E6E6E6;
|
|
8889
|
+
--dt-badge-color-foreground-bulletin: #ffffff;
|
|
8890
|
+
--dt-checkbox-size-width: 1.6rem;
|
|
8891
|
+
--dt-checkbox-size-height: 1.6rem;
|
|
8892
|
+
--dt-checkbox-size-radius: 0.4rem;
|
|
8893
|
+
--dt-checkbox-color-border-unchecked: #808080;
|
|
8894
|
+
--dt-checkbox-color-border-checked: #7C52FF;
|
|
8895
|
+
--dt-checkbox-color-background-checked: #7C52FF;
|
|
8896
|
+
--dt-icon-size-100: 1.2rem;
|
|
8897
|
+
--dt-icon-size-200: 1.4rem;
|
|
8898
|
+
--dt-icon-size-300: 1.8rem;
|
|
8899
|
+
--dt-icon-size-400: 2rem;
|
|
8900
|
+
--dt-icon-size-500: 2.4rem;
|
|
8901
|
+
--dt-icon-size-600: 3.2rem;
|
|
8902
|
+
--dt-icon-size-700: 3.8rem;
|
|
8903
|
+
--dt-icon-size-800: 4.8rem;
|
|
8904
|
+
--dt-icon-size-border-100: 0.1rem;
|
|
8905
|
+
--dt-icon-size-border-200: 0.125rem;
|
|
8906
|
+
--dt-icon-size-border-300: 0.15rem;
|
|
8907
|
+
--dt-icon-size-border-400: 0.175rem;
|
|
8908
|
+
--dt-icon-size-border-500: 0.175rem;
|
|
8909
|
+
--dt-icon-size-border-600: 0.25rem;
|
|
8910
|
+
--dt-icon-size-border-700: 0.275rem;
|
|
8911
|
+
--dt-icon-size-border-800: 0.35rem;
|
|
8912
|
+
--dt-radio-size-width: 1.6rem;
|
|
8913
|
+
--dt-radio-size-height: 1.6rem;
|
|
8914
|
+
--dt-radio-size-radius: 50%;
|
|
8915
|
+
--dt-radio-color-border-unchecked: #808080;
|
|
8916
|
+
--dt-radio-color-border-checked: #7C52FF;
|
|
8917
|
+
--dt-radio-color-background-checked: #7C52FF;
|
|
9007
8918
|
}
|
|
9008
8919
|
|
|
9009
8920
|
.d-fc-neutral-white.d-fc-neutral-white, .h\:d-fc-neutral-white.h\:d-fc-neutral-white:hover, .f\:d-fc-neutral-white.f\:d-fc-neutral-white:focus, .f\:d-fc-neutral-white.f\:d-fc-neutral-white:focus-within, .fv\:d-fc-neutral-white.fv\:d-fc-neutral-white:focus-visible {
|
|
@@ -15004,7 +14915,7 @@ body {
|
|
|
15004
14915
|
--dt-color-neutral-black-hsla: hsla(var(--dt-color-neutral-black-h) var(--dt-color-neutral-black-s) var(--dt-color-neutral-black-l) / var(--alpha, 100%));
|
|
15005
14916
|
--dt-theme-topbar-field-color-background-hover-h: 0;
|
|
15006
14917
|
--dt-theme-topbar-field-color-background-hover-s: 0%;
|
|
15007
|
-
--dt-theme-topbar-field-color-background-hover-l:
|
|
14918
|
+
--dt-theme-topbar-field-color-background-hover-l: 10.196078431372548%;
|
|
15008
14919
|
--dt-theme-topbar-field-color-background-hover-hsl: var(--dt-theme-topbar-field-color-background-hover-h) var(--dt-theme-topbar-field-color-background-hover-s) var(--dt-theme-topbar-field-color-background-hover-l);
|
|
15009
14920
|
--dt-theme-topbar-field-color-background-hover-hsla: hsla(var(--dt-theme-topbar-field-color-background-hover-h) var(--dt-theme-topbar-field-color-background-hover-s) var(--dt-theme-topbar-field-color-background-hover-l) / var(--alpha, 100%));
|
|
15010
14921
|
--dt-theme-topbar-field-color-foreground-h: 0;
|
|
@@ -18565,4 +18476,4 @@ body {
|
|
|
18565
18476
|
}
|
|
18566
18477
|
|
|
18567
18478
|
|
|
18568
|
-
.d-avatar--image-loaded{background-color:transparent;background-image:unset}.d-avatar__count,.d-avatar__presence{z-index:var(--zi-base)}.d-avatar__overlay{background-color:var(--dt-color-surface-contrast-opaque);opacity:var(--dt-opacity-900);position:absolute;width:100%;height:100%;display:flex;align-items:center;justify-content:center;border-radius:var(--dt-size-radius-circle);z-index:var(--zi-base)}.d-avatar__overlay-icon{color:var(--dt-color-foreground-primary-inverted);width:100%}.d-avatar__overlay-text{color:var(--dt-color-foreground-primary-inverted);font-weight:var(--dt-font-weight-bold);font-size:var(--dt-font-size-200);width:100%;text-align:center}.dt-list-item{list-style:none}.dt-list-item:not(.dt-list-item--static){cursor:pointer;border-radius:var(--dt-size-300)}.dt-list-item--focusable:focus,.dt-list-item--focusable:focus-within,.dt-list-item--highlighted{background-color:var(--dt-color-surface-moderate-opaque)}.dt-list-item--highlighted:active{background-color:var(--dt-color-surface-bold-opaque)}.dt-list-item--selected-icon{margin-left:var(--dt-space-400)}.dt-list-item :focus-visible{outline:none;box-shadow:var(--dt-shadow-focus)}.dt-empty-list-item{display:flex;align-items:center;justify-content:center;font-size:var(--dt-font-size-200);line-height:var(--lh4);padding:var(--dt-space-300) var(--dt-space-450)}.enter-active,.leave-active{overflow:hidden;transition:height var(--td300) var(--ttf-quint)}.d-context-menu-list{width:var(--dt-size-850)}.dt-list-item[role=menuitem]{border-radius:var(--dt-size-300)}.dt-list-separator{border-top:var(--dt-size-100) solid var(--dt-color-border-default);list-style:none}.dt-list-section[tabindex="-1"]:focus{outline:none}.vue-recycle-scroller{position:relative}.vue-recycle-scroller.direction-vertical:not(.page-mode){overflow-y:auto}.vue-recycle-scroller.direction-horizontal:not(.page-mode){overflow-x:auto}.vue-recycle-scroller.direction-horizontal{display:flex}.vue-recycle-scroller__slot{flex:auto 0 0}.vue-recycle-scroller__item-wrapper{flex:1;box-sizing:border-box;overflow:hidden;position:relative}.vue-recycle-scroller.ready .vue-recycle-scroller__item-view{position:absolute;top:0;left:0;will-change:transform}.vue-recycle-scroller.direction-vertical .vue-recycle-scroller__item-wrapper{width:100%}.vue-recycle-scroller.direction-horizontal .vue-recycle-scroller__item-wrapper{height:100%}.vue-recycle-scroller.ready.direction-vertical .vue-recycle-scroller__item-view{width:100%}.vue-recycle-scroller.ready.direction-horizontal .vue-recycle-scroller__item-view{height:100%}.dt-recipe-callbar-button:not(.dt-recipe-callbar-button--circle){line-height:var(--dt-font-line-height-300)}.dt-recipe-callbar-button--circle{border-radius:var(--dt-size-radius-circle)}.dt-recipe-callbar-button.d-btn[disabled]{background-color:unset;opacity:.5}.dt-recipe-callbar-button--circle.d-btn[disabled]{border-color:unset}.dt-recipe-callbar-button--circle.d-btn--icon-only .d-btn__label{display:none}.dt-recipe-callbar-button--active .base-button__icon,.dt-recipe-callbar-button--active:hover .base-button__icon{color:var(--primary-color)}.dt-recipe--callbar-button-with-popover--arrow.d-btn--circle{margin-top:var(--dt-space-350-negative);margin-left:calc(var(--dt-space-300-negative) * 5);width:var(--dt-size-500);height:var(--dt-size-500);padding:var(--dt-space-400);border-radius:var(--dt-size-300)}.dt-recipe--callbar-button-with-popover--arrow.d-btn--circle.d-btn--active{background:var(--dt-color-surface-moderate-opaque)}.dt-recipe--callbar-button-with-popover--popover .d-popover__header{background:var(--dt-color-surface-contrast);color:var(--dt-color-foreground-primary-inverted)}.dt-recipe--callbar-button-with-popover--popover .d-popover__header .d-btn{color:var(--dt-color-foreground-primary-inverted)}.dt-recipe--callbar-button-with-popover--button .d-tab--selected:after,.dt-recipe--callbar-button-with-popover--button .d-tab--selected:hover:after{--tab--bgc: var(--dt-color-surface-contrast)}.dt-recipe--callbar-button-with-popover--button .tab-group{display:flex;flex-direction:column;height:100%}.dt-recipe--callbar-button-with-popover--button .tab-content{flex:1 1 100%;overflow-y:auto}.dt-contact-info[data-v-79689993] .dt-item-layout--content{min-width:var(--dt-space-825)}.dt-contact-info[data-v-79689993] .dt-item-layout--left{min-width:var(--dt-space-650);justify-content:flex-start}.dt-contact-info[data-v-79689993] .dt-item-layout--right{min-width:0}.dt-contact-info[data-v-79689993] .d-avatar{border-radius:var(--dt-size-radius-pill);border:var(--dt-size-300) solid var(--dt-color-surface-primary);box-sizing:unset}.d-top-banner-info__left{margin:var(--dt-space-300) 0 var(--dt-space-300) var(--dt-space-400);min-width:20%}.d-top-banner-info__middle{display:flex;align-items:center;gap:var(--dt-size-300)}.d-top-banner-info__right{display:flex;align-items:baseline;justify-content:flex-end;gap:var(--dt-size-300);margin:var(--dt-space-300) var(--dt-space-500) var(--dt-space-300) 0;min-width:20%}.ivr_node__width{width:280px}.ivr_node__goto_icon{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.ivr-connector{z-index:var(--zi-base1);display:flex;justify-content:center;align-items:center;border-color:var(--dt-color-purple-600);background-color:var(--dt-color-purple-600)}.dt-chip-content{font-variant-numeric:tabular-nums}.settings-menu-button[data-v-b0dfa8b3]{padding:var(--dt-space-0);border-radius:var(--dt-size-550);height:var(--dt-size-600);width:var(--dt-size-550);color:var(--dt-theme-topbar-button-color-foreground);background-color:var(--dt-theme-topbar-button-color-background)}.settings-menu-button[data-v-b0dfa8b3]:hover{background-color:var(--dt-theme-topbar-button-color-background-hover);color:var(--dt-theme-topbar-button-color-foreground-hover)}.settings-menu-button[data-v-b0dfa8b3]:active{background-color:var(--dt-theme-topbar-button-color-background-active)}.settings-menu-button-update[data-v-b0dfa8b3]{background-color:hsla(var(--dt-color-blue-200-hsl) / 25%);color:var(--dt-color-blue-500);border-color:hsla(var(--dt-color-blue-200-hsl) / 25%);border-radius:var(--dt-size-radius-pill);height:var(--dt-size-600)}.settings-menu-button-update[data-v-b0dfa8b3]:hover{background-color:hsla(var(--dt-color-blue-200-hsl) / 50%);color:var(--dt-theme-topbar-button-color-foreground-hover)}.dt-leftbar-row[data-v-7580a758]{--leftbar-row-color-foreground: var(--dt-theme-sidebar-color-foreground);--leftbar-row-color-background: var(--dt-theme-sidebar-row-color-background);--leftbar-row-radius: 100em;--leftbar-row-opacity: 100%;--leftbar-row-alpha-color-foreground: var(--dt-theme-sidebar-icon-color-foreground);--leftbar-row-alpha-width: calc(var(--dt-size-300) * 10);--leftbar-row-alpha-height: calc(var(--dt-size-300) * 9);--leftbar-row-omega-height: var(--leftbar-row-alpha-height);--leftbar-row-unread-badge-display: inline-flex;--leftbar-row-description-color-foreground: var(--dt-theme-sidebar-color-foreground);--leftbar-row-description-font-weight: var(--dt-font-weight-normal);--leftbar-row-description-font-size: var(--dt-font-size-200);--leftbar-row-description-line-height: var(--dt-font-line-height-200);--leftbar-row-status-color-foreground: var(--dt-theme-sidebar-status-color-foreground);--leftbar-row-status-font-size: var(--dt-font-size-100);--leftbar-row-status-line-height: var(--dt-font-line-height-100);--leftbar-row-action-position-right: var(--dt-size-400);--leftbar-row-action-position-bottom: 50%;--leftbar-row-action-width: var(--dt-size-550);--leftbar-row-action-height: var(--leftbar-row-action-width);position:relative;opacity:var(--leftbar-row-opacity);display:flex;background-color:var(--dt-theme-sidebar-row-color-background);border-radius:var(--leftbar-row-radius);transition-duration:var(--td200);transition-property:background-color,border,box-shadow;transition-timing-function:var(--ttf-out-quint);cursor:pointer}.dt-leftbar-row[data-v-7580a758]:not(.dt-leftbar-row--no-action):hover,.dt-leftbar-row[data-v-7580a758]:not(.dt-leftbar-row--no-action):focus-within{--leftbar-row-unread-badge-display: none}.dt-leftbar-row[data-v-7580a758]:not(.dt-leftbar-row--no-action):hover .dt-leftbar-row__action,.dt-leftbar-row[data-v-7580a758]:not(.dt-leftbar-row--no-action):focus-within .dt-leftbar-row__action{display:inline-flex}.dt-leftbar-row[data-v-7580a758]:not(.dt-leftbar-row--no-action):hover .dt-leftbar-row__action-button,.dt-leftbar-row[data-v-7580a758]:not(.dt-leftbar-row--no-action):focus-within .dt-leftbar-row__action-button{opacity:1}.dt-leftbar-row[data-v-7580a758]:hover,.dt-leftbar-row[data-v-7580a758]:focus-within{--leftbar-row-color-background: var(--dt-theme-sidebar-row-color-background-hover)}.dt-leftbar-row[data-v-7580a758]:hover .d-presence,.dt-leftbar-row[data-v-7580a758]:focus-within .d-presence{--presence-color-border-base: var(--dt-color-black-200)}.dt-leftbar-row[data-v-7580a758]:hover .d-avatar__count,.dt-leftbar-row[data-v-7580a758]:focus-within .d-avatar__count{--avatar-count-color-shadow: var(--dt-theme-sidebar-selected-row-color-background)}.dt-leftbar-row--has-unread[data-v-7580a758]{--leftbar-row-description-font-weight: var(--dt-font-weight-bold);--leftbar-row-description-color-foreground: var(--dt-theme-sidebar-color-foreground-unread);--leftbar-row-alpha-color-foreground: var(--dt-theme-sidebar-color-foreground-unread)}.dt-leftbar-row--unread-count[data-v-7580a758] .dt-leftbar-row__action{display:none}.dt-leftbar-row--muted[data-v-7580a758]{--leftbar-row-opacity: 60%}.dt-leftbar-row--selected[data-v-7580a758]{--leftbar-row-color-background: var(--dt-theme-sidebar-selected-row-color-background);--leftbar-row-color-foreground: var(--dt-theme-sidebar-selected-row-color-foreground)}.dt-leftbar-row--selected[data-v-7580a758] .d-presence{--presence-color-border-base: var(--dt-color-black-200)}.dt-leftbar-row--selected[data-v-7580a758] .d-avatar__count{--avatar-count-color-shadow: var(--dt-theme-sidebar-selected-row-color-background)}.dt-leftbar-row__is-typing[data-v-7580a758]{--is-typing-size-shape: var(--dt-size-550);height:var(--is-typing-size-shape);width:var(--is-typing-size-shape);position:absolute;display:flex;align-items:center;justify-content:center;gap:2px;border-radius:var(--dt-size-radius-pill);opacity:.75}.dt-leftbar-row__is-typing span[data-v-7580a758]{transition:all .5s ease;background:var(--dt-color-surface-strong);height:4px;width:4px;display:inline-block;padding:0;opacity:.3;border-radius:var(--dt-size-radius-pill);-webkit-animation:wave-7580a758 1.5s ease infinite;animation:wave-7580a758 1.5s ease infinite}.dt-leftbar-row__is-typing span[data-v-7580a758]:nth-child(1){-webkit-animation-delay:0ms;animation-delay:0ms}.dt-leftbar-row__is-typing span[data-v-7580a758]:nth-child(2){-webkit-animation-delay:var(--td100);animation-delay:var(--td100)}.dt-leftbar-row__is-typing span[data-v-7580a758]:nth-child(3){-webkit-animation-delay:var(--td200);animation-delay:var(--td200)}.dt-leftbar-row__primary[data-v-7580a758]{display:flex;align-items:center;flex:1;width:100%;text-align:left;background-color:var(--leftbar-row-color-background);color:var(--leftbar-row-color-foreground);text-decoration:none;-webkit-appearance:none;appearance:none;font-size:inherit;line-height:inherit;margin:0;border:0;padding:0;border-radius:var(--leftbar-row-radius)}.dt-leftbar-row__primary[data-v-7580a758]:active{--leftbar-row-color-background: var(--dt-theme-sidebar-row-color-background-active)}.dt-leftbar-row__primary[data-v-7580a758]:focus-visible{box-shadow:var(--dt-shadow-focus-inset)}.dt-leftbar-row__action-button[data-v-7580a758]{opacity:0;width:var(--leftbar-row-action-width);height:var(--leftbar-row-action-height)}.dt-leftbar-row__alpha[data-v-7580a758]{color:var(--leftbar-row-alpha-color-foreground);display:flex;box-sizing:border-box;justify-content:center;align-items:center;padding-left:var(--dt-space-400);padding-right:var(--dt-space-400);width:var(--leftbar-row-alpha-width);height:var(--leftbar-row-alpha-height);border-radius:var(--leftbar-row-radius) 0 0 var(--leftbar-row-radius)}.dt-leftbar-row__label[data-v-7580a758]{flex:0 1;min-width:0}.dt-leftbar-row__omega[data-v-7580a758]{position:absolute;display:flex;right:var(--leftbar-row-action-position-right);top:var(--leftbar-row-action-position-bottom);-webkit-transform:translateY(calc(var(--leftbar-row-action-position-bottom) * -1));transform:translateY(calc(var(--leftbar-row-action-position-bottom) * -1));gap:var(--dt-space-300);justify-content:flex-end;align-items:center;box-sizing:border-box;border-radius:var(--leftbar-row-radius)}.dt-leftbar-row__unread-badge[data-v-7580a758]{display:var(--leftbar-row-unread-badge-display)}.dt-leftbar-row__active-voice[data-v-7580a758]{color:var(--dt-color-foreground-success);display:inline-flex;-webkit-animation-name:opacity-pulsate-7580a758;-webkit-animation-duration:1s;-webkit-animation-iteration-count:infinite;-webkit-animation-fill-mode:both;-moz-animation-name:opacity-pulsate-7580a758;-moz-animation-duration:1s;-moz-animation-iteration-count:infinite;-moz-animation-fill-mode:both;animation-name:opacity-pulsate-7580a758;animation-duration:1s;animation-iteration-count:infinite;animation-fill-mode:both}.dt-leftbar-row__dnd[data-v-7580a758]{padding-top:var(--dt-space-200);padding-right:var(--dt-space-300);color:var(--dt-color-foreground-tertiary);font-size:var(--dt-font-size-100);line-height:var(--dt-font-line-height-400);font-weight:var(--dt-font-weight-medium)}.dt-leftbar-row[data-v-7580a758] .dt-leftbar-row__description{display:block;font-weight:var(--leftbar-row-description-font-weight);font-size:var(--leftbar-row-description-font-size);line-height:var(--leftbar-row-description-line-height);color:var(--leftbar-row-description-color-foreground);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dt-leftbar-row[data-v-7580a758] .dt-leftbar-row__status{display:block;color:var(--leftbar-row-status-color-foreground);font-size:var(--leftbar-row-status-font-size);line-height:var(--leftbar-row-status-line-height);padding-bottom:var(--dt-space-100);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dt-leftbar-row__meta-custom[data-v-7580a758]:not(:empty) .dt-leftbar-row__meta-context~.dt-leftbar-row__meta-custom:not(:empty):before{content:" • ";color:var(--dt-theme-sidebar-status-color-foreground)}.dt-leftbar-row__icon-cc[data-v-7580a758]{border-radius:var(--dt-size-200);width:calc(var(--dt-size-300) * 3.5);height:calc(var(--dt-size-300) * 3.5)}.opacity-pulsate[data-v-7580a758]{-webkit-animation-name:opacity-pulsate-7580a758;-webkit-animation-duration:1s;-webkit-animation-iteration-count:infinite;-webkit-animation-fill-mode:both;-moz-animation-name:opacity-pulsate-7580a758;-moz-animation-duration:1s;-moz-animation-iteration-count:infinite;-moz-animation-fill-mode:both;animation-name:opacity-pulsate-7580a758;animation-duration:1s;animation-iteration-count:infinite;animation-fill-mode:both}@-webkit-keyframes opacity-pulsate-7580a758{0%,to{opacity:.2}50%{opacity:1}}@keyframes opacity-pulsate-7580a758{0%,to{opacity:.2}50%{opacity:1}}@-webkit-keyframes wave-7580a758{0%,50%,to{-webkit-transform:translate(0);transform:translate(0)}10%{-webkit-transform:translateY(-5px);transform:translateY(-5px);opacity:90%}}@keyframes wave-7580a758{0%,50%,to{-webkit-transform:translate(0);transform:translate(0)}10%{-webkit-transform:translateY(-5px);transform:translateY(-5px);opacity:90%}}.dt-leftbar-unread-pill{display:flex;align-items:center;justify-content:center;padding:var(--dt-space-200) var(--dt-space-500) var(--dt-space-200) var(--dt-space-400);gap:var(--dt-space-300);font-size:var(--dt-font-size-100);box-shadow:var(--dt-shadow-medium);border-radius:var(--dt-size-radius-pill);border:none;line-height:var(--dt-font-line-height-600);cursor:pointer}.dt-leftbar-unread-pill--mentions{font-weight:var(--dt-font-weight-bold);background-color:var(--dt-theme-mention-color-background);color:var(--dt-theme-mention-color-foreground)}.dt-leftbar-unread-pill--messages{background-color:var(--dt-color-surface-primary);color:var(--dt-color-foreground-primary)}content-text-wrapper-class:not(img){line-height:1.6rem}.feed-item-row{transition-duration:2s!important}.dt-recipe-callbox[data-v-2f54beae]{background-color:var(--dt-color-surface-primary);border-radius:var(--dt-size-radius-300)}.dt-recipe-callbox[data-v-2f54beae] .dt-item-layout--left{justify-content:flex-start;padding-right:0}.dt-recipe-callbox[data-v-2f54beae] .dt-item-layout--content{overflow:hidden}.dt-recipe-callbox[data-v-2f54beae] .dt-item-layout--right{flex-shrink:0}.dt-recipe-callbox--main-content[data-v-2f54beae]{padding:0;border-radius:var(--dt-size-radius-300);border:var(--dt-size-border-200) solid transparent}.dt-recipe-callbox--main-content.dt-recipe-callbox--border-default[data-v-2f54beae]{border:var(--dt-size-border-200) solid var(--dt-color-border-default)}.dt-recipe-callbox--main-content.dt-recipe-callbox--border-ai[data-v-2f54beae]{background:linear-gradient(var(--dt-color-surface-primary),var(--dt-color-surface-primary)) padding-box,linear-gradient(135deg,var(--dt-color-border-accent),var(--dt-color-border-brand)) border-box}.dt-recipe-callbox--main-content.dt-recipe-callbox--border-critical[data-v-2f54beae]{background:radial-gradient(var(--dt-color-surface-primary),var(--dt-color-surface-primary)) padding-box,radial-gradient(circle,#E7301D,#F78B23) border-box}.dt-recipe-callbox--bottom-content[data-v-2f54beae]{border-top:1px solid var(--dt-color-border-subtle)}.dt-recipe-callbox--title[data-v-2f54beae]{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;font-weight:var(--dt-font-weight-bold)}.dt-recipe-callbox--subtitle[data-v-2f54beae]{padding:0;min-height:auto;font-size:var(--dt-font-size-100);color:var(--dt-color-foreground-tertiary)}.dt-recipe-callbox .dt-recipe-callbox-badge--warning[data-v-2f54beae]{background-color:var(--dt-color-surface-warning)}.ProseMirror p.is-editor-empty:first-child:before{content:attr(data-placeholder);float:left;color:var(--dt-color-foreground-placeholder);pointer-events:none;height:0}.dt-message-input--remaining-char{font-size:1.2rem}.message-input-button__disabled{background-color:unset;color:var(--theme-sidebar-icon-color);cursor:default}.dt-message-input-notice .d-notice__icon{margin-right:8px}.tippy-box[data-popper-reference-hidden] .d-popover__dialog,.tippy-box[data-popper-escaped] .d-popover__dialog{visibility:hidden;pointer-events:none}.skeleton-placeholder{display:flex;stroke:none;fill:var(--placeholder-from-color, var(--dt-color-black-300));background:var(--placeholder-from-color, var(--dt-color-black-300))}.skeleton-placeholder--animate{-webkit-animation-name:placeholder-throb;animation-name:placeholder-throb;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}@-webkit-keyframes placeholder-throb{10%{fill:var(--placeholder-from-color, var(--dt-color-black-300));background:var(--placeholder-from-color, var(--dt-color-black-300))}50%{fill:var(--placeholder-to-color, var(--dt-color-black-100));background:var(--placeholder-to-color, var(--dt-color-black-100))}90%{fill:var(--placeholder-from-color, var(--dt-color-black-300));background:var(--placeholder-from-color, var(--dt-color-black-300))}}@keyframes placeholder-throb{10%{fill:var(--placeholder-from-color, var(--dt-color-black-300));background:var(--placeholder-from-color, var(--dt-color-black-300))}50%{fill:var(--placeholder-to-color, var(--dt-color-black-100));background:var(--placeholder-to-color, var(--dt-color-black-100))}90%{fill:var(--placeholder-from-color, var(--dt-color-black-300));background:var(--placeholder-from-color, var(--dt-color-black-300))}}.tippy-box[data-popper-reference-hidden] .d-tooltip,.tippy-box[data-popper-escaped] .d-tooltip{visibility:hidden;pointer-events:none}
|
|
18479
|
+
.d-avatar--image-loaded{background-color:transparent;background-image:unset}.d-avatar__count,.d-avatar__presence{z-index:var(--zi-base)}.d-avatar__overlay{background-color:var(--dt-color-surface-contrast-opaque);opacity:var(--dt-opacity-900);position:absolute;width:100%;height:100%;display:flex;align-items:center;justify-content:center;border-radius:var(--dt-size-radius-circle);z-index:var(--zi-base)}.d-avatar__overlay-icon{color:var(--dt-color-foreground-primary-inverted);width:100%}.d-avatar__overlay-text{color:var(--dt-color-foreground-primary-inverted);font-weight:var(--dt-font-weight-bold);font-size:var(--dt-font-size-200);width:100%;text-align:center}.dt-list-item{list-style:none}.dt-list-item:not(.dt-list-item--static){cursor:pointer;border-radius:var(--dt-size-300)}.dt-list-item--focusable:focus,.dt-list-item--focusable:focus-within,.dt-list-item--highlighted{background-color:var(--dt-color-surface-moderate-opaque)}.dt-list-item--highlighted:active{background-color:var(--dt-color-surface-bold-opaque)}.dt-list-item--selected-icon{margin-left:var(--dt-space-400)}.dt-list-item :focus-visible{outline:none;box-shadow:var(--dt-shadow-focus)}.dt-empty-list-item{display:flex;align-items:center;justify-content:center;font-size:var(--dt-font-size-200);line-height:var(--lh4);padding:var(--dt-space-300) var(--dt-space-450)}.enter-active,.leave-active{overflow:hidden;transition:height var(--td300) var(--ttf-quint)}.d-context-menu-list{width:var(--dt-size-850)}.dt-list-item[role=menuitem]{border-radius:var(--dt-size-300)}.dt-list-separator{border-top:var(--dt-size-100) solid var(--dt-color-border-default);list-style:none}.dt-list-section[tabindex="-1"]:focus{outline:none}.vue-recycle-scroller{position:relative}.vue-recycle-scroller.direction-vertical:not(.page-mode){overflow-y:auto}.vue-recycle-scroller.direction-horizontal:not(.page-mode){overflow-x:auto}.vue-recycle-scroller.direction-horizontal{display:flex}.vue-recycle-scroller__slot{flex:auto 0 0}.vue-recycle-scroller__item-wrapper{flex:1;box-sizing:border-box;overflow:hidden;position:relative}.vue-recycle-scroller.ready .vue-recycle-scroller__item-view{position:absolute;top:0;left:0;will-change:transform}.vue-recycle-scroller.direction-vertical .vue-recycle-scroller__item-wrapper{width:100%}.vue-recycle-scroller.direction-horizontal .vue-recycle-scroller__item-wrapper{height:100%}.vue-recycle-scroller.ready.direction-vertical .vue-recycle-scroller__item-view{width:100%}.vue-recycle-scroller.ready.direction-horizontal .vue-recycle-scroller__item-view{height:100%}.dt-recipe-callbar-button:not(.dt-recipe-callbar-button--circle){line-height:var(--dt-font-line-height-300)}.dt-recipe-callbar-button--circle{border-radius:var(--dt-size-radius-circle)}.dt-recipe-callbar-button.d-btn[disabled]{background-color:unset;opacity:.5}.dt-recipe-callbar-button--circle.d-btn[disabled]{border-color:unset}.dt-recipe-callbar-button--circle.d-btn--icon-only .d-btn__label{display:none}.dt-recipe-callbar-button--active .base-button__icon,.dt-recipe-callbar-button--active:hover .base-button__icon{color:var(--primary-color)}.dt-recipe--callbar-button-with-popover--arrow.d-btn--circle{margin-top:var(--dt-space-350-negative);margin-left:calc(var(--dt-space-300-negative) * 5);width:var(--dt-size-500);height:var(--dt-size-500);padding:var(--dt-space-400);border-radius:var(--dt-size-300)}.dt-recipe--callbar-button-with-popover--arrow.d-btn--circle.d-btn--active{background:var(--dt-color-surface-moderate-opaque)}.dt-recipe--callbar-button-with-popover--popover .d-popover__header{background:var(--dt-color-surface-contrast);color:var(--dt-color-foreground-primary-inverted)}.dt-recipe--callbar-button-with-popover--popover .d-popover__header .d-btn{color:var(--dt-color-foreground-primary-inverted)}.dt-recipe--callbar-button-with-popover--button .d-tab--selected:after,.dt-recipe--callbar-button-with-popover--button .d-tab--selected:hover:after{--tab--bgc: var(--dt-color-surface-contrast)}.dt-recipe--callbar-button-with-popover--button .tab-group{display:flex;flex-direction:column;height:100%}.dt-recipe--callbar-button-with-popover--button .tab-content{flex:1 1 100%;overflow-y:auto}.dt-contact-info[data-v-965a64b5]{--contact-info-avatar-border-color: var(--dt-color-surface-primary)}.dt-contact-info[data-v-965a64b5] .dt-item-layout--content{min-width:var(--dt-space-825)}.dt-contact-info[data-v-965a64b5] .dt-item-layout--left{min-width:var(--dt-space-650);justify-content:flex-start}.dt-contact-info[data-v-965a64b5] .dt-item-layout--right{min-width:0}.dt-contact-info--avatars .d-avatar[data-v-965a64b5]{border-radius:var(--dt-size-radius-pill);border:var(--dt-size-300) solid var(--contact-info-avatar-border-color);box-sizing:unset}.d-top-banner-info__left{margin:var(--dt-space-300) 0 var(--dt-space-300) var(--dt-space-400);min-width:20%}.d-top-banner-info__middle{display:flex;align-items:center;gap:var(--dt-size-300)}.d-top-banner-info__right{display:flex;align-items:baseline;justify-content:flex-end;gap:var(--dt-size-300);margin:var(--dt-space-300) var(--dt-space-500) var(--dt-space-300) 0;min-width:20%}.ivr_node__width{width:280px}.ivr_node__goto_icon{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.ivr-connector{z-index:var(--zi-base1);display:flex;justify-content:center;align-items:center;border-color:var(--dt-color-purple-600);background-color:var(--dt-color-purple-600)}.dt-chip-content{font-variant-numeric:tabular-nums}.settings-menu-button[data-v-b0dfa8b3]{padding:var(--dt-space-0);border-radius:var(--dt-size-550);height:var(--dt-size-600);width:var(--dt-size-550);color:var(--dt-theme-topbar-button-color-foreground);background-color:var(--dt-theme-topbar-button-color-background)}.settings-menu-button[data-v-b0dfa8b3]:hover{background-color:var(--dt-theme-topbar-button-color-background-hover);color:var(--dt-theme-topbar-button-color-foreground-hover)}.settings-menu-button[data-v-b0dfa8b3]:active{background-color:var(--dt-theme-topbar-button-color-background-active)}.settings-menu-button-update[data-v-b0dfa8b3]{background-color:hsla(var(--dt-color-blue-200-hsl) / 25%);color:var(--dt-color-blue-500);border-color:hsla(var(--dt-color-blue-200-hsl) / 25%);border-radius:var(--dt-size-radius-pill);height:var(--dt-size-600)}.settings-menu-button-update[data-v-b0dfa8b3]:hover{background-color:hsla(var(--dt-color-blue-200-hsl) / 50%);color:var(--dt-theme-topbar-button-color-foreground-hover)}.dt-leftbar-row[data-v-7580a758]{--leftbar-row-color-foreground: var(--dt-theme-sidebar-color-foreground);--leftbar-row-color-background: var(--dt-theme-sidebar-row-color-background);--leftbar-row-radius: var(--dt-size-radius-pill);--leftbar-row-opacity: 100%;--leftbar-row-alpha-color-foreground: var(--dt-theme-sidebar-icon-color-foreground);--leftbar-row-alpha-width: calc(var(--dt-size-300) * 10);--leftbar-row-alpha-height: calc(var(--dt-size-300) * 9);--leftbar-row-omega-height: var(--leftbar-row-alpha-height);--leftbar-row-unread-badge-display: inline-flex;--leftbar-row-description-color-foreground: var(--dt-theme-sidebar-color-foreground);--leftbar-row-description-font-weight: var(--dt-font-weight-normal);--leftbar-row-description-font-size: var(--dt-font-size-200);--leftbar-row-description-line-height: var(--dt-font-line-height-200);--leftbar-row-status-color-foreground: var(--dt-theme-sidebar-status-color-foreground);--leftbar-row-status-font-size: var(--dt-font-size-100);--leftbar-row-status-line-height: var(--dt-font-line-height-100);--leftbar-row-action-position-right: var(--dt-size-400);--leftbar-row-action-position-bottom: 50%;--leftbar-row-action-width: var(--dt-size-550);--leftbar-row-action-height: var(--leftbar-row-action-width);position:relative;opacity:var(--leftbar-row-opacity);display:flex;background-color:var(--dt-theme-sidebar-row-color-background);border-radius:var(--leftbar-row-radius);transition-duration:var(--td200);transition-property:background-color,border,box-shadow;transition-timing-function:var(--ttf-out-quint);cursor:pointer}.dt-leftbar-row[data-v-7580a758]:not(.dt-leftbar-row--no-action):hover,.dt-leftbar-row[data-v-7580a758]:not(.dt-leftbar-row--no-action):focus-within{--leftbar-row-unread-badge-display: none}.dt-leftbar-row[data-v-7580a758]:not(.dt-leftbar-row--no-action):hover .dt-leftbar-row__action,.dt-leftbar-row[data-v-7580a758]:not(.dt-leftbar-row--no-action):focus-within .dt-leftbar-row__action{display:inline-flex}.dt-leftbar-row[data-v-7580a758]:not(.dt-leftbar-row--no-action):hover .dt-leftbar-row__action-button,.dt-leftbar-row[data-v-7580a758]:not(.dt-leftbar-row--no-action):focus-within .dt-leftbar-row__action-button{opacity:1}.dt-leftbar-row[data-v-7580a758]:hover,.dt-leftbar-row[data-v-7580a758]:focus-within{--leftbar-row-color-background: var(--dt-theme-sidebar-row-color-background-hover)}.dt-leftbar-row[data-v-7580a758]:hover .d-presence,.dt-leftbar-row[data-v-7580a758]:focus-within .d-presence{--presence-color-border-base: var(--dt-color-black-200)}.dt-leftbar-row[data-v-7580a758]:hover .d-avatar__count,.dt-leftbar-row[data-v-7580a758]:focus-within .d-avatar__count{--avatar-count-color-shadow: var(--dt-theme-sidebar-selected-row-color-background)}.dt-leftbar-row--has-unread[data-v-7580a758]{--leftbar-row-description-font-weight: var(--dt-font-weight-bold);--leftbar-row-description-color-foreground: var(--dt-theme-sidebar-color-foreground-unread);--leftbar-row-alpha-color-foreground: var(--dt-theme-sidebar-color-foreground-unread)}.dt-leftbar-row--unread-count[data-v-7580a758] .dt-leftbar-row__action{display:none}.dt-leftbar-row--muted[data-v-7580a758]{--leftbar-row-opacity: 60%}.dt-leftbar-row--selected[data-v-7580a758]{--leftbar-row-color-background: var(--dt-theme-sidebar-selected-row-color-background);--leftbar-row-description-color-foreground: var(--dt-theme-sidebar-selected-row-color-foreground)}.dt-leftbar-row--selected[data-v-7580a758] .d-presence{--presence-color-border-base: var(--dt-color-black-200)}.dt-leftbar-row--selected[data-v-7580a758] .d-avatar__count{--avatar-count-color-shadow: var(--dt-theme-sidebar-selected-row-color-background)}.dt-leftbar-row__is-typing[data-v-7580a758]{--is-typing-size-shape: var(--dt-size-550);height:var(--is-typing-size-shape);width:var(--is-typing-size-shape);position:absolute;display:flex;align-items:center;justify-content:center;gap:2px;border-radius:var(--dt-size-radius-pill);opacity:.75}.dt-leftbar-row__is-typing span[data-v-7580a758]{transition:all .5s ease;background:var(--dt-color-surface-strong);height:4px;width:4px;display:inline-block;padding:0;opacity:.3;border-radius:var(--dt-size-radius-pill);-webkit-animation:wave-7580a758 1.5s ease infinite;animation:wave-7580a758 1.5s ease infinite}.dt-leftbar-row__is-typing span[data-v-7580a758]:nth-child(1){-webkit-animation-delay:0ms;animation-delay:0ms}.dt-leftbar-row__is-typing span[data-v-7580a758]:nth-child(2){-webkit-animation-delay:var(--td100);animation-delay:var(--td100)}.dt-leftbar-row__is-typing span[data-v-7580a758]:nth-child(3){-webkit-animation-delay:var(--td200);animation-delay:var(--td200)}.dt-leftbar-row__primary[data-v-7580a758]{display:flex;align-items:center;flex:1;width:100%;text-align:left;background-color:var(--leftbar-row-color-background);color:var(--leftbar-row-color-foreground);text-decoration:none;-webkit-appearance:none;appearance:none;font-size:inherit;line-height:inherit;margin:0;border:0;padding:0;border-radius:var(--leftbar-row-radius)}.dt-leftbar-row__primary[data-v-7580a758]:active{--leftbar-row-color-background: var(--dt-theme-sidebar-row-color-background-active)}.dt-leftbar-row__primary[data-v-7580a758]:focus-visible{box-shadow:var(--dt-shadow-focus-inset)}.dt-leftbar-row__action-button[data-v-7580a758]{opacity:0;width:var(--leftbar-row-action-width);height:var(--leftbar-row-action-height)}.dt-leftbar-row__alpha[data-v-7580a758]{color:var(--leftbar-row-alpha-color-foreground);display:flex;box-sizing:border-box;justify-content:center;align-items:center;padding-left:var(--dt-space-400);padding-right:var(--dt-space-400);width:var(--leftbar-row-alpha-width);height:var(--leftbar-row-alpha-height);border-radius:var(--leftbar-row-radius) 0 0 var(--leftbar-row-radius)}.dt-leftbar-row__label[data-v-7580a758]{flex:0 1;min-width:0}.dt-leftbar-row__omega[data-v-7580a758]{position:absolute;display:flex;right:var(--leftbar-row-action-position-right);top:var(--leftbar-row-action-position-bottom);-webkit-transform:translateY(calc(var(--leftbar-row-action-position-bottom) * -1));transform:translateY(calc(var(--leftbar-row-action-position-bottom) * -1));gap:var(--dt-space-300);justify-content:flex-end;align-items:center;box-sizing:border-box;border-radius:var(--leftbar-row-radius)}.dt-leftbar-row__unread-badge[data-v-7580a758]{display:var(--leftbar-row-unread-badge-display)}.dt-leftbar-row__active-voice[data-v-7580a758]{color:var(--dt-color-foreground-success);display:inline-flex;-webkit-animation-name:opacity-pulsate-7580a758;-webkit-animation-duration:1s;-webkit-animation-iteration-count:infinite;-webkit-animation-fill-mode:both;-moz-animation-name:opacity-pulsate-7580a758;-moz-animation-duration:1s;-moz-animation-iteration-count:infinite;-moz-animation-fill-mode:both;animation-name:opacity-pulsate-7580a758;animation-duration:1s;animation-iteration-count:infinite;animation-fill-mode:both}.dt-leftbar-row__dnd[data-v-7580a758]{padding-top:var(--dt-space-200);padding-right:var(--dt-space-300);color:var(--dt-color-foreground-tertiary);font-size:var(--dt-font-size-100);line-height:var(--dt-font-line-height-400);font-weight:var(--dt-font-weight-medium)}.dt-leftbar-row[data-v-7580a758] .dt-leftbar-row__description{display:block;font-weight:var(--leftbar-row-description-font-weight);font-size:var(--leftbar-row-description-font-size);line-height:var(--leftbar-row-description-line-height);color:var(--leftbar-row-description-color-foreground);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dt-leftbar-row[data-v-7580a758] .dt-leftbar-row__status{display:block;color:var(--leftbar-row-status-color-foreground);font-size:var(--leftbar-row-status-font-size);line-height:var(--leftbar-row-status-line-height);padding-bottom:var(--dt-space-100);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dt-leftbar-row__meta-custom[data-v-7580a758]:not(:empty) .dt-leftbar-row__meta-context~.dt-leftbar-row__meta-custom:not(:empty):before{content:" • ";color:var(--dt-theme-sidebar-status-color-foreground)}.dt-leftbar-row__icon-cc[data-v-7580a758]{border-radius:var(--dt-size-200);width:calc(var(--dt-size-300) * 3.5);height:calc(var(--dt-size-300) * 3.5)}.opacity-pulsate[data-v-7580a758]{-webkit-animation-name:opacity-pulsate-7580a758;-webkit-animation-duration:1s;-webkit-animation-iteration-count:infinite;-webkit-animation-fill-mode:both;-moz-animation-name:opacity-pulsate-7580a758;-moz-animation-duration:1s;-moz-animation-iteration-count:infinite;-moz-animation-fill-mode:both;animation-name:opacity-pulsate-7580a758;animation-duration:1s;animation-iteration-count:infinite;animation-fill-mode:both}@-webkit-keyframes opacity-pulsate-7580a758{0%,to{opacity:.2}50%{opacity:1}}@keyframes opacity-pulsate-7580a758{0%,to{opacity:.2}50%{opacity:1}}@-webkit-keyframes wave-7580a758{0%,50%,to{-webkit-transform:translate(0);transform:translate(0)}10%{-webkit-transform:translateY(-5px);transform:translateY(-5px);opacity:90%}}@keyframes wave-7580a758{0%,50%,to{-webkit-transform:translate(0);transform:translate(0)}10%{-webkit-transform:translateY(-5px);transform:translateY(-5px);opacity:90%}}.dt-leftbar-unread-pill{display:flex;align-items:center;justify-content:center;padding:var(--dt-space-200) var(--dt-space-500) var(--dt-space-200) var(--dt-space-400);gap:var(--dt-space-300);font-size:var(--dt-font-size-100);box-shadow:var(--dt-shadow-medium);border-radius:var(--dt-size-radius-pill);border:none;line-height:var(--dt-font-line-height-600);cursor:pointer}.dt-leftbar-unread-pill--mentions{font-weight:var(--dt-font-weight-bold);background-color:var(--dt-theme-mention-color-background);color:var(--dt-theme-mention-color-foreground)}.dt-leftbar-unread-pill--messages{background-color:var(--dt-color-surface-contrast);color:var(--dt-color-foreground-secondary-inverted)}content-text-wrapper-class:not(img){line-height:1.6rem}.feed-item-row{transition-duration:2s!important}.dt-recipe-callbox[data-v-de9e7394]{padding:0;color:var(--dt-color-foreground-primary);background-color:var(--dt-color-surface-primary);border-radius:var(--dt-size-radius-300)}.dt-recipe-callbox[data-v-de9e7394] .dt-item-layout--left{justify-content:flex-start;padding-right:0}.dt-recipe-callbox[data-v-de9e7394] .dt-item-layout--content{overflow:hidden}.dt-recipe-callbox[data-v-de9e7394] .dt-item-layout--bottom{margin-top:0}.dt-recipe-callbox[data-v-de9e7394] .dt-item-layout--right{flex-shrink:0}.dt-recipe-callbox--video[data-v-de9e7394]{border-radius:var(--dt-size-radius-200) var(--dt-size-radius-200) 0 0;overflow:hidden;height:calc(var(--dt-size-760) + var(--dt-size-650));margin-bottom:var(--dt-size-300-negative)}.dt-recipe-callbox--video[data-v-de9e7394] img{-o-object-fit:cover;object-fit:cover;width:100%;height:100%}.dt-recipe-callbox--main-content[data-v-de9e7394]{padding:0;border-radius:var(--dt-size-radius-300);border:var(--dt-size-border-100) solid transparent}.dt-recipe-callbox--main-content.dt-recipe-callbox--border-default[data-v-de9e7394]{border-color:var(--dt-color-border-default)}.dt-recipe-callbox--main-content.dt-recipe-callbox--border-ai[data-v-de9e7394]{background:linear-gradient(var(--dt-color-surface-primary),var(--dt-color-surface-primary)) padding-box,linear-gradient(135deg,var(--dt-color-border-accent),var(--dt-color-border-brand)) border-box}.dt-recipe-callbox--main-content.dt-recipe-callbox--border-critical[data-v-de9e7394]{background:radial-gradient(var(--dt-color-surface-primary),var(--dt-color-surface-primary)) padding-box,radial-gradient(circle,#E7301D,#F78B23) border-box}.dt-recipe-callbox--bottom-content[data-v-de9e7394]{border-top:1px solid var(--dt-color-border-subtle)}.dt-recipe-callbox--title[data-v-de9e7394]{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;color:var(--dt-color-foreground-primary);background-color:var(--dt-color-surface-primary);font-weight:var(--dt-font-weight-bold)}.dt-recipe-callbox--subtitle[data-v-de9e7394]{padding:0;min-height:auto;font-size:var(--dt-font-size-100)}.dt-recipe-callbox--subtitle-badge[data-v-de9e7394]{padding-top:var(--dt-space-300)}.dt-recipe-callbox--subtitle-content[data-v-de9e7394] :last-child{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;color:var(--dt-color-foreground-tertiary);background-color:var(--dt-color-surface-primary)}.dt-recipe-callbox .dt-recipe-callbox-badge--warning[data-v-de9e7394]{background-color:var(--dt-color-surface-warning)}.ProseMirror p.is-editor-empty:first-child:before{content:attr(data-placeholder);float:left;color:var(--dt-color-foreground-placeholder);pointer-events:none;height:0}.dt-message-input--remaining-char{font-size:1.2rem}.message-input-button__disabled{background-color:unset;color:var(--theme-sidebar-icon-color);cursor:default}.dt-message-input-notice .d-notice__icon{margin-right:8px}.tippy-box[data-popper-reference-hidden] .d-popover__dialog,.tippy-box[data-popper-escaped] .d-popover__dialog{visibility:hidden;pointer-events:none}.skeleton-placeholder{display:flex;stroke:none;fill:var(--placeholder-from-color, var(--dt-color-black-300));background:var(--placeholder-from-color, var(--dt-color-black-300))}.skeleton-placeholder--animate{-webkit-animation-name:placeholder-throb;animation-name:placeholder-throb;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}@-webkit-keyframes placeholder-throb{10%{fill:var(--placeholder-from-color, var(--dt-color-black-300));background:var(--placeholder-from-color, var(--dt-color-black-300))}50%{fill:var(--placeholder-to-color, var(--dt-color-black-100));background:var(--placeholder-to-color, var(--dt-color-black-100))}90%{fill:var(--placeholder-from-color, var(--dt-color-black-300));background:var(--placeholder-from-color, var(--dt-color-black-300))}}@keyframes placeholder-throb{10%{fill:var(--placeholder-from-color, var(--dt-color-black-300));background:var(--placeholder-from-color, var(--dt-color-black-300))}50%{fill:var(--placeholder-to-color, var(--dt-color-black-100));background:var(--placeholder-to-color, var(--dt-color-black-100))}90%{fill:var(--placeholder-from-color, var(--dt-color-black-300));background:var(--placeholder-from-color, var(--dt-color-black-300))}}.tippy-box[data-popper-reference-hidden] .d-tooltip,.tippy-box[data-popper-escaped] .d-tooltip{visibility:hidden;pointer-events:none}
|