@seed-design/css 0.2.1 → 0.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/all.css +381 -212
- package/all.min.css +1 -1
- package/base.css +2 -2
- package/base.min.css +1 -1
- package/package.json +1 -1
- package/recipes/badge.css +1 -1
- package/recipes/checkbox.css +7 -114
- package/recipes/checkbox.d.ts +3 -7
- package/recipes/checkbox.mjs +4 -34
- package/recipes/checkmark.css +108 -0
- package/recipes/checkmark.d.ts +32 -0
- package/recipes/checkmark.mjs +86 -0
- package/recipes/chip-tabs.css +42 -10
- package/recipes/chip-tabs.d.ts +5 -1
- package/recipes/chip-tabs.mjs +6 -0
- package/recipes/list-item.css +102 -0
- package/recipes/list-item.d.ts +24 -0
- package/recipes/list-item.mjs +59 -0
- package/recipes/page-banner.css +5 -5
- package/recipes/radio.css +29 -50
- package/recipes/radio.d.ts +5 -1
- package/recipes/radio.mjs +8 -3
- package/recipes/radiomark.css +80 -0
- package/recipes/radiomark.d.ts +28 -0
- package/recipes/radiomark.mjs +48 -0
- package/recipes/select-box.css +0 -68
- package/recipes/select-box.d.ts +1 -1
- package/recipes/select-box.mjs +0 -16
- package/recipes/switch.css +15 -7
- package/recipes/switch.d.ts +4 -0
- package/recipes/switch.mjs +5 -0
- package/recipes/text-field.css +8 -9
- package/vars/component/badge.d.ts +1 -1
- package/vars/component/badge.mjs +1 -1
- package/vars/component/checkbox.d.ts +7 -125
- package/vars/component/checkbox.mjs +7 -125
- package/vars/component/checkmark.d.ts +155 -0
- package/vars/component/checkmark.mjs +155 -0
- package/vars/component/chip-tab.d.ts +70 -10
- package/vars/component/chip-tab.mjs +70 -10
- package/vars/component/chip-tablist.d.ts +10 -2
- package/vars/component/chip-tablist.mjs +10 -2
- package/vars/component/index.d.ts +3 -0
- package/vars/component/index.mjs +3 -0
- package/vars/component/list-item.d.ts +72 -0
- package/vars/component/list-item.mjs +72 -0
- package/vars/component/page-banner.d.ts +5 -5
- package/vars/component/page-banner.mjs +5 -5
- package/vars/component/radio.d.ts +28 -52
- package/vars/component/radio.mjs +28 -52
- package/vars/component/radiomark.d.ts +98 -0
- package/vars/component/radiomark.mjs +98 -0
- package/vars/component/select-box.d.ts +0 -47
- package/vars/component/select-box.mjs +0 -47
- package/vars/component/switch.d.ts +28 -10
- package/vars/component/switch.mjs +28 -10
package/all.css
CHANGED
|
@@ -639,8 +639,8 @@
|
|
|
639
639
|
--seed-color-bg-positive-solid-pressed: var(--seed-color-palette-green-600);
|
|
640
640
|
--seed-color-bg-positive-weak-pressed: var(--seed-color-palette-green-200);
|
|
641
641
|
--seed-color-bg-warning-weak: var(--seed-color-palette-yellow-100);
|
|
642
|
-
--seed-color-bg-warning-solid: var(--seed-color-palette-yellow-
|
|
643
|
-
--seed-color-bg-warning-solid-pressed: var(--seed-color-palette-yellow-
|
|
642
|
+
--seed-color-bg-warning-solid: var(--seed-color-palette-yellow-800);
|
|
643
|
+
--seed-color-bg-warning-solid-pressed: var(--seed-color-palette-yellow-900);
|
|
644
644
|
--seed-color-bg-warning-weak-pressed: var(--seed-color-palette-yellow-200);
|
|
645
645
|
--seed-color-stroke-brand-weak: var(--seed-color-palette-carrot-300);
|
|
646
646
|
--seed-color-stroke-brand-solid: var(--seed-color-palette-carrot-700);
|
|
@@ -2305,7 +2305,7 @@
|
|
|
2305
2305
|
|
|
2306
2306
|
.seed-badge__root--tone_warning-variant_solid {
|
|
2307
2307
|
background-color: var(--seed-color-bg-warning-solid);
|
|
2308
|
-
color: var(--seed-color-
|
|
2308
|
+
color: var(--seed-color-palette-static-black-alpha-900);
|
|
2309
2309
|
}
|
|
2310
2310
|
|
|
2311
2311
|
.seed-badge__root--tone_warning-variant_outline {
|
|
@@ -2648,13 +2648,52 @@
|
|
|
2648
2648
|
cursor: not-allowed;
|
|
2649
2649
|
}
|
|
2650
2650
|
|
|
2651
|
-
.seed-
|
|
2651
|
+
.seed-checkbox__label {
|
|
2652
|
+
color: var(--seed-color-fg-neutral);
|
|
2653
|
+
}
|
|
2654
|
+
|
|
2655
|
+
.seed-checkbox__label:is(:disabled, [disabled], [data-disabled]) {
|
|
2656
|
+
color: var(--seed-color-fg-disabled);
|
|
2657
|
+
}
|
|
2658
|
+
|
|
2659
|
+
.seed-checkbox__label--weight_regular {
|
|
2660
|
+
font-weight: var(--seed-font-weight-regular);
|
|
2661
|
+
}
|
|
2662
|
+
|
|
2663
|
+
.seed-checkbox__label--weight_bold {
|
|
2664
|
+
font-weight: var(--seed-font-weight-bold);
|
|
2665
|
+
}
|
|
2666
|
+
|
|
2667
|
+
.seed-checkbox__root--size_large {
|
|
2668
|
+
min-height: var(--seed-dimension-x9);
|
|
2669
|
+
--checkmark-margin-top: calc((var(--seed-dimension-x9) - var(--seed-dimension-x6)) / 2);
|
|
2670
|
+
}
|
|
2671
|
+
|
|
2672
|
+
.seed-checkbox__label--size_large {
|
|
2673
|
+
font-size: var(--seed-font-size-t5);
|
|
2674
|
+
line-height: var(--seed-line-height-t5);
|
|
2675
|
+
margin-block-start: calc(18px - .65625rem);
|
|
2676
|
+
}
|
|
2677
|
+
|
|
2678
|
+
.seed-checkbox__root--size_medium {
|
|
2679
|
+
min-height: var(--seed-dimension-x8);
|
|
2680
|
+
--checkmark-margin-top: calc((var(--seed-dimension-x8) - var(--seed-dimension-x5)) / 2);
|
|
2681
|
+
}
|
|
2682
|
+
|
|
2683
|
+
.seed-checkbox__label--size_medium {
|
|
2684
|
+
font-size: var(--seed-font-size-t4);
|
|
2685
|
+
line-height: var(--seed-line-height-t4);
|
|
2686
|
+
margin-block-start: calc(16px - .59375rem);
|
|
2687
|
+
}
|
|
2688
|
+
|
|
2689
|
+
.seed-checkmark__root {
|
|
2652
2690
|
box-sizing: border-box;
|
|
2691
|
+
margin-top: var(--checkmark-margin-top, 0);
|
|
2653
2692
|
flex-shrink: 0;
|
|
2654
2693
|
position: relative;
|
|
2655
2694
|
}
|
|
2656
2695
|
|
|
2657
|
-
.seed-
|
|
2696
|
+
.seed-checkmark__icon {
|
|
2658
2697
|
content: "";
|
|
2659
2698
|
text-align: center;
|
|
2660
2699
|
overflow: initial;
|
|
@@ -2664,139 +2703,114 @@
|
|
|
2664
2703
|
inset: 0;
|
|
2665
2704
|
}
|
|
2666
2705
|
|
|
2667
|
-
.seed-
|
|
2668
|
-
color: var(--seed-color-fg-neutral);
|
|
2669
|
-
}
|
|
2670
|
-
|
|
2671
|
-
.seed-checkbox__label--weight_default {
|
|
2672
|
-
font-weight: var(--seed-font-weight-regular);
|
|
2673
|
-
}
|
|
2674
|
-
|
|
2675
|
-
.seed-checkbox__label--weight_stronger {
|
|
2676
|
-
font-weight: var(--seed-font-weight-bold);
|
|
2677
|
-
}
|
|
2678
|
-
|
|
2679
|
-
.seed-checkbox__control--variant_square {
|
|
2706
|
+
.seed-checkmark__root--variant_square {
|
|
2680
2707
|
border-style: solid;
|
|
2681
2708
|
border-width: 1px;
|
|
2682
2709
|
border-color: var(--seed-color-stroke-neutral-weak);
|
|
2683
2710
|
}
|
|
2684
2711
|
|
|
2685
|
-
.seed-
|
|
2686
|
-
background: var(--seed-color-bg-brand-solid);
|
|
2712
|
+
.seed-checkmark__root--variant_square:is(:checked, :indeterminate, [data-checked], [data-indeterminate]) {
|
|
2687
2713
|
border-width: 0;
|
|
2688
2714
|
}
|
|
2689
2715
|
|
|
2690
|
-
.seed-
|
|
2716
|
+
.seed-checkmark__root--variant_square:not(:is(:disabled, [disabled], [data-disabled])):is(:active, [data-active]) {
|
|
2691
2717
|
background: var(--seed-color-bg-layer-default-pressed);
|
|
2692
2718
|
}
|
|
2693
2719
|
|
|
2694
|
-
.seed-
|
|
2695
|
-
background: var(--seed-color-bg-brand-solid-pressed);
|
|
2696
|
-
}
|
|
2697
|
-
|
|
2698
|
-
.seed-checkbox__control--variant_square:is(:disabled, [disabled], [data-disabled]) {
|
|
2720
|
+
.seed-checkmark__root--variant_square:is(:disabled, [disabled], [data-disabled]) {
|
|
2699
2721
|
background: var(--seed-color-bg-disabled);
|
|
2700
2722
|
border-color: var(--seed-color-stroke-neutral-muted);
|
|
2701
2723
|
}
|
|
2702
2724
|
|
|
2703
|
-
.seed-
|
|
2704
|
-
background: var(--seed-color-bg-disabled);
|
|
2705
|
-
}
|
|
2706
|
-
|
|
2707
|
-
.seed-checkbox__icon--variant_square:is(:checked, :indeterminate, [data-checked], [data-indeterminate]) {
|
|
2708
|
-
color: var(--seed-color-palette-static-white);
|
|
2725
|
+
.seed-checkmark__icon--variant_square:is(:checked, :indeterminate, [data-checked], [data-indeterminate]) {
|
|
2709
2726
|
display: block;
|
|
2710
2727
|
}
|
|
2711
2728
|
|
|
2712
|
-
.seed-
|
|
2729
|
+
.seed-checkmark__icon--variant_square:is(:disabled, [disabled], [data-disabled]):is(:checked, :indeterminate, [data-checked], [data-indeterminate]) {
|
|
2713
2730
|
color: var(--seed-color-fg-disabled);
|
|
2714
|
-
display: block;
|
|
2715
2731
|
}
|
|
2716
2732
|
|
|
2717
|
-
.seed-
|
|
2718
|
-
|
|
2733
|
+
.seed-checkmark__root--variant_ghost:not(:is(:disabled, [disabled], [data-disabled])):is(:active, [data-active]) {
|
|
2734
|
+
background: var(--seed-color-bg-layer-default-pressed);
|
|
2719
2735
|
}
|
|
2720
2736
|
|
|
2721
|
-
.seed-
|
|
2722
|
-
|
|
2737
|
+
.seed-checkmark__icon--variant_ghost {
|
|
2738
|
+
color: var(--seed-color-fg-placeholder);
|
|
2739
|
+
display: block;
|
|
2723
2740
|
}
|
|
2724
2741
|
|
|
2725
|
-
.seed-
|
|
2726
|
-
|
|
2742
|
+
.seed-checkmark__icon--variant_ghost:is(:disabled, [disabled], [data-disabled]), .seed-checkmark__icon--variant_ghost:is(:disabled, [disabled], [data-disabled]):is(:checked, :indeterminate, [data-checked], [data-indeterminate]) {
|
|
2743
|
+
color: var(--seed-color-fg-disabled);
|
|
2727
2744
|
}
|
|
2728
2745
|
|
|
2729
|
-
.seed-
|
|
2730
|
-
|
|
2746
|
+
.seed-checkmark__root--size_large {
|
|
2747
|
+
border-radius: var(--seed-radius-r1);
|
|
2748
|
+
width: var(--seed-dimension-x6);
|
|
2749
|
+
height: var(--seed-dimension-x6);
|
|
2731
2750
|
}
|
|
2732
2751
|
|
|
2733
|
-
.seed-
|
|
2734
|
-
|
|
2752
|
+
.seed-checkmark__root--size_medium {
|
|
2753
|
+
border-radius: var(--seed-radius-r1);
|
|
2754
|
+
width: var(--seed-dimension-x5);
|
|
2755
|
+
height: var(--seed-dimension-x5);
|
|
2735
2756
|
}
|
|
2736
2757
|
|
|
2737
|
-
.seed-
|
|
2738
|
-
|
|
2739
|
-
display: block;
|
|
2758
|
+
.seed-checkmark__root--variant_square-tone_neutral:not(:is(:disabled, [disabled], [data-disabled])):is(:checked, :indeterminate, [data-checked], [data-indeterminate]) {
|
|
2759
|
+
background: var(--seed-color-bg-neutral-inverted);
|
|
2740
2760
|
}
|
|
2741
2761
|
|
|
2742
|
-
.seed-
|
|
2743
|
-
|
|
2762
|
+
.seed-checkmark__root--variant_square-tone_neutral:not(:is(:disabled, [disabled], [data-disabled])):is(:checked, :indeterminate, [data-checked], [data-indeterminate]):is(:active, [data-active]) {
|
|
2763
|
+
background: var(--seed-color-bg-neutral-inverted-pressed);
|
|
2744
2764
|
}
|
|
2745
2765
|
|
|
2746
|
-
.seed-
|
|
2747
|
-
color: var(--seed-color-fg-
|
|
2766
|
+
.seed-checkmark__icon--variant_square-tone_neutral:not(:is(:disabled, [disabled], [data-disabled])):is(:checked, :indeterminate, [data-checked], [data-indeterminate]) {
|
|
2767
|
+
color: var(--seed-color-fg-neutral-inverted);
|
|
2748
2768
|
}
|
|
2749
2769
|
|
|
2750
|
-
.seed-
|
|
2751
|
-
|
|
2770
|
+
.seed-checkmark__root--variant_square-tone_brand:not(:is(:disabled, [disabled], [data-disabled])):is(:checked, :indeterminate, [data-checked], [data-indeterminate]) {
|
|
2771
|
+
background: var(--seed-color-bg-brand-solid);
|
|
2752
2772
|
}
|
|
2753
2773
|
|
|
2754
|
-
.seed-
|
|
2755
|
-
|
|
2756
|
-
width: var(--seed-dimension-x6);
|
|
2757
|
-
height: var(--seed-dimension-x6);
|
|
2758
|
-
margin: calc((var(--seed-dimension-x9) - var(--seed-dimension-x6)) / 2) 0;
|
|
2774
|
+
.seed-checkmark__root--variant_square-tone_brand:not(:is(:disabled, [disabled], [data-disabled])):is(:checked, :indeterminate, [data-checked], [data-indeterminate]):is(:active, [data-active]) {
|
|
2775
|
+
background: var(--seed-color-bg-brand-solid-pressed);
|
|
2759
2776
|
}
|
|
2760
2777
|
|
|
2761
|
-
.seed-
|
|
2762
|
-
|
|
2763
|
-
line-height: var(--seed-line-height-t5);
|
|
2764
|
-
margin-block-start: calc(18px - .65625rem);
|
|
2778
|
+
.seed-checkmark__icon--variant_square-tone_brand:not(:is(:disabled, [disabled], [data-disabled])):is(:checked, :indeterminate, [data-checked], [data-indeterminate]) {
|
|
2779
|
+
color: var(--seed-color-palette-static-white);
|
|
2765
2780
|
}
|
|
2766
2781
|
|
|
2767
|
-
.seed-
|
|
2768
|
-
|
|
2782
|
+
.seed-checkmark__root--variant_ghost-tone_neutral:not(:is(:disabled, [disabled], [data-disabled])):is(:checked, :indeterminate, [data-checked], [data-indeterminate]):is(:active, [data-active]) {
|
|
2783
|
+
background: var(--seed-color-palette-gray-200);
|
|
2769
2784
|
}
|
|
2770
2785
|
|
|
2771
|
-
.seed-
|
|
2772
|
-
|
|
2773
|
-
width: var(--seed-dimension-x5);
|
|
2774
|
-
height: var(--seed-dimension-x5);
|
|
2775
|
-
margin: calc((var(--seed-dimension-x8) - var(--seed-dimension-x5)) / 2) 0;
|
|
2786
|
+
.seed-checkmark__icon--variant_ghost-tone_neutral:not(:is(:disabled, [disabled], [data-disabled])):is(:checked, :indeterminate, [data-checked], [data-indeterminate]) {
|
|
2787
|
+
color: var(--seed-color-fg-neutral-muted);
|
|
2776
2788
|
}
|
|
2777
2789
|
|
|
2778
|
-
.seed-
|
|
2779
|
-
|
|
2780
|
-
|
|
2781
|
-
|
|
2790
|
+
.seed-checkmark__root--variant_ghost-tone_brand:not(:is(:disabled, [disabled], [data-disabled])):is(:checked, :indeterminate, [data-checked], [data-indeterminate]):is(:active, [data-active]) {
|
|
2791
|
+
background: var(--seed-color-palette-carrot-200);
|
|
2792
|
+
}
|
|
2793
|
+
|
|
2794
|
+
.seed-checkmark__icon--variant_ghost-tone_brand:not(:is(:disabled, [disabled], [data-disabled])):is(:checked, :indeterminate, [data-checked], [data-indeterminate]) {
|
|
2795
|
+
color: var(--seed-color-fg-brand);
|
|
2782
2796
|
}
|
|
2783
2797
|
|
|
2784
|
-
.seed-
|
|
2798
|
+
.seed-checkmark__icon--size_medium-variant_ghost {
|
|
2785
2799
|
width: 14px;
|
|
2786
2800
|
height: 14px;
|
|
2787
2801
|
}
|
|
2788
2802
|
|
|
2789
|
-
.seed-
|
|
2803
|
+
.seed-checkmark__icon--size_large-variant_ghost {
|
|
2790
2804
|
width: 18px;
|
|
2791
2805
|
height: 18px;
|
|
2792
2806
|
}
|
|
2793
2807
|
|
|
2794
|
-
.seed-
|
|
2808
|
+
.seed-checkmark__icon--size_medium-variant_square {
|
|
2795
2809
|
width: 12px;
|
|
2796
2810
|
height: 12px;
|
|
2797
2811
|
}
|
|
2798
2812
|
|
|
2799
|
-
.seed-
|
|
2813
|
+
.seed-checkmark__icon--size_large-variant_square {
|
|
2800
2814
|
width: 14px;
|
|
2801
2815
|
height: 14px;
|
|
2802
2816
|
}
|
|
@@ -3067,25 +3081,41 @@
|
|
|
3067
3081
|
box-sizing: border-box;
|
|
3068
3082
|
white-space: nowrap;
|
|
3069
3083
|
border-radius: var(--seed-radius-full);
|
|
3070
|
-
padding: var(--seed-dimension-x2)
|
|
3071
|
-
|
|
3084
|
+
padding-top: var(--seed-dimension-x2);
|
|
3085
|
+
padding-bottom: var(--seed-dimension-x2);
|
|
3072
3086
|
font-family: inherit;
|
|
3073
|
-
font-
|
|
3074
|
-
font-weight: var(--seed-font-weight-bold);
|
|
3087
|
+
font-weight: var(--seed-font-weight-medium);
|
|
3075
3088
|
border: none;
|
|
3076
3089
|
justify-content: center;
|
|
3077
3090
|
align-items: center;
|
|
3078
3091
|
display: flex;
|
|
3079
3092
|
}
|
|
3080
3093
|
|
|
3081
|
-
.seed-chip-tabs__list--
|
|
3082
|
-
gap:
|
|
3094
|
+
.seed-chip-tabs__list--size_medium {
|
|
3095
|
+
gap: 8px;
|
|
3096
|
+
}
|
|
3097
|
+
|
|
3098
|
+
.seed-chip-tabs__trigger--size_medium {
|
|
3099
|
+
min-height: 36px;
|
|
3100
|
+
font-size: var(--seed-font-size-t4);
|
|
3101
|
+
padding-left: var(--seed-dimension-x3_5);
|
|
3102
|
+
padding-right: var(--seed-dimension-x3_5);
|
|
3103
|
+
}
|
|
3104
|
+
|
|
3105
|
+
.seed-chip-tabs__list--size_large {
|
|
3106
|
+
gap: 8px;
|
|
3107
|
+
}
|
|
3108
|
+
|
|
3109
|
+
.seed-chip-tabs__trigger--size_large {
|
|
3110
|
+
min-height: 40px;
|
|
3111
|
+
font-size: var(--seed-font-size-t4);
|
|
3112
|
+
padding-left: var(--seed-dimension-x4);
|
|
3113
|
+
padding-right: var(--seed-dimension-x4);
|
|
3083
3114
|
}
|
|
3084
3115
|
|
|
3085
3116
|
.seed-chip-tabs__trigger--variant_neutralSolid {
|
|
3117
|
+
background-color: var(--seed-color-bg-neutral-weak);
|
|
3086
3118
|
color: var(--seed-color-fg-neutral);
|
|
3087
|
-
font-weight: var(--seed-font-weight-bold);
|
|
3088
|
-
background-color: #0000;
|
|
3089
3119
|
}
|
|
3090
3120
|
|
|
3091
3121
|
.seed-chip-tabs__trigger--variant_neutralSolid:is(:selected, [data-selected]) {
|
|
@@ -3111,20 +3141,44 @@
|
|
|
3111
3141
|
color: var(--seed-color-fg-disabled);
|
|
3112
3142
|
}
|
|
3113
3143
|
|
|
3114
|
-
.seed-chip-
|
|
3115
|
-
|
|
3144
|
+
.seed-chip-tabs__trigger--variant_neutralOutline {
|
|
3145
|
+
border: 1px solid var(--seed-color-stroke-neutral-muted);
|
|
3146
|
+
color: var(--seed-color-fg-neutral);
|
|
3147
|
+
background-color: #0000;
|
|
3148
|
+
}
|
|
3149
|
+
|
|
3150
|
+
.seed-chip-tabs__trigger--variant_neutralOutline:is(:selected, [data-selected]) {
|
|
3151
|
+
background-color: var(--seed-color-bg-neutral-inverted);
|
|
3152
|
+
color: var(--seed-color-fg-neutral-inverted);
|
|
3153
|
+
border-color: #0000;
|
|
3154
|
+
}
|
|
3155
|
+
|
|
3156
|
+
.seed-chip-tabs__trigger--variant_neutralOutline:is(:active, [data-active]) {
|
|
3157
|
+
background-color: var(--seed-color-bg-layer-default-pressed);
|
|
3158
|
+
}
|
|
3159
|
+
|
|
3160
|
+
.seed-chip-tabs__trigger--variant_neutralOutline:is(:selected, [data-selected]):is(:active, [data-active]) {
|
|
3161
|
+
background-color: var(--seed-color-bg-neutral-inverted-pressed);
|
|
3162
|
+
}
|
|
3163
|
+
|
|
3164
|
+
.seed-chip-tabs__trigger--variant_neutralOutline:is(:disabled, [disabled], [data-disabled]) {
|
|
3165
|
+
cursor: not-allowed;
|
|
3166
|
+
color: var(--seed-color-fg-disabled);
|
|
3167
|
+
}
|
|
3168
|
+
|
|
3169
|
+
.seed-chip-tabs__trigger--variant_neutralOutline:is(:disabled, [disabled], [data-disabled]):is(:selected, [data-selected]) {
|
|
3170
|
+
background-color: var(--seed-color-bg-disabled);
|
|
3171
|
+
color: var(--seed-color-fg-disabled);
|
|
3116
3172
|
}
|
|
3117
3173
|
|
|
3118
3174
|
.seed-chip-tabs__trigger--variant_brandSolid {
|
|
3119
3175
|
background-color: var(--seed-color-bg-neutral-weak);
|
|
3120
3176
|
color: var(--seed-color-fg-neutral-muted);
|
|
3121
|
-
font-weight: var(--seed-font-weight-medium);
|
|
3122
3177
|
}
|
|
3123
3178
|
|
|
3124
3179
|
.seed-chip-tabs__trigger--variant_brandSolid:is(:selected, [data-selected]) {
|
|
3125
3180
|
background-color: var(--seed-color-bg-brand-solid);
|
|
3126
3181
|
color: var(--seed-color-palette-static-white);
|
|
3127
|
-
font-weight: var(--seed-font-weight-bold);
|
|
3128
3182
|
}
|
|
3129
3183
|
|
|
3130
3184
|
.seed-chip-tabs__trigger--variant_brandSolid:is(:active, [data-active]) {
|
|
@@ -4164,6 +4218,119 @@
|
|
|
4164
4218
|
--seed-suffix-icon-size: var(--seed-dimension-x3);
|
|
4165
4219
|
}
|
|
4166
4220
|
|
|
4221
|
+
.seed-list-item__root {
|
|
4222
|
+
box-sizing: border-box;
|
|
4223
|
+
-webkit-font-smoothing: antialiased;
|
|
4224
|
+
-moz-osx-font-smoothing: grayscale;
|
|
4225
|
+
z-index: 0;
|
|
4226
|
+
width: 100%;
|
|
4227
|
+
padding-inline: var(--seed-dimension-spacing-x-global-gutter);
|
|
4228
|
+
padding-block: var(--seed-dimension-x2_5);
|
|
4229
|
+
--seed-box-align-items: center;
|
|
4230
|
+
align-items: var(--seed-box-align-items);
|
|
4231
|
+
transition-property: background-color;
|
|
4232
|
+
transition-duration: var(--seed-duration-d3);
|
|
4233
|
+
transition-timing-function: var(--seed-timing-function-easing);
|
|
4234
|
+
border: none;
|
|
4235
|
+
font-family: inherit;
|
|
4236
|
+
display: flex;
|
|
4237
|
+
position: relative;
|
|
4238
|
+
}
|
|
4239
|
+
|
|
4240
|
+
.seed-list-item__prefix {
|
|
4241
|
+
--seed-box-padding-right: var(--seed-dimension-x3);
|
|
4242
|
+
padding-right: var(--seed-box-padding-right);
|
|
4243
|
+
--seed-icon-size: 22px;
|
|
4244
|
+
--seed-icon-color: var(--seed-color-fg-neutral);
|
|
4245
|
+
flex-shrink: 0;
|
|
4246
|
+
align-items: center;
|
|
4247
|
+
display: inline-flex;
|
|
4248
|
+
}
|
|
4249
|
+
|
|
4250
|
+
.seed-list-item__prefix:is(:disabled, [disabled], [data-disabled]) {
|
|
4251
|
+
--seed-icon-color: var(--seed-color-fg-disabled);
|
|
4252
|
+
}
|
|
4253
|
+
|
|
4254
|
+
.seed-list-item__suffix {
|
|
4255
|
+
--seed-box-position: initial;
|
|
4256
|
+
position: var(--seed-box-position);
|
|
4257
|
+
--seed-box-gap: var(--seed-dimension-x1);
|
|
4258
|
+
align-items: center;
|
|
4259
|
+
gap: var(--seed-box-gap);
|
|
4260
|
+
font-size: var(--seed-font-size-t5);
|
|
4261
|
+
line-height: var(--seed-line-height-t5);
|
|
4262
|
+
font-weight: var(--seed-font-weight-regular);
|
|
4263
|
+
color: var(--seed-color-fg-neutral-subtle);
|
|
4264
|
+
--seed-icon-size: 18px;
|
|
4265
|
+
--seed-icon-color: var(--seed-color-fg-neutral-subtle);
|
|
4266
|
+
flex-shrink: 0;
|
|
4267
|
+
display: inline-flex;
|
|
4268
|
+
}
|
|
4269
|
+
|
|
4270
|
+
.seed-list-item__suffix:is(:disabled, [disabled], [data-disabled]) {
|
|
4271
|
+
--seed-icon-color: var(--seed-color-fg-disabled);
|
|
4272
|
+
}
|
|
4273
|
+
|
|
4274
|
+
.seed-list-item__content {
|
|
4275
|
+
box-sizing: border-box;
|
|
4276
|
+
text-align: start;
|
|
4277
|
+
--seed-box-gap: var(--seed-dimension-x0_5);
|
|
4278
|
+
align-items: flex-start;
|
|
4279
|
+
gap: var(--seed-box-gap);
|
|
4280
|
+
--seed-box-padding-right: var(--seed-dimension-x2_5);
|
|
4281
|
+
padding-right: var(--seed-box-padding-right);
|
|
4282
|
+
flex-direction: column;
|
|
4283
|
+
flex-grow: 1;
|
|
4284
|
+
display: inline-flex;
|
|
4285
|
+
}
|
|
4286
|
+
|
|
4287
|
+
.seed-list-item__content:after {
|
|
4288
|
+
content: "";
|
|
4289
|
+
position: absolute;
|
|
4290
|
+
inset: 0;
|
|
4291
|
+
}
|
|
4292
|
+
|
|
4293
|
+
.seed-list-item__content:before {
|
|
4294
|
+
content: "";
|
|
4295
|
+
z-index: -1;
|
|
4296
|
+
transition-property: background-color;
|
|
4297
|
+
transition-duration: var(--seed-duration-d3);
|
|
4298
|
+
transition-timing-function: var(--seed-timing-function-easing);
|
|
4299
|
+
position: absolute;
|
|
4300
|
+
inset: 0;
|
|
4301
|
+
}
|
|
4302
|
+
|
|
4303
|
+
.seed-list-item__content:is(button, a):not(:is(:disabled, [disabled], [data-disabled])):is(:active, [data-active]):before, .seed-list-item__content:not(:is(:disabled, [disabled], [data-disabled]))[data-active]:before {
|
|
4304
|
+
background-color: var(--seed-color-bg-layer-default-pressed);
|
|
4305
|
+
}
|
|
4306
|
+
|
|
4307
|
+
.seed-list-item__title {
|
|
4308
|
+
font-size: var(--seed-font-size-t5);
|
|
4309
|
+
line-height: var(--seed-line-height-t5);
|
|
4310
|
+
font-weight: var(--seed-font-weight-medium);
|
|
4311
|
+
color: var(--seed-color-fg-neutral);
|
|
4312
|
+
flex-shrink: 0;
|
|
4313
|
+
}
|
|
4314
|
+
|
|
4315
|
+
.seed-list-item__title:is(:disabled, [disabled], [data-disabled]) {
|
|
4316
|
+
color: var(--seed-color-fg-disabled);
|
|
4317
|
+
}
|
|
4318
|
+
|
|
4319
|
+
.seed-list-item__detail {
|
|
4320
|
+
font-size: var(--seed-font-size-t3);
|
|
4321
|
+
line-height: var(--seed-line-height-t3);
|
|
4322
|
+
font-weight: var(--seed-font-weight-regular);
|
|
4323
|
+
color: var(--seed-color-fg-neutral-subtle);
|
|
4324
|
+
}
|
|
4325
|
+
|
|
4326
|
+
.seed-list-item__detail:is(:disabled, [disabled], [data-disabled]) {
|
|
4327
|
+
color: var(--seed-color-fg-neutral-subtle);
|
|
4328
|
+
}
|
|
4329
|
+
|
|
4330
|
+
.seed-list-item__root--highlighted_true {
|
|
4331
|
+
background-color: var(--seed-color-palette-carrot-100);
|
|
4332
|
+
}
|
|
4333
|
+
|
|
4167
4334
|
.seed-manner-temp {
|
|
4168
4335
|
box-sizing: border-box;
|
|
4169
4336
|
justify-content: flex-start;
|
|
@@ -4672,8 +4839,8 @@
|
|
|
4672
4839
|
|
|
4673
4840
|
.seed-page-banner__root--tone_warning-variant_solid {
|
|
4674
4841
|
background-color: var(--seed-color-bg-warning-solid);
|
|
4675
|
-
--seed-prefix-icon-color: var(--seed-color-
|
|
4676
|
-
--seed-suffix-icon-color: var(--seed-color-
|
|
4842
|
+
--seed-prefix-icon-color: var(--seed-color-palette-static-black-alpha-900);
|
|
4843
|
+
--seed-suffix-icon-color: var(--seed-color-palette-static-black-alpha-900);
|
|
4677
4844
|
}
|
|
4678
4845
|
|
|
4679
4846
|
.seed-page-banner__root--tone_warning-variant_solid:is(button):is(:active, [data-active]) {
|
|
@@ -4681,7 +4848,7 @@
|
|
|
4681
4848
|
}
|
|
4682
4849
|
|
|
4683
4850
|
.seed-page-banner__title--tone_warning-variant_solid, .seed-page-banner__description--tone_warning-variant_solid, .seed-page-banner__button--tone_warning-variant_solid {
|
|
4684
|
-
color: var(--seed-color-
|
|
4851
|
+
color: var(--seed-color-palette-static-black-alpha-900);
|
|
4685
4852
|
}
|
|
4686
4853
|
|
|
4687
4854
|
.seed-page-banner__root--tone_critical-variant_weak {
|
|
@@ -4782,80 +4949,153 @@
|
|
|
4782
4949
|
}
|
|
4783
4950
|
|
|
4784
4951
|
.seed-radio__root {
|
|
4952
|
+
vertical-align: top;
|
|
4953
|
+
isolation: isolate;
|
|
4954
|
+
cursor: pointer;
|
|
4955
|
+
align-items: flex-start;
|
|
4956
|
+
gap: var(--seed-dimension-x2);
|
|
4957
|
+
max-inline-size: 100%;
|
|
4958
|
+
display: inline-flex;
|
|
4959
|
+
position: relative;
|
|
4960
|
+
}
|
|
4961
|
+
|
|
4962
|
+
.seed-radio__root:is(:disabled, [disabled], [data-disabled]) {
|
|
4963
|
+
cursor: not-allowed;
|
|
4964
|
+
}
|
|
4965
|
+
|
|
4966
|
+
.seed-radio__label {
|
|
4967
|
+
color: var(--seed-color-fg-neutral);
|
|
4968
|
+
}
|
|
4969
|
+
|
|
4970
|
+
.seed-radio__label:is(:disabled, [disabled], [data-disabled]) {
|
|
4971
|
+
color: var(--seed-color-fg-disabled);
|
|
4972
|
+
}
|
|
4973
|
+
|
|
4974
|
+
.seed-radio__label--weight_regular {
|
|
4975
|
+
font-weight: var(--seed-font-weight-regular);
|
|
4976
|
+
}
|
|
4977
|
+
|
|
4978
|
+
.seed-radio__label--weight_bold {
|
|
4979
|
+
font-weight: var(--seed-font-weight-bold);
|
|
4980
|
+
}
|
|
4981
|
+
|
|
4982
|
+
.seed-radio__root--size_large {
|
|
4983
|
+
min-height: var(--seed-dimension-x9);
|
|
4984
|
+
--radiomark-margin-top: calc((var(--seed-dimension-x9) - var(--seed-dimension-x6)) / 2);
|
|
4985
|
+
}
|
|
4986
|
+
|
|
4987
|
+
.seed-radio__label--size_large {
|
|
4988
|
+
font-size: var(--seed-font-size-t5);
|
|
4989
|
+
line-height: var(--seed-line-height-t5);
|
|
4990
|
+
margin-block-start: calc(18px - .65625rem);
|
|
4991
|
+
}
|
|
4992
|
+
|
|
4993
|
+
.seed-radio__root--size_medium {
|
|
4994
|
+
min-height: var(--seed-dimension-x8);
|
|
4995
|
+
--radiomark-margin-top: calc((var(--seed-dimension-x8) - var(--seed-dimension-x5)) / 2);
|
|
4996
|
+
}
|
|
4997
|
+
|
|
4998
|
+
.seed-radio__label--size_medium {
|
|
4999
|
+
font-size: var(--seed-font-size-t4);
|
|
5000
|
+
line-height: var(--seed-line-height-t4);
|
|
5001
|
+
margin-block-start: calc(16px - .59375rem);
|
|
5002
|
+
}
|
|
5003
|
+
|
|
5004
|
+
.seed-radiomark__root {
|
|
4785
5005
|
box-sizing: border-box;
|
|
4786
|
-
background-color: var(--seed-color-bg-layer-default);
|
|
4787
5006
|
border-style: solid;
|
|
4788
5007
|
border-width: 1px;
|
|
4789
5008
|
border-color: var(--seed-color-stroke-neutral-weak);
|
|
4790
5009
|
border-radius: var(--seed-radius-full);
|
|
5010
|
+
margin-top: var(--radiomark-margin-top, 0);
|
|
4791
5011
|
flex: none;
|
|
4792
5012
|
justify-content: center;
|
|
4793
5013
|
align-items: center;
|
|
4794
5014
|
display: flex;
|
|
5015
|
+
position: relative;
|
|
4795
5016
|
}
|
|
4796
5017
|
|
|
4797
|
-
.seed-
|
|
5018
|
+
.seed-radiomark__root:not(:is(:disabled, [disabled], [data-disabled])):is(:active, [data-active]) {
|
|
4798
5019
|
background-color: var(--seed-color-bg-layer-default-pressed);
|
|
4799
5020
|
}
|
|
4800
5021
|
|
|
4801
|
-
.seed-
|
|
4802
|
-
background-color: var(--seed-color-bg-brand-solid);
|
|
5022
|
+
.seed-radiomark__root:is(:checked, [data-checked]) {
|
|
4803
5023
|
border-width: 0;
|
|
4804
5024
|
}
|
|
4805
5025
|
|
|
4806
|
-
.seed-
|
|
4807
|
-
background-color: var(--seed-color-bg-brand-solid-pressed);
|
|
4808
|
-
}
|
|
4809
|
-
|
|
4810
|
-
.seed-radio__root:is(:disabled, [disabled], [data-disabled]) {
|
|
5026
|
+
.seed-radiomark__root:is(:disabled, [disabled], [data-disabled]) {
|
|
4811
5027
|
background-color: var(--seed-color-palette-gray-300);
|
|
4812
5028
|
}
|
|
4813
5029
|
|
|
4814
|
-
.seed-
|
|
4815
|
-
|
|
5030
|
+
.seed-radiomark__root:is(:disabled, [disabled], [data-disabled]):is(:checked, [data-checked]) {
|
|
5031
|
+
border-width: 1px;
|
|
4816
5032
|
border-color: var(--seed-color-palette-gray-300);
|
|
5033
|
+
background: none;
|
|
4817
5034
|
}
|
|
4818
5035
|
|
|
4819
|
-
.seed-
|
|
5036
|
+
.seed-radiomark__icon {
|
|
4820
5037
|
border-radius: var(--seed-radius-full);
|
|
4821
5038
|
display: none;
|
|
4822
5039
|
}
|
|
4823
5040
|
|
|
4824
|
-
.seed-
|
|
4825
|
-
background-color: var(--seed-color-palette-static-white);
|
|
5041
|
+
.seed-radiomark__icon:is(:checked, [data-checked]) {
|
|
4826
5042
|
display: block;
|
|
4827
5043
|
}
|
|
4828
5044
|
|
|
4829
|
-
.seed-
|
|
4830
|
-
|
|
5045
|
+
.seed-radiomark__icon:is(:disabled, [disabled], [data-disabled]):is(:checked, [data-checked]) {
|
|
5046
|
+
color: var(--seed-color-palette-gray-300);
|
|
4831
5047
|
}
|
|
4832
5048
|
|
|
4833
|
-
.seed-
|
|
5049
|
+
.seed-radiomark__root--tone_neutral:is(:checked, [data-checked]) {
|
|
5050
|
+
background-color: var(--seed-color-bg-neutral-inverted);
|
|
5051
|
+
}
|
|
5052
|
+
|
|
5053
|
+
.seed-radiomark__root--tone_neutral:not(:is(:disabled, [disabled], [data-disabled])):is(:checked, [data-checked]):is(:active, [data-active]) {
|
|
5054
|
+
background-color: var(--seed-color-bg-neutral-inverted-pressed);
|
|
5055
|
+
}
|
|
5056
|
+
|
|
5057
|
+
.seed-radiomark__icon--tone_neutral:is(:checked, [data-checked]) {
|
|
5058
|
+
color: var(--seed-color-fg-neutral-inverted);
|
|
5059
|
+
}
|
|
5060
|
+
|
|
5061
|
+
.seed-radiomark__root--tone_brand:is(:checked, [data-checked]) {
|
|
5062
|
+
background-color: var(--seed-color-bg-brand-solid);
|
|
5063
|
+
}
|
|
5064
|
+
|
|
5065
|
+
.seed-radiomark__root--tone_brand:not(:is(:disabled, [disabled], [data-disabled])):is(:checked, [data-checked]):is(:active, [data-active]) {
|
|
5066
|
+
background-color: var(--seed-color-bg-brand-solid-pressed);
|
|
5067
|
+
}
|
|
5068
|
+
|
|
5069
|
+
.seed-radiomark__icon--tone_brand:is(:checked, [data-checked]) {
|
|
5070
|
+
color: var(--seed-color-palette-static-white);
|
|
5071
|
+
}
|
|
5072
|
+
|
|
5073
|
+
.seed-radiomark__root--size_large {
|
|
4834
5074
|
width: var(--seed-dimension-x6);
|
|
4835
5075
|
height: var(--seed-dimension-x6);
|
|
4836
5076
|
}
|
|
4837
5077
|
|
|
4838
|
-
.seed-
|
|
5078
|
+
.seed-radiomark__icon--size_large {
|
|
4839
5079
|
width: var(--seed-dimension-x2_5);
|
|
4840
5080
|
height: var(--seed-dimension-x2_5);
|
|
4841
5081
|
}
|
|
4842
5082
|
|
|
4843
|
-
.seed-
|
|
5083
|
+
.seed-radiomark__icon--size_large:is(:disabled, [disabled], [data-disabled]) {
|
|
4844
5084
|
width: var(--seed-dimension-x3);
|
|
4845
5085
|
height: var(--seed-dimension-x3);
|
|
4846
5086
|
}
|
|
4847
5087
|
|
|
4848
|
-
.seed-
|
|
5088
|
+
.seed-radiomark__root--size_medium {
|
|
4849
5089
|
width: var(--seed-dimension-x5);
|
|
4850
5090
|
height: var(--seed-dimension-x5);
|
|
4851
5091
|
}
|
|
4852
5092
|
|
|
4853
|
-
.seed-
|
|
5093
|
+
.seed-radiomark__icon--size_medium {
|
|
4854
5094
|
width: var(--seed-dimension-x2);
|
|
4855
5095
|
height: var(--seed-dimension-x2);
|
|
4856
5096
|
}
|
|
4857
5097
|
|
|
4858
|
-
.seed-
|
|
5098
|
+
.seed-radiomark__icon--size_medium:is(:disabled, [disabled], [data-disabled]) {
|
|
4859
5099
|
width: var(--seed-dimension-x2_5);
|
|
4860
5100
|
height: var(--seed-dimension-x2_5);
|
|
4861
5101
|
}
|
|
@@ -5053,86 +5293,6 @@
|
|
|
5053
5293
|
display: flex;
|
|
5054
5294
|
}
|
|
5055
5295
|
|
|
5056
|
-
.seed-select-box__checkboxControl {
|
|
5057
|
-
box-sizing: border-box;
|
|
5058
|
-
width: var(--seed-dimension-x6);
|
|
5059
|
-
height: var(--seed-dimension-x6);
|
|
5060
|
-
background-color: var(--seed-color-bg-layer-default);
|
|
5061
|
-
border-style: solid;
|
|
5062
|
-
border-width: 1px;
|
|
5063
|
-
border-color: var(--seed-color-stroke-neutral-weak);
|
|
5064
|
-
border-radius: var(--seed-radius-r1);
|
|
5065
|
-
flex: none;
|
|
5066
|
-
justify-content: center;
|
|
5067
|
-
align-items: center;
|
|
5068
|
-
display: flex;
|
|
5069
|
-
}
|
|
5070
|
-
|
|
5071
|
-
.seed-select-box__checkboxControl:is(:active, [data-active]) {
|
|
5072
|
-
background-color: var(--seed-color-bg-layer-default-pressed);
|
|
5073
|
-
}
|
|
5074
|
-
|
|
5075
|
-
.seed-select-box__checkboxControl:is(:checked, [data-checked]) {
|
|
5076
|
-
background-color: var(--seed-color-bg-brand-solid);
|
|
5077
|
-
border-width: 0;
|
|
5078
|
-
}
|
|
5079
|
-
|
|
5080
|
-
.seed-select-box__checkboxControl:is(:checked, [data-checked]):is(:active, [data-active]) {
|
|
5081
|
-
background-color: var(--seed-color-bg-brand-solid-pressed);
|
|
5082
|
-
}
|
|
5083
|
-
|
|
5084
|
-
.seed-select-box__checkboxIcon {
|
|
5085
|
-
width: var(--seed-dimension-x3_5);
|
|
5086
|
-
height: var(--seed-dimension-x3_5);
|
|
5087
|
-
display: none;
|
|
5088
|
-
}
|
|
5089
|
-
|
|
5090
|
-
.seed-select-box__checkboxIcon:is(:checked, [data-checked]) {
|
|
5091
|
-
color: var(--seed-color-palette-static-white);
|
|
5092
|
-
display: block;
|
|
5093
|
-
}
|
|
5094
|
-
|
|
5095
|
-
.seed-select-box__radioControl {
|
|
5096
|
-
box-sizing: border-box;
|
|
5097
|
-
width: var(--seed-dimension-x6);
|
|
5098
|
-
height: var(--seed-dimension-x6);
|
|
5099
|
-
background-color: var(--seed-color-bg-layer-default);
|
|
5100
|
-
border-style: solid;
|
|
5101
|
-
border-width: 1px;
|
|
5102
|
-
border-color: var(--seed-color-stroke-neutral-weak);
|
|
5103
|
-
border-radius: var(--seed-radius-full);
|
|
5104
|
-
flex: none;
|
|
5105
|
-
justify-content: center;
|
|
5106
|
-
align-items: center;
|
|
5107
|
-
display: flex;
|
|
5108
|
-
}
|
|
5109
|
-
|
|
5110
|
-
.seed-select-box__radioControl:is(:active, [data-active]) {
|
|
5111
|
-
background-color: var(--seed-color-bg-layer-default-pressed);
|
|
5112
|
-
}
|
|
5113
|
-
|
|
5114
|
-
.seed-select-box__radioControl:is(:checked, [data-checked]) {
|
|
5115
|
-
background-color: var(--seed-color-bg-brand-solid);
|
|
5116
|
-
border-width: 0;
|
|
5117
|
-
}
|
|
5118
|
-
|
|
5119
|
-
.seed-select-box__radioControl:is(:checked, [data-checked]):is(:active, [data-active]) {
|
|
5120
|
-
background-color: var(--seed-color-bg-brand-solid-pressed);
|
|
5121
|
-
}
|
|
5122
|
-
|
|
5123
|
-
.seed-select-box__radioIcon {
|
|
5124
|
-
width: var(--seed-dimension-x2_5);
|
|
5125
|
-
height: var(--seed-dimension-x2_5);
|
|
5126
|
-
border-radius: var(--seed-radius-full);
|
|
5127
|
-
display: none;
|
|
5128
|
-
}
|
|
5129
|
-
|
|
5130
|
-
.seed-select-box__radioIcon:is(:checked, [data-checked]) {
|
|
5131
|
-
background-color: var(--seed-color-palette-static-white);
|
|
5132
|
-
color: var(--seed-color-palette-static-white);
|
|
5133
|
-
display: block;
|
|
5134
|
-
}
|
|
5135
|
-
|
|
5136
5296
|
.seed-select-box__label {
|
|
5137
5297
|
color: var(--seed-color-fg-neutral);
|
|
5138
5298
|
font-weight: var(--seed-font-weight-bold);
|
|
@@ -5343,13 +5503,8 @@
|
|
|
5343
5503
|
opacity: .38;
|
|
5344
5504
|
}
|
|
5345
5505
|
|
|
5346
|
-
.seed-switch__control:is(:checked, [data-checked]) {
|
|
5347
|
-
background: var(--seed-color-bg-brand-solid);
|
|
5348
|
-
}
|
|
5349
|
-
|
|
5350
5506
|
.seed-switch__thumb {
|
|
5351
5507
|
border-radius: var(--seed-radius-full);
|
|
5352
|
-
background: var(--seed-color-palette-static-white);
|
|
5353
5508
|
transition: transform .15s cubic-bezier(.35, 0, .35, 1);
|
|
5354
5509
|
}
|
|
5355
5510
|
|
|
@@ -5362,6 +5517,22 @@
|
|
|
5362
5517
|
color: var(--seed-color-fg-disabled);
|
|
5363
5518
|
}
|
|
5364
5519
|
|
|
5520
|
+
.seed-switch__control--tone_neutral:is(:checked, [data-checked]) {
|
|
5521
|
+
background: var(--seed-color-bg-neutral-inverted);
|
|
5522
|
+
}
|
|
5523
|
+
|
|
5524
|
+
.seed-switch__thumb--tone_neutral {
|
|
5525
|
+
background: var(--seed-color-fg-neutral-inverted);
|
|
5526
|
+
}
|
|
5527
|
+
|
|
5528
|
+
.seed-switch__control--tone_brand:is(:checked, [data-checked]) {
|
|
5529
|
+
background: var(--seed-color-bg-brand-solid);
|
|
5530
|
+
}
|
|
5531
|
+
|
|
5532
|
+
.seed-switch__thumb--tone_brand {
|
|
5533
|
+
background: var(--seed-color-palette-static-white);
|
|
5534
|
+
}
|
|
5535
|
+
|
|
5365
5536
|
.seed-switch__root--size_16 {
|
|
5366
5537
|
gap: var(--seed-dimension-x1_5);
|
|
5367
5538
|
min-height: 24px;
|
|
@@ -5426,12 +5597,12 @@
|
|
|
5426
5597
|
min-block-size: 32px;
|
|
5427
5598
|
min-inline-size: 52px;
|
|
5428
5599
|
margin: 0;
|
|
5429
|
-
padding:
|
|
5600
|
+
padding: 3px;
|
|
5430
5601
|
}
|
|
5431
5602
|
|
|
5432
5603
|
.seed-switch__thumb--size_32 {
|
|
5433
|
-
width:
|
|
5434
|
-
height:
|
|
5604
|
+
width: 26px;
|
|
5605
|
+
height: 26px;
|
|
5435
5606
|
box-shadow: 0 3px 8px #00000026, 0 1px 3px #0000000f;
|
|
5436
5607
|
}
|
|
5437
5608
|
|
|
@@ -5924,9 +6095,17 @@
|
|
|
5924
6095
|
.seed-text-field__value {
|
|
5925
6096
|
box-sizing: border-box;
|
|
5926
6097
|
font: inherit;
|
|
6098
|
+
resize: none;
|
|
6099
|
+
height: 100%;
|
|
6100
|
+
color: var(--seed-color-fg-neutral);
|
|
6101
|
+
background: none;
|
|
6102
|
+
border: none;
|
|
6103
|
+
outline: none;
|
|
6104
|
+
flex-grow: 1;
|
|
5927
6105
|
}
|
|
5928
6106
|
|
|
5929
6107
|
.seed-text-field__value:is(input) {
|
|
6108
|
+
width: 0;
|
|
5930
6109
|
padding-inline: 0;
|
|
5931
6110
|
}
|
|
5932
6111
|
|
|
@@ -5936,16 +6115,6 @@
|
|
|
5936
6115
|
padding-inline: 0;
|
|
5937
6116
|
}
|
|
5938
6117
|
|
|
5939
|
-
.seed-text-field__value {
|
|
5940
|
-
resize: none;
|
|
5941
|
-
height: 100%;
|
|
5942
|
-
color: var(--seed-color-fg-neutral);
|
|
5943
|
-
background: none;
|
|
5944
|
-
border: none;
|
|
5945
|
-
outline: none;
|
|
5946
|
-
flex-grow: 1;
|
|
5947
|
-
}
|
|
5948
|
-
|
|
5949
6118
|
.seed-text-field__value::placeholder {
|
|
5950
6119
|
color: var(--seed-color-fg-placeholder);
|
|
5951
6120
|
}
|