@seed-design/css 0.2.0 → 0.2.3
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 +333 -214
- package/all.min.css +1 -1
- package/package.json +1 -1
- package/recipes/action-button.d.ts +3 -3
- package/recipes/action-chip.d.ts +2 -2
- package/recipes/action-sheet-item.d.ts +1 -1
- package/recipes/app-bar-main.d.ts +4 -4
- package/recipes/app-bar.d.ts +3 -3
- package/recipes/app-screen.d.ts +4 -4
- package/recipes/avatar.d.ts +1 -1
- package/recipes/badge.d.ts +3 -3
- package/recipes/bottom-sheet.d.ts +1 -1
- package/recipes/callout.d.ts +1 -1
- package/recipes/checkbox.css +5 -112
- package/recipes/checkbox.d.ts +3 -7
- package/recipes/checkbox.mjs +1 -31
- package/recipes/checkmark.css +105 -0
- package/recipes/checkmark.d.ts +28 -0
- package/recipes/checkmark.mjs +65 -0
- package/recipes/chip-tabs.css +42 -10
- package/recipes/chip-tabs.d.ts +7 -3
- package/recipes/chip-tabs.mjs +6 -0
- package/recipes/chip.css +33 -33
- package/recipes/chip.d.ts +3 -3
- package/recipes/contextual-floating-button.d.ts +2 -2
- package/recipes/control-chip.d.ts +2 -2
- package/recipes/extended-action-sheet-item.d.ts +1 -1
- package/recipes/extended-fab.d.ts +2 -2
- package/recipes/identity-placeholder.d.ts +1 -1
- package/recipes/inline-banner.d.ts +1 -1
- package/recipes/link-content.d.ts +2 -2
- package/recipes/list-item.css +102 -0
- package/recipes/list-item.d.ts +24 -0
- package/recipes/list-item.mjs +59 -0
- package/recipes/manner-temp-badge.d.ts +1 -1
- package/recipes/manner-temp.d.ts +1 -1
- package/recipes/menu-sheet-item.d.ts +2 -2
- package/recipes/notification-badge-positioner.d.ts +2 -2
- package/recipes/notification-badge.d.ts +1 -1
- package/recipes/page-banner.d.ts +2 -2
- package/recipes/progress-circle.d.ts +1 -1
- package/recipes/radio.css +29 -50
- package/recipes/radio.d.ts +6 -2
- package/recipes/radio.mjs +8 -3
- package/recipes/radiomark.css +68 -0
- package/recipes/radiomark.d.ts +24 -0
- package/recipes/radiomark.mjs +43 -0
- package/recipes/reaction-button.d.ts +1 -1
- package/recipes/select-box.css +0 -68
- package/recipes/select-box.d.ts +1 -1
- package/recipes/select-box.mjs +0 -16
- package/recipes/skeleton.d.ts +1 -1
- package/recipes/snackbar.d.ts +1 -1
- package/recipes/tabs.d.ts +3 -3
- package/recipes/text-field.css +8 -9
- package/recipes/text-field.d.ts +1 -1
- package/recipes/text.d.ts +3 -3
- package/recipes/toggle-button.d.ts +2 -2
- package/vars/component/checkbox.d.ts +5 -123
- package/vars/component/checkbox.mjs +5 -123
- package/vars/component/checkmark.d.ts +121 -0
- package/vars/component/checkmark.mjs +121 -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/chip.d.ts +0 -91
- package/vars/component/chip.mjs +0 -91
- 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/radio.d.ts +28 -52
- package/vars/component/radio.mjs +28 -52
- package/vars/component/radiomark.d.ts +77 -0
- package/vars/component/radiomark.mjs +77 -0
- package/vars/component/select-box.d.ts +0 -47
- package/vars/component/select-box.mjs +0 -47
package/all.css
CHANGED
|
@@ -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_default {
|
|
2660
|
+
font-weight: var(--seed-font-weight-regular);
|
|
2661
|
+
}
|
|
2662
|
+
|
|
2663
|
+
.seed-checkbox__label--weight_stronger {
|
|
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,101 @@
|
|
|
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-
|
|
2712
|
+
.seed-checkmark__root--variant_square:is(:checked, :indeterminate, [data-checked], [data-indeterminate]) {
|
|
2686
2713
|
background: var(--seed-color-bg-brand-solid);
|
|
2687
2714
|
border-width: 0;
|
|
2688
2715
|
}
|
|
2689
2716
|
|
|
2690
|
-
.seed-
|
|
2717
|
+
.seed-checkmark__root--variant_square:is(:active, [data-active]) {
|
|
2691
2718
|
background: var(--seed-color-bg-layer-default-pressed);
|
|
2692
2719
|
}
|
|
2693
2720
|
|
|
2694
|
-
.seed-
|
|
2721
|
+
.seed-checkmark__root--variant_square:is(:active, [data-active]):is(:checked, :indeterminate, [data-checked], [data-indeterminate]) {
|
|
2695
2722
|
background: var(--seed-color-bg-brand-solid-pressed);
|
|
2696
2723
|
}
|
|
2697
2724
|
|
|
2698
|
-
.seed-
|
|
2725
|
+
.seed-checkmark__root--variant_square:is(:disabled, [disabled], [data-disabled]) {
|
|
2699
2726
|
background: var(--seed-color-bg-disabled);
|
|
2700
2727
|
border-color: var(--seed-color-stroke-neutral-muted);
|
|
2701
2728
|
}
|
|
2702
2729
|
|
|
2703
|
-
.seed-
|
|
2730
|
+
.seed-checkmark__root--variant_square:is(:disabled, [disabled], [data-disabled]):is(:active, [data-active]) {
|
|
2704
2731
|
background: var(--seed-color-bg-disabled);
|
|
2705
2732
|
}
|
|
2706
2733
|
|
|
2707
|
-
.seed-
|
|
2734
|
+
.seed-checkmark__icon--variant_square:is(:checked, :indeterminate, [data-checked], [data-indeterminate]) {
|
|
2708
2735
|
color: var(--seed-color-palette-static-white);
|
|
2709
2736
|
display: block;
|
|
2710
2737
|
}
|
|
2711
2738
|
|
|
2712
|
-
.seed-
|
|
2739
|
+
.seed-checkmark__icon--variant_square:is(:disabled, [disabled], [data-disabled]):is(:checked, :indeterminate, [data-checked], [data-indeterminate]) {
|
|
2713
2740
|
color: var(--seed-color-fg-disabled);
|
|
2714
2741
|
display: block;
|
|
2715
2742
|
}
|
|
2716
2743
|
|
|
2717
|
-
.seed-
|
|
2718
|
-
color: var(--seed-color-fg-disabled);
|
|
2719
|
-
}
|
|
2720
|
-
|
|
2721
|
-
.seed-checkbox__control--variant_ghost, .seed-checkbox__control--variant_ghost:is(:checked, :indeterminate, [data-checked], [data-indeterminate]) {
|
|
2744
|
+
.seed-checkmark__root--variant_ghost, .seed-checkmark__root--variant_ghost:is(:checked, :indeterminate, [data-checked], [data-indeterminate]) {
|
|
2722
2745
|
background: none;
|
|
2723
2746
|
}
|
|
2724
2747
|
|
|
2725
|
-
.seed-
|
|
2748
|
+
.seed-checkmark__root--variant_ghost:is(:active, [data-active]) {
|
|
2726
2749
|
background: var(--seed-color-bg-layer-default-pressed);
|
|
2727
2750
|
}
|
|
2728
2751
|
|
|
2729
|
-
.seed-
|
|
2752
|
+
.seed-checkmark__root--variant_ghost:is(:active, [data-active]):is(:checked, :indeterminate, [data-checked], [data-indeterminate]) {
|
|
2730
2753
|
background: var(--seed-color-palette-carrot-200);
|
|
2731
2754
|
}
|
|
2732
2755
|
|
|
2733
|
-
.seed-
|
|
2756
|
+
.seed-checkmark__root--variant_ghost:is(:disabled, [disabled], [data-disabled]):is(:checked, :indeterminate, [data-checked], [data-indeterminate]), .seed-checkmark__root--variant_ghost:is(:disabled, [disabled], [data-disabled]):is(:active, [data-active]) {
|
|
2734
2757
|
background: none;
|
|
2735
2758
|
}
|
|
2736
2759
|
|
|
2737
|
-
.seed-
|
|
2760
|
+
.seed-checkmark__icon--variant_ghost {
|
|
2738
2761
|
color: var(--seed-color-fg-placeholder);
|
|
2739
2762
|
display: block;
|
|
2740
2763
|
}
|
|
2741
2764
|
|
|
2742
|
-
.seed-
|
|
2765
|
+
.seed-checkmark__icon--variant_ghost:is(:checked, :indeterminate, [data-checked], [data-indeterminate]) {
|
|
2743
2766
|
color: var(--seed-color-fg-brand);
|
|
2744
2767
|
}
|
|
2745
2768
|
|
|
2746
|
-
.seed-
|
|
2769
|
+
.seed-checkmark__icon--variant_ghost:is(:disabled, [disabled], [data-disabled]):is(:checked, :indeterminate, [data-checked], [data-indeterminate]), .seed-checkmark__icon--variant_ghost:is(:disabled, [disabled], [data-disabled]) {
|
|
2747
2770
|
color: var(--seed-color-fg-disabled);
|
|
2748
2771
|
}
|
|
2749
2772
|
|
|
2750
|
-
.seed-
|
|
2751
|
-
min-height: var(--seed-dimension-x9);
|
|
2752
|
-
}
|
|
2753
|
-
|
|
2754
|
-
.seed-checkbox__control--size_large {
|
|
2773
|
+
.seed-checkmark__root--size_large {
|
|
2755
2774
|
border-radius: var(--seed-radius-r1);
|
|
2756
2775
|
width: var(--seed-dimension-x6);
|
|
2757
2776
|
height: var(--seed-dimension-x6);
|
|
2758
|
-
margin: calc((var(--seed-dimension-x9) - var(--seed-dimension-x6)) / 2) 0;
|
|
2759
|
-
}
|
|
2760
|
-
|
|
2761
|
-
.seed-checkbox__label--size_large {
|
|
2762
|
-
font-size: var(--seed-font-size-t5);
|
|
2763
|
-
line-height: var(--seed-line-height-t5);
|
|
2764
|
-
margin-block-start: calc(18px - .65625rem);
|
|
2765
|
-
}
|
|
2766
|
-
|
|
2767
|
-
.seed-checkbox__root--size_medium {
|
|
2768
|
-
min-height: var(--seed-dimension-x8);
|
|
2769
2777
|
}
|
|
2770
2778
|
|
|
2771
|
-
.seed-
|
|
2779
|
+
.seed-checkmark__root--size_medium {
|
|
2772
2780
|
border-radius: var(--seed-radius-r1);
|
|
2773
2781
|
width: var(--seed-dimension-x5);
|
|
2774
2782
|
height: var(--seed-dimension-x5);
|
|
2775
|
-
margin: calc((var(--seed-dimension-x8) - var(--seed-dimension-x5)) / 2) 0;
|
|
2776
|
-
}
|
|
2777
|
-
|
|
2778
|
-
.seed-checkbox__label--size_medium {
|
|
2779
|
-
font-size: var(--seed-font-size-t4);
|
|
2780
|
-
line-height: var(--seed-line-height-t4);
|
|
2781
|
-
margin-block-start: calc(16px - .59375rem);
|
|
2782
2783
|
}
|
|
2783
2784
|
|
|
2784
|
-
.seed-
|
|
2785
|
+
.seed-checkmark__icon--size_medium-variant_ghost {
|
|
2785
2786
|
width: 14px;
|
|
2786
2787
|
height: 14px;
|
|
2787
2788
|
}
|
|
2788
2789
|
|
|
2789
|
-
.seed-
|
|
2790
|
+
.seed-checkmark__icon--size_large-variant_ghost {
|
|
2790
2791
|
width: 18px;
|
|
2791
2792
|
height: 18px;
|
|
2792
2793
|
}
|
|
2793
2794
|
|
|
2794
|
-
.seed-
|
|
2795
|
+
.seed-checkmark__icon--size_medium-variant_square {
|
|
2795
2796
|
width: 12px;
|
|
2796
2797
|
height: 12px;
|
|
2797
2798
|
}
|
|
2798
2799
|
|
|
2799
|
-
.seed-
|
|
2800
|
+
.seed-checkmark__icon--size_large-variant_square {
|
|
2800
2801
|
width: 14px;
|
|
2801
2802
|
height: 14px;
|
|
2802
2803
|
}
|
|
@@ -2831,14 +2832,9 @@
|
|
|
2831
2832
|
cursor: not-allowed;
|
|
2832
2833
|
}
|
|
2833
2834
|
|
|
2834
|
-
.seed-chip__root {
|
|
2835
|
-
--seed-icon-color: inherit;
|
|
2836
|
-
}
|
|
2837
|
-
|
|
2838
2835
|
.seed-chip__label {
|
|
2839
2836
|
font-weight: var(--seed-font-weight-medium);
|
|
2840
2837
|
padding-inline: var(--seed-dimension-x1_5);
|
|
2841
|
-
color: inherit;
|
|
2842
2838
|
justify-content: center;
|
|
2843
2839
|
align-items: center;
|
|
2844
2840
|
display: inline-flex;
|
|
@@ -2846,7 +2842,6 @@
|
|
|
2846
2842
|
|
|
2847
2843
|
.seed-chip__prefixIcon {
|
|
2848
2844
|
padding-left: var(--seed-dimension-x1_5);
|
|
2849
|
-
--seed-icon-color: inherit;
|
|
2850
2845
|
flex-shrink: 0;
|
|
2851
2846
|
align-items: center;
|
|
2852
2847
|
display: inline-flex;
|
|
@@ -2860,7 +2855,6 @@
|
|
|
2860
2855
|
|
|
2861
2856
|
.seed-chip__suffixIcon {
|
|
2862
2857
|
padding-right: var(--seed-dimension-x1_5);
|
|
2863
|
-
--seed-icon-color: inherit;
|
|
2864
2858
|
flex-shrink: 0;
|
|
2865
2859
|
align-items: center;
|
|
2866
2860
|
display: inline-flex;
|
|
@@ -2868,101 +2862,99 @@
|
|
|
2868
2862
|
|
|
2869
2863
|
.seed-chip__root--variant_solid {
|
|
2870
2864
|
background: var(--seed-color-bg-neutral-weak);
|
|
2871
|
-
color: var(--seed-color-fg-neutral);
|
|
2865
|
+
--seed-icon-color: var(--seed-color-fg-neutral);
|
|
2872
2866
|
}
|
|
2873
2867
|
|
|
2874
2868
|
.seed-chip__root--variant_solid:is(:checked, [data-checked]) {
|
|
2875
2869
|
box-shadow: none;
|
|
2876
2870
|
background: var(--seed-color-bg-neutral-inverted);
|
|
2877
|
-
color: var(--seed-color-fg-neutral-inverted);
|
|
2878
2871
|
--seed-icon-color: var(--seed-color-fg-neutral-inverted);
|
|
2879
2872
|
}
|
|
2880
2873
|
|
|
2881
2874
|
.seed-chip__root--variant_solid:is(:active, [data-active]):not(:is(:disabled, [disabled], [data-disabled])) {
|
|
2882
2875
|
background: var(--seed-color-bg-neutral-weak-pressed);
|
|
2883
|
-
color: var(--seed-color-fg-neutral);
|
|
2884
|
-
--seed-icon-color: var(--seed-color-fg-neutral);
|
|
2885
2876
|
}
|
|
2886
2877
|
|
|
2887
2878
|
.seed-chip__root--variant_solid:is(:checked, [data-checked]):is(:active, [data-active]):not(:is(:disabled, [disabled], [data-disabled])) {
|
|
2888
2879
|
background: var(--seed-color-bg-neutral-inverted-pressed);
|
|
2889
|
-
color: var(--seed-color-fg-neutral-inverted);
|
|
2890
|
-
--seed-icon-color: var(--seed-color-fg-neutral-inverted);
|
|
2891
2880
|
}
|
|
2892
2881
|
|
|
2893
2882
|
.seed-chip__root--variant_solid:is(:disabled, [disabled], [data-disabled]) {
|
|
2894
2883
|
opacity: .5;
|
|
2895
2884
|
}
|
|
2896
2885
|
|
|
2897
|
-
.seed-
|
|
2898
|
-
|
|
2886
|
+
.seed-chip__label--variant_solid {
|
|
2887
|
+
color: var(--seed-color-fg-neutral);
|
|
2888
|
+
}
|
|
2889
|
+
|
|
2890
|
+
.seed-chip__label--variant_solid:is(:checked, [data-checked]) {
|
|
2891
|
+
color: var(--seed-color-fg-neutral-inverted);
|
|
2892
|
+
}
|
|
2893
|
+
|
|
2894
|
+
.seed-chip__prefixIcon--variant_solid, .seed-chip__suffixIcon--variant_solid {
|
|
2895
|
+
color: var(--seed-color-fg-neutral);
|
|
2899
2896
|
}
|
|
2900
2897
|
|
|
2901
2898
|
.seed-chip__root--variant_outlineStrong {
|
|
2902
2899
|
background: var(--seed-color-bg-layer-default);
|
|
2903
2900
|
box-shadow: inset 0 0 0 1px var(--seed-color-stroke-neutral-muted);
|
|
2904
|
-
color: var(--seed-color-fg-neutral);
|
|
2901
|
+
--seed-icon-color: var(--seed-color-fg-neutral);
|
|
2905
2902
|
}
|
|
2906
2903
|
|
|
2907
2904
|
.seed-chip__root--variant_outlineStrong:is(:active, [data-active]):not(:is(:disabled, [disabled], [data-disabled])) {
|
|
2908
2905
|
background: var(--seed-color-bg-layer-default-pressed);
|
|
2909
|
-
color: var(--seed-color-fg-neutral);
|
|
2910
|
-
--seed-icon-color: var(--seed-color-fg-neutral);
|
|
2911
2906
|
}
|
|
2912
2907
|
|
|
2913
2908
|
.seed-chip__root--variant_outlineStrong:is(:checked, [data-checked]) {
|
|
2914
2909
|
background: var(--seed-color-bg-neutral-inverted);
|
|
2915
|
-
color: var(--seed-color-fg-neutral-inverted);
|
|
2916
2910
|
--seed-icon-color: var(--seed-color-fg-neutral-inverted);
|
|
2917
2911
|
}
|
|
2918
2912
|
|
|
2919
2913
|
.seed-chip__root--variant_outlineStrong:is(:checked, [data-checked]):is(:active, [data-active]):not(:is(:disabled, [disabled], [data-disabled])) {
|
|
2920
2914
|
background: var(--seed-color-bg-neutral-inverted-pressed);
|
|
2921
|
-
color: var(--seed-color-fg-neutral-inverted);
|
|
2922
|
-
--seed-icon-color: var(--seed-color-fg-neutral-inverted);
|
|
2923
2915
|
}
|
|
2924
2916
|
|
|
2925
2917
|
.seed-chip__root--variant_outlineStrong:is(:disabled, [disabled], [data-disabled]) {
|
|
2926
2918
|
opacity: .5;
|
|
2927
2919
|
}
|
|
2928
2920
|
|
|
2929
|
-
.seed-
|
|
2930
|
-
|
|
2921
|
+
.seed-chip__label--variant_outlineStrong {
|
|
2922
|
+
color: var(--seed-color-fg-neutral);
|
|
2923
|
+
}
|
|
2924
|
+
|
|
2925
|
+
.seed-chip__label--variant_outlineStrong:is(:checked, [data-checked]) {
|
|
2926
|
+
color: var(--seed-color-fg-neutral-inverted);
|
|
2927
|
+
}
|
|
2928
|
+
|
|
2929
|
+
.seed-chip__prefixIcon--variant_outlineStrong, .seed-chip__suffixIcon--variant_outlineStrong {
|
|
2930
|
+
color: var(--seed-color-fg-neutral);
|
|
2931
2931
|
}
|
|
2932
2932
|
|
|
2933
2933
|
.seed-chip__root--variant_outlineWeak {
|
|
2934
2934
|
background: var(--seed-color-bg-layer-default);
|
|
2935
2935
|
box-shadow: inset 0 0 0 1px var(--seed-color-stroke-neutral-muted);
|
|
2936
|
-
color: var(--seed-color-fg-neutral);
|
|
2936
|
+
--seed-icon-color: var(--seed-color-fg-neutral);
|
|
2937
2937
|
}
|
|
2938
2938
|
|
|
2939
2939
|
.seed-chip__root--variant_outlineWeak:is(:active, [data-active]):not(:is(:disabled, [disabled], [data-disabled])) {
|
|
2940
2940
|
background: var(--seed-color-bg-layer-default-pressed);
|
|
2941
|
-
box-shadow: inset 0 0 0 1px var(--seed-color-stroke-neutral-muted);
|
|
2942
|
-
color: var(--seed-color-fg-neutral);
|
|
2943
|
-
--seed-icon-color: var(--seed-color-fg-neutral);
|
|
2944
2941
|
}
|
|
2945
2942
|
|
|
2946
2943
|
.seed-chip__root--variant_outlineWeak:is(:checked, [data-checked]) {
|
|
2947
2944
|
background: var(--seed-color-bg-neutral-weak);
|
|
2948
2945
|
box-shadow: inset 0 0 0 1px var(--seed-color-stroke-neutral-contrast);
|
|
2949
|
-
color: var(--seed-color-fg-neutral);
|
|
2950
|
-
--seed-icon-color: var(--seed-color-fg-neutral);
|
|
2951
2946
|
}
|
|
2952
2947
|
|
|
2953
2948
|
.seed-chip__root--variant_outlineWeak:is(:checked, [data-checked]):is(:active, [data-active]):not(:is(:disabled, [disabled], [data-disabled])) {
|
|
2954
2949
|
background: var(--seed-color-bg-neutral-weak-pressed);
|
|
2955
|
-
box-shadow: inset 0 0 0 1px var(--seed-color-stroke-neutral-contrast);
|
|
2956
|
-
color: var(--seed-color-fg-neutral);
|
|
2957
|
-
--seed-icon-color: var(--seed-color-fg-neutral);
|
|
2958
2950
|
}
|
|
2959
2951
|
|
|
2960
2952
|
.seed-chip__root--variant_outlineWeak:is(:disabled, [disabled], [data-disabled]) {
|
|
2961
2953
|
opacity: .5;
|
|
2962
2954
|
}
|
|
2963
2955
|
|
|
2964
|
-
.seed-
|
|
2965
|
-
|
|
2956
|
+
.seed-chip__label--variant_outlineWeak, .seed-chip__prefixIcon--variant_outlineWeak, .seed-chip__suffixIcon--variant_outlineWeak {
|
|
2957
|
+
color: var(--seed-color-fg-neutral);
|
|
2966
2958
|
}
|
|
2967
2959
|
|
|
2968
2960
|
.seed-chip__root--size_large {
|
|
@@ -3076,25 +3068,41 @@
|
|
|
3076
3068
|
box-sizing: border-box;
|
|
3077
3069
|
white-space: nowrap;
|
|
3078
3070
|
border-radius: var(--seed-radius-full);
|
|
3079
|
-
padding: var(--seed-dimension-x2)
|
|
3080
|
-
|
|
3071
|
+
padding-top: var(--seed-dimension-x2);
|
|
3072
|
+
padding-bottom: var(--seed-dimension-x2);
|
|
3081
3073
|
font-family: inherit;
|
|
3082
|
-
font-
|
|
3083
|
-
font-weight: var(--seed-font-weight-bold);
|
|
3074
|
+
font-weight: var(--seed-font-weight-medium);
|
|
3084
3075
|
border: none;
|
|
3085
3076
|
justify-content: center;
|
|
3086
3077
|
align-items: center;
|
|
3087
3078
|
display: flex;
|
|
3088
3079
|
}
|
|
3089
3080
|
|
|
3090
|
-
.seed-chip-tabs__list--
|
|
3091
|
-
gap:
|
|
3081
|
+
.seed-chip-tabs__list--size_medium {
|
|
3082
|
+
gap: 8px;
|
|
3083
|
+
}
|
|
3084
|
+
|
|
3085
|
+
.seed-chip-tabs__trigger--size_medium {
|
|
3086
|
+
min-height: 36px;
|
|
3087
|
+
font-size: var(--seed-font-size-t4);
|
|
3088
|
+
padding-left: var(--seed-dimension-x3_5);
|
|
3089
|
+
padding-right: var(--seed-dimension-x3_5);
|
|
3090
|
+
}
|
|
3091
|
+
|
|
3092
|
+
.seed-chip-tabs__list--size_large {
|
|
3093
|
+
gap: 8px;
|
|
3094
|
+
}
|
|
3095
|
+
|
|
3096
|
+
.seed-chip-tabs__trigger--size_large {
|
|
3097
|
+
min-height: 40px;
|
|
3098
|
+
font-size: var(--seed-font-size-t4);
|
|
3099
|
+
padding-left: var(--seed-dimension-x4);
|
|
3100
|
+
padding-right: var(--seed-dimension-x4);
|
|
3092
3101
|
}
|
|
3093
3102
|
|
|
3094
3103
|
.seed-chip-tabs__trigger--variant_neutralSolid {
|
|
3104
|
+
background-color: var(--seed-color-bg-neutral-weak);
|
|
3095
3105
|
color: var(--seed-color-fg-neutral);
|
|
3096
|
-
font-weight: var(--seed-font-weight-bold);
|
|
3097
|
-
background-color: #0000;
|
|
3098
3106
|
}
|
|
3099
3107
|
|
|
3100
3108
|
.seed-chip-tabs__trigger--variant_neutralSolid:is(:selected, [data-selected]) {
|
|
@@ -3120,20 +3128,44 @@
|
|
|
3120
3128
|
color: var(--seed-color-fg-disabled);
|
|
3121
3129
|
}
|
|
3122
3130
|
|
|
3123
|
-
.seed-chip-
|
|
3124
|
-
|
|
3131
|
+
.seed-chip-tabs__trigger--variant_neutralOutline {
|
|
3132
|
+
border: 1px solid var(--seed-color-stroke-neutral-muted);
|
|
3133
|
+
color: var(--seed-color-fg-neutral);
|
|
3134
|
+
background-color: #0000;
|
|
3135
|
+
}
|
|
3136
|
+
|
|
3137
|
+
.seed-chip-tabs__trigger--variant_neutralOutline:is(:selected, [data-selected]) {
|
|
3138
|
+
background-color: var(--seed-color-bg-neutral-inverted);
|
|
3139
|
+
color: var(--seed-color-fg-neutral-inverted);
|
|
3140
|
+
border-color: #0000;
|
|
3141
|
+
}
|
|
3142
|
+
|
|
3143
|
+
.seed-chip-tabs__trigger--variant_neutralOutline:is(:active, [data-active]) {
|
|
3144
|
+
background-color: var(--seed-color-bg-layer-default-pressed);
|
|
3145
|
+
}
|
|
3146
|
+
|
|
3147
|
+
.seed-chip-tabs__trigger--variant_neutralOutline:is(:selected, [data-selected]):is(:active, [data-active]) {
|
|
3148
|
+
background-color: var(--seed-color-bg-neutral-inverted-pressed);
|
|
3149
|
+
}
|
|
3150
|
+
|
|
3151
|
+
.seed-chip-tabs__trigger--variant_neutralOutline:is(:disabled, [disabled], [data-disabled]) {
|
|
3152
|
+
cursor: not-allowed;
|
|
3153
|
+
color: var(--seed-color-fg-disabled);
|
|
3154
|
+
}
|
|
3155
|
+
|
|
3156
|
+
.seed-chip-tabs__trigger--variant_neutralOutline:is(:disabled, [disabled], [data-disabled]):is(:selected, [data-selected]) {
|
|
3157
|
+
background-color: var(--seed-color-bg-disabled);
|
|
3158
|
+
color: var(--seed-color-fg-disabled);
|
|
3125
3159
|
}
|
|
3126
3160
|
|
|
3127
3161
|
.seed-chip-tabs__trigger--variant_brandSolid {
|
|
3128
3162
|
background-color: var(--seed-color-bg-neutral-weak);
|
|
3129
3163
|
color: var(--seed-color-fg-neutral-muted);
|
|
3130
|
-
font-weight: var(--seed-font-weight-medium);
|
|
3131
3164
|
}
|
|
3132
3165
|
|
|
3133
3166
|
.seed-chip-tabs__trigger--variant_brandSolid:is(:selected, [data-selected]) {
|
|
3134
3167
|
background-color: var(--seed-color-bg-brand-solid);
|
|
3135
3168
|
color: var(--seed-color-palette-static-white);
|
|
3136
|
-
font-weight: var(--seed-font-weight-bold);
|
|
3137
3169
|
}
|
|
3138
3170
|
|
|
3139
3171
|
.seed-chip-tabs__trigger--variant_brandSolid:is(:active, [data-active]) {
|
|
@@ -4173,6 +4205,119 @@
|
|
|
4173
4205
|
--seed-suffix-icon-size: var(--seed-dimension-x3);
|
|
4174
4206
|
}
|
|
4175
4207
|
|
|
4208
|
+
.seed-list-item__root {
|
|
4209
|
+
box-sizing: border-box;
|
|
4210
|
+
-webkit-font-smoothing: antialiased;
|
|
4211
|
+
-moz-osx-font-smoothing: grayscale;
|
|
4212
|
+
z-index: 0;
|
|
4213
|
+
width: 100%;
|
|
4214
|
+
padding-inline: var(--seed-dimension-spacing-x-global-gutter);
|
|
4215
|
+
padding-block: var(--seed-dimension-x2_5);
|
|
4216
|
+
--seed-box-align-items: center;
|
|
4217
|
+
align-items: var(--seed-box-align-items);
|
|
4218
|
+
transition-property: background-color;
|
|
4219
|
+
transition-duration: var(--seed-duration-d3);
|
|
4220
|
+
transition-timing-function: var(--seed-timing-function-easing);
|
|
4221
|
+
border: none;
|
|
4222
|
+
font-family: inherit;
|
|
4223
|
+
display: flex;
|
|
4224
|
+
position: relative;
|
|
4225
|
+
}
|
|
4226
|
+
|
|
4227
|
+
.seed-list-item__prefix {
|
|
4228
|
+
--seed-box-padding-right: var(--seed-dimension-x3);
|
|
4229
|
+
padding-right: var(--seed-box-padding-right);
|
|
4230
|
+
--seed-icon-size: 22px;
|
|
4231
|
+
--seed-icon-color: var(--seed-color-fg-neutral);
|
|
4232
|
+
flex-shrink: 0;
|
|
4233
|
+
align-items: center;
|
|
4234
|
+
display: inline-flex;
|
|
4235
|
+
}
|
|
4236
|
+
|
|
4237
|
+
.seed-list-item__prefix:is(:disabled, [disabled], [data-disabled]) {
|
|
4238
|
+
--seed-icon-color: var(--seed-color-fg-disabled);
|
|
4239
|
+
}
|
|
4240
|
+
|
|
4241
|
+
.seed-list-item__suffix {
|
|
4242
|
+
--seed-box-position: initial;
|
|
4243
|
+
position: var(--seed-box-position);
|
|
4244
|
+
--seed-box-gap: var(--seed-dimension-x1);
|
|
4245
|
+
align-items: center;
|
|
4246
|
+
gap: var(--seed-box-gap);
|
|
4247
|
+
font-size: var(--seed-font-size-t5);
|
|
4248
|
+
line-height: var(--seed-line-height-t5);
|
|
4249
|
+
font-weight: var(--seed-font-weight-regular);
|
|
4250
|
+
color: var(--seed-color-fg-neutral-subtle);
|
|
4251
|
+
--seed-icon-size: 18px;
|
|
4252
|
+
--seed-icon-color: var(--seed-color-fg-neutral-subtle);
|
|
4253
|
+
flex-shrink: 0;
|
|
4254
|
+
display: inline-flex;
|
|
4255
|
+
}
|
|
4256
|
+
|
|
4257
|
+
.seed-list-item__suffix:is(:disabled, [disabled], [data-disabled]) {
|
|
4258
|
+
--seed-icon-color: var(--seed-color-fg-disabled);
|
|
4259
|
+
}
|
|
4260
|
+
|
|
4261
|
+
.seed-list-item__content {
|
|
4262
|
+
box-sizing: border-box;
|
|
4263
|
+
text-align: start;
|
|
4264
|
+
--seed-box-gap: var(--seed-dimension-x0_5);
|
|
4265
|
+
align-items: flex-start;
|
|
4266
|
+
gap: var(--seed-box-gap);
|
|
4267
|
+
--seed-box-padding-right: var(--seed-dimension-x2_5);
|
|
4268
|
+
padding-right: var(--seed-box-padding-right);
|
|
4269
|
+
flex-direction: column;
|
|
4270
|
+
flex-grow: 1;
|
|
4271
|
+
display: inline-flex;
|
|
4272
|
+
}
|
|
4273
|
+
|
|
4274
|
+
.seed-list-item__content:after {
|
|
4275
|
+
content: "";
|
|
4276
|
+
position: absolute;
|
|
4277
|
+
inset: 0;
|
|
4278
|
+
}
|
|
4279
|
+
|
|
4280
|
+
.seed-list-item__content:before {
|
|
4281
|
+
content: "";
|
|
4282
|
+
z-index: -1;
|
|
4283
|
+
transition-property: background-color;
|
|
4284
|
+
transition-duration: var(--seed-duration-d3);
|
|
4285
|
+
transition-timing-function: var(--seed-timing-function-easing);
|
|
4286
|
+
position: absolute;
|
|
4287
|
+
inset: 0;
|
|
4288
|
+
}
|
|
4289
|
+
|
|
4290
|
+
.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 {
|
|
4291
|
+
background-color: var(--seed-color-bg-layer-default-pressed);
|
|
4292
|
+
}
|
|
4293
|
+
|
|
4294
|
+
.seed-list-item__title {
|
|
4295
|
+
font-size: var(--seed-font-size-t5);
|
|
4296
|
+
line-height: var(--seed-line-height-t5);
|
|
4297
|
+
font-weight: var(--seed-font-weight-medium);
|
|
4298
|
+
color: var(--seed-color-fg-neutral);
|
|
4299
|
+
flex-shrink: 0;
|
|
4300
|
+
}
|
|
4301
|
+
|
|
4302
|
+
.seed-list-item__title:is(:disabled, [disabled], [data-disabled]) {
|
|
4303
|
+
color: var(--seed-color-fg-disabled);
|
|
4304
|
+
}
|
|
4305
|
+
|
|
4306
|
+
.seed-list-item__detail {
|
|
4307
|
+
font-size: var(--seed-font-size-t3);
|
|
4308
|
+
line-height: var(--seed-line-height-t3);
|
|
4309
|
+
font-weight: var(--seed-font-weight-regular);
|
|
4310
|
+
color: var(--seed-color-fg-neutral-subtle);
|
|
4311
|
+
}
|
|
4312
|
+
|
|
4313
|
+
.seed-list-item__detail:is(:disabled, [disabled], [data-disabled]) {
|
|
4314
|
+
color: var(--seed-color-fg-neutral-subtle);
|
|
4315
|
+
}
|
|
4316
|
+
|
|
4317
|
+
.seed-list-item__root--highlighted_true {
|
|
4318
|
+
background-color: var(--seed-color-palette-carrot-100);
|
|
4319
|
+
}
|
|
4320
|
+
|
|
4176
4321
|
.seed-manner-temp {
|
|
4177
4322
|
box-sizing: border-box;
|
|
4178
4323
|
justify-content: flex-start;
|
|
@@ -4791,80 +4936,136 @@
|
|
|
4791
4936
|
}
|
|
4792
4937
|
|
|
4793
4938
|
.seed-radio__root {
|
|
4939
|
+
vertical-align: top;
|
|
4940
|
+
isolation: isolate;
|
|
4941
|
+
cursor: pointer;
|
|
4942
|
+
align-items: flex-start;
|
|
4943
|
+
gap: var(--seed-dimension-x2);
|
|
4944
|
+
max-inline-size: 100%;
|
|
4945
|
+
display: inline-flex;
|
|
4946
|
+
position: relative;
|
|
4947
|
+
}
|
|
4948
|
+
|
|
4949
|
+
.seed-radio__root:is(:disabled, [disabled], [data-disabled]) {
|
|
4950
|
+
cursor: not-allowed;
|
|
4951
|
+
}
|
|
4952
|
+
|
|
4953
|
+
.seed-radio__label {
|
|
4954
|
+
color: var(--seed-color-fg-neutral);
|
|
4955
|
+
}
|
|
4956
|
+
|
|
4957
|
+
.seed-radio__label:is(:disabled, [disabled], [data-disabled]) {
|
|
4958
|
+
color: var(--seed-color-fg-disabled);
|
|
4959
|
+
}
|
|
4960
|
+
|
|
4961
|
+
.seed-radio__label--weight_default {
|
|
4962
|
+
font-weight: var(--seed-font-weight-regular);
|
|
4963
|
+
}
|
|
4964
|
+
|
|
4965
|
+
.seed-radio__label--weight_stronger {
|
|
4966
|
+
font-weight: var(--seed-font-weight-bold);
|
|
4967
|
+
}
|
|
4968
|
+
|
|
4969
|
+
.seed-radio__root--size_large {
|
|
4970
|
+
min-height: var(--seed-dimension-x9);
|
|
4971
|
+
--radiomark-margin-top: calc((var(--seed-dimension-x9) - var(--seed-dimension-x6)) / 2);
|
|
4972
|
+
}
|
|
4973
|
+
|
|
4974
|
+
.seed-radio__label--size_large {
|
|
4975
|
+
font-size: var(--seed-font-size-t5);
|
|
4976
|
+
line-height: var(--seed-line-height-t5);
|
|
4977
|
+
margin-block-start: calc(18px - .65625rem);
|
|
4978
|
+
}
|
|
4979
|
+
|
|
4980
|
+
.seed-radio__root--size_medium {
|
|
4981
|
+
min-height: var(--seed-dimension-x8);
|
|
4982
|
+
--radiomark-margin-top: calc((var(--seed-dimension-x8) - var(--seed-dimension-x5)) / 2);
|
|
4983
|
+
}
|
|
4984
|
+
|
|
4985
|
+
.seed-radio__label--size_medium {
|
|
4986
|
+
font-size: var(--seed-font-size-t4);
|
|
4987
|
+
line-height: var(--seed-line-height-t4);
|
|
4988
|
+
margin-block-start: calc(16px - .59375rem);
|
|
4989
|
+
}
|
|
4990
|
+
|
|
4991
|
+
.seed-radiomark__root {
|
|
4794
4992
|
box-sizing: border-box;
|
|
4795
4993
|
background-color: var(--seed-color-bg-layer-default);
|
|
4796
4994
|
border-style: solid;
|
|
4797
4995
|
border-width: 1px;
|
|
4798
4996
|
border-color: var(--seed-color-stroke-neutral-weak);
|
|
4799
4997
|
border-radius: var(--seed-radius-full);
|
|
4998
|
+
margin-top: var(--radiomark-margin-top, 0);
|
|
4800
4999
|
flex: none;
|
|
4801
5000
|
justify-content: center;
|
|
4802
5001
|
align-items: center;
|
|
4803
5002
|
display: flex;
|
|
5003
|
+
position: relative;
|
|
4804
5004
|
}
|
|
4805
5005
|
|
|
4806
|
-
.seed-
|
|
5006
|
+
.seed-radiomark__root:is(:active, [data-active]) {
|
|
4807
5007
|
background-color: var(--seed-color-bg-layer-default-pressed);
|
|
4808
5008
|
}
|
|
4809
5009
|
|
|
4810
|
-
.seed-
|
|
5010
|
+
.seed-radiomark__root:is(:checked, [data-checked]) {
|
|
4811
5011
|
background-color: var(--seed-color-bg-brand-solid);
|
|
4812
5012
|
border-width: 0;
|
|
4813
5013
|
}
|
|
4814
5014
|
|
|
4815
|
-
.seed-
|
|
5015
|
+
.seed-radiomark__root:is(:active, [data-active]):is(:checked, [data-checked]) {
|
|
4816
5016
|
background-color: var(--seed-color-bg-brand-solid-pressed);
|
|
4817
5017
|
}
|
|
4818
5018
|
|
|
4819
|
-
.seed-
|
|
5019
|
+
.seed-radiomark__root:is(:disabled, [disabled], [data-disabled]) {
|
|
4820
5020
|
background-color: var(--seed-color-palette-gray-300);
|
|
4821
5021
|
}
|
|
4822
5022
|
|
|
4823
|
-
.seed-
|
|
4824
|
-
|
|
5023
|
+
.seed-radiomark__root:is(:disabled, [disabled], [data-disabled]):is(:checked, [data-checked]) {
|
|
5024
|
+
border-width: 1px;
|
|
4825
5025
|
border-color: var(--seed-color-palette-gray-300);
|
|
5026
|
+
background: none;
|
|
4826
5027
|
}
|
|
4827
5028
|
|
|
4828
|
-
.seed-
|
|
5029
|
+
.seed-radiomark__icon {
|
|
4829
5030
|
border-radius: var(--seed-radius-full);
|
|
4830
5031
|
display: none;
|
|
4831
5032
|
}
|
|
4832
5033
|
|
|
4833
|
-
.seed-
|
|
4834
|
-
|
|
5034
|
+
.seed-radiomark__icon:is(:checked, [data-checked]) {
|
|
5035
|
+
color: var(--seed-color-palette-static-white);
|
|
4835
5036
|
display: block;
|
|
4836
5037
|
}
|
|
4837
5038
|
|
|
4838
|
-
.seed-
|
|
4839
|
-
|
|
5039
|
+
.seed-radiomark__icon:is(:disabled, [disabled], [data-disabled]):is(:checked, [data-checked]) {
|
|
5040
|
+
color: var(--seed-color-palette-gray-300);
|
|
4840
5041
|
}
|
|
4841
5042
|
|
|
4842
|
-
.seed-
|
|
5043
|
+
.seed-radiomark__root--size_large {
|
|
4843
5044
|
width: var(--seed-dimension-x6);
|
|
4844
5045
|
height: var(--seed-dimension-x6);
|
|
4845
5046
|
}
|
|
4846
5047
|
|
|
4847
|
-
.seed-
|
|
5048
|
+
.seed-radiomark__icon--size_large {
|
|
4848
5049
|
width: var(--seed-dimension-x2_5);
|
|
4849
5050
|
height: var(--seed-dimension-x2_5);
|
|
4850
5051
|
}
|
|
4851
5052
|
|
|
4852
|
-
.seed-
|
|
5053
|
+
.seed-radiomark__icon--size_large:is(:disabled, [disabled], [data-disabled]) {
|
|
4853
5054
|
width: var(--seed-dimension-x3);
|
|
4854
5055
|
height: var(--seed-dimension-x3);
|
|
4855
5056
|
}
|
|
4856
5057
|
|
|
4857
|
-
.seed-
|
|
5058
|
+
.seed-radiomark__root--size_medium {
|
|
4858
5059
|
width: var(--seed-dimension-x5);
|
|
4859
5060
|
height: var(--seed-dimension-x5);
|
|
4860
5061
|
}
|
|
4861
5062
|
|
|
4862
|
-
.seed-
|
|
5063
|
+
.seed-radiomark__icon--size_medium {
|
|
4863
5064
|
width: var(--seed-dimension-x2);
|
|
4864
5065
|
height: var(--seed-dimension-x2);
|
|
4865
5066
|
}
|
|
4866
5067
|
|
|
4867
|
-
.seed-
|
|
5068
|
+
.seed-radiomark__icon--size_medium:is(:disabled, [disabled], [data-disabled]) {
|
|
4868
5069
|
width: var(--seed-dimension-x2_5);
|
|
4869
5070
|
height: var(--seed-dimension-x2_5);
|
|
4870
5071
|
}
|
|
@@ -5062,86 +5263,6 @@
|
|
|
5062
5263
|
display: flex;
|
|
5063
5264
|
}
|
|
5064
5265
|
|
|
5065
|
-
.seed-select-box__checkboxControl {
|
|
5066
|
-
box-sizing: border-box;
|
|
5067
|
-
width: var(--seed-dimension-x6);
|
|
5068
|
-
height: var(--seed-dimension-x6);
|
|
5069
|
-
background-color: var(--seed-color-bg-layer-default);
|
|
5070
|
-
border-style: solid;
|
|
5071
|
-
border-width: 1px;
|
|
5072
|
-
border-color: var(--seed-color-stroke-neutral-weak);
|
|
5073
|
-
border-radius: var(--seed-radius-r1);
|
|
5074
|
-
flex: none;
|
|
5075
|
-
justify-content: center;
|
|
5076
|
-
align-items: center;
|
|
5077
|
-
display: flex;
|
|
5078
|
-
}
|
|
5079
|
-
|
|
5080
|
-
.seed-select-box__checkboxControl:is(:active, [data-active]) {
|
|
5081
|
-
background-color: var(--seed-color-bg-layer-default-pressed);
|
|
5082
|
-
}
|
|
5083
|
-
|
|
5084
|
-
.seed-select-box__checkboxControl:is(:checked, [data-checked]) {
|
|
5085
|
-
background-color: var(--seed-color-bg-brand-solid);
|
|
5086
|
-
border-width: 0;
|
|
5087
|
-
}
|
|
5088
|
-
|
|
5089
|
-
.seed-select-box__checkboxControl:is(:checked, [data-checked]):is(:active, [data-active]) {
|
|
5090
|
-
background-color: var(--seed-color-bg-brand-solid-pressed);
|
|
5091
|
-
}
|
|
5092
|
-
|
|
5093
|
-
.seed-select-box__checkboxIcon {
|
|
5094
|
-
width: var(--seed-dimension-x3_5);
|
|
5095
|
-
height: var(--seed-dimension-x3_5);
|
|
5096
|
-
display: none;
|
|
5097
|
-
}
|
|
5098
|
-
|
|
5099
|
-
.seed-select-box__checkboxIcon:is(:checked, [data-checked]) {
|
|
5100
|
-
color: var(--seed-color-palette-static-white);
|
|
5101
|
-
display: block;
|
|
5102
|
-
}
|
|
5103
|
-
|
|
5104
|
-
.seed-select-box__radioControl {
|
|
5105
|
-
box-sizing: border-box;
|
|
5106
|
-
width: var(--seed-dimension-x6);
|
|
5107
|
-
height: var(--seed-dimension-x6);
|
|
5108
|
-
background-color: var(--seed-color-bg-layer-default);
|
|
5109
|
-
border-style: solid;
|
|
5110
|
-
border-width: 1px;
|
|
5111
|
-
border-color: var(--seed-color-stroke-neutral-weak);
|
|
5112
|
-
border-radius: var(--seed-radius-full);
|
|
5113
|
-
flex: none;
|
|
5114
|
-
justify-content: center;
|
|
5115
|
-
align-items: center;
|
|
5116
|
-
display: flex;
|
|
5117
|
-
}
|
|
5118
|
-
|
|
5119
|
-
.seed-select-box__radioControl:is(:active, [data-active]) {
|
|
5120
|
-
background-color: var(--seed-color-bg-layer-default-pressed);
|
|
5121
|
-
}
|
|
5122
|
-
|
|
5123
|
-
.seed-select-box__radioControl:is(:checked, [data-checked]) {
|
|
5124
|
-
background-color: var(--seed-color-bg-brand-solid);
|
|
5125
|
-
border-width: 0;
|
|
5126
|
-
}
|
|
5127
|
-
|
|
5128
|
-
.seed-select-box__radioControl:is(:checked, [data-checked]):is(:active, [data-active]) {
|
|
5129
|
-
background-color: var(--seed-color-bg-brand-solid-pressed);
|
|
5130
|
-
}
|
|
5131
|
-
|
|
5132
|
-
.seed-select-box__radioIcon {
|
|
5133
|
-
width: var(--seed-dimension-x2_5);
|
|
5134
|
-
height: var(--seed-dimension-x2_5);
|
|
5135
|
-
border-radius: var(--seed-radius-full);
|
|
5136
|
-
display: none;
|
|
5137
|
-
}
|
|
5138
|
-
|
|
5139
|
-
.seed-select-box__radioIcon:is(:checked, [data-checked]) {
|
|
5140
|
-
background-color: var(--seed-color-palette-static-white);
|
|
5141
|
-
color: var(--seed-color-palette-static-white);
|
|
5142
|
-
display: block;
|
|
5143
|
-
}
|
|
5144
|
-
|
|
5145
5266
|
.seed-select-box__label {
|
|
5146
5267
|
color: var(--seed-color-fg-neutral);
|
|
5147
5268
|
font-weight: var(--seed-font-weight-bold);
|
|
@@ -5933,9 +6054,17 @@
|
|
|
5933
6054
|
.seed-text-field__value {
|
|
5934
6055
|
box-sizing: border-box;
|
|
5935
6056
|
font: inherit;
|
|
6057
|
+
resize: none;
|
|
6058
|
+
height: 100%;
|
|
6059
|
+
color: var(--seed-color-fg-neutral);
|
|
6060
|
+
background: none;
|
|
6061
|
+
border: none;
|
|
6062
|
+
outline: none;
|
|
6063
|
+
flex-grow: 1;
|
|
5936
6064
|
}
|
|
5937
6065
|
|
|
5938
6066
|
.seed-text-field__value:is(input) {
|
|
6067
|
+
width: 0;
|
|
5939
6068
|
padding-inline: 0;
|
|
5940
6069
|
}
|
|
5941
6070
|
|
|
@@ -5945,16 +6074,6 @@
|
|
|
5945
6074
|
padding-inline: 0;
|
|
5946
6075
|
}
|
|
5947
6076
|
|
|
5948
|
-
.seed-text-field__value {
|
|
5949
|
-
resize: none;
|
|
5950
|
-
height: 100%;
|
|
5951
|
-
color: var(--seed-color-fg-neutral);
|
|
5952
|
-
background: none;
|
|
5953
|
-
border: none;
|
|
5954
|
-
outline: none;
|
|
5955
|
-
flex-grow: 1;
|
|
5956
|
-
}
|
|
5957
|
-
|
|
5958
6077
|
.seed-text-field__value::placeholder {
|
|
5959
6078
|
color: var(--seed-color-fg-placeholder);
|
|
5960
6079
|
}
|