@delightui/components 0.1.73 → 0.1.75
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/dist/cjs/components/atoms/Checkbox/Checkbox.d.ts +1 -0
- package/dist/cjs/components/atoms/Checkbox/Checkbox.types.d.ts +6 -0
- package/dist/cjs/components/molecules/ChipInput/ChipInput.utils.d.ts +2 -0
- package/dist/cjs/components/organisms/Dropzone/Dropzone.types.d.ts +9 -8
- package/dist/cjs/library.css +2033 -62
- package/dist/cjs/library.js +3 -3
- package/dist/cjs/library.js.map +1 -1
- package/dist/esm/components/atoms/Checkbox/Checkbox.d.ts +1 -0
- package/dist/esm/components/atoms/Checkbox/Checkbox.types.d.ts +6 -0
- package/dist/esm/components/molecules/ChipInput/ChipInput.utils.d.ts +2 -0
- package/dist/esm/components/organisms/Dropzone/Dropzone.types.d.ts +9 -8
- package/dist/esm/library.css +2033 -62
- package/dist/esm/library.js +3 -3
- package/dist/esm/library.js.map +1 -1
- package/dist/index.d.ts +17 -9
- package/package.json +1 -1
package/dist/cjs/library.css
CHANGED
|
@@ -917,7 +917,7 @@
|
|
|
917
917
|
.Checkbox-module_checkbox__xj-77 .Checkbox-module_input__fzmwc:disabled {
|
|
918
918
|
cursor: not-allowed;
|
|
919
919
|
}
|
|
920
|
-
.Checkbox-module_checkbox__xj-77 .Checkbox-module_input__fzmwc:disabled + .Checkbox-module_iconWrapper__waLQV
|
|
920
|
+
.Checkbox-module_checkbox__xj-77 .Checkbox-module_input__fzmwc:disabled + .Checkbox-module_iconWrapper__waLQV {
|
|
921
921
|
opacity: 0.5;
|
|
922
922
|
cursor: not-allowed;
|
|
923
923
|
}
|
|
@@ -925,53 +925,69 @@
|
|
|
925
925
|
cursor: not-allowed;
|
|
926
926
|
}
|
|
927
927
|
.Checkbox-module_checkbox__xj-77 .Checkbox-module_iconWrapper__waLQV {
|
|
928
|
-
display: inline-flex;
|
|
929
|
-
align-items: center;
|
|
930
|
-
justify-content: center;
|
|
931
|
-
width: 24px;
|
|
932
|
-
width: var(--checkbox-icon-wrapper-width, 24px);
|
|
933
|
-
height: 24px;
|
|
934
|
-
height: var(--checkbox-icon-wrapper-height, 24px);
|
|
935
|
-
}
|
|
936
|
-
.Checkbox-module_checkbox__xj-77 .Checkbox-module_box__LXFYm {
|
|
937
928
|
position: relative;
|
|
938
929
|
display: inline-flex;
|
|
939
930
|
align-items: center;
|
|
940
931
|
justify-content: center;
|
|
941
|
-
width:
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
height: var(--checkbox-icon-height
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
border-
|
|
948
|
-
|
|
932
|
+
width: var(--checkbox-icon-wrapper-width);
|
|
933
|
+
height: var(--checkbox-icon-wrapper-height);
|
|
934
|
+
min-width: var(--checkbox-icon-wrapper-min-width);
|
|
935
|
+
min-height: var(--checkbox-icon-wrapper-min-height);
|
|
936
|
+
max-width: var(--checkbox-icon-wrapper-max-width);
|
|
937
|
+
max-height: var(--checkbox-icon-wrapper-max-height);
|
|
938
|
+
border-top-width: var(--checkbox-icon-wrapper-border-top-width);
|
|
939
|
+
border-right-width: var(--checkbox-icon-wrapper-border-right-width);
|
|
940
|
+
border-bottom-width: var(--checkbox-icon-wrapper-border-bottom-width);
|
|
941
|
+
border-left-width: var(--checkbox-icon-wrapper-border-left-width);
|
|
942
|
+
border-style: var(--checkbox-icon-wrapper-border-style);
|
|
943
|
+
border-color: var(--checkbox-icon-wrapper-border-color);
|
|
944
|
+
border-top-left-radius: var(--checkbox-icon-wrapper-border-top-left-radius);
|
|
945
|
+
border-top-right-radius: var(--checkbox-icon-wrapper-border-top-right-radius);
|
|
946
|
+
border-bottom-left-radius: var(--checkbox-icon-wrapper-border-bottom-left-radius);
|
|
947
|
+
border-bottom-right-radius: var(--checkbox-icon-wrapper-border-bottom-right-radius);
|
|
948
|
+
background-color: var(--checkbox-icon-wrapper-background-color);
|
|
949
949
|
cursor: pointer;
|
|
950
950
|
}
|
|
951
|
-
.Checkbox-module_checkbox__xj-77 .Checkbox-
|
|
952
|
-
position: relative;
|
|
953
|
-
width: 100%;
|
|
954
|
-
height: 100%;
|
|
951
|
+
.Checkbox-module_checkbox__xj-77 .Checkbox-module_iconWrapper__waLQV .Checkbox-module_iconContainer__s1XDb {
|
|
955
952
|
display: flex;
|
|
956
|
-
|
|
957
|
-
|
|
953
|
+
height: var(--checkbox-icon-container-height);
|
|
954
|
+
min-height: var(--checkbox-icon-container-min-height);
|
|
955
|
+
max-height: var(--checkbox-icon-container-max-height);
|
|
956
|
+
width: var(--checkbox-icon-container-width);
|
|
957
|
+
min-width: var(--checkbox-icon-container-min-width);
|
|
958
|
+
max-width: var(--checkbox-icon-container-max-width);
|
|
959
|
+
background-color: var(--checkbox-icon-container-background-color);
|
|
960
|
+
border-top-left-radius: var(--checkbox-icon-container-border-top-left-radius);
|
|
961
|
+
border-top-right-radius: var(--checkbox-icon-container-border-top-right-radius);
|
|
962
|
+
border-bottom-left-radius: var(--checkbox-icon-container-border-bottom-left-radius);
|
|
963
|
+
border-bottom-left-radius: var(--checkbox-icon-container-border-bottom-left-radius);
|
|
964
|
+
border-top-width: 0px;
|
|
965
|
+
border-top-width: var(--checkbox-icon-container-border-top-width, 0px);
|
|
966
|
+
border-left-width: 0px;
|
|
967
|
+
border-left-width: var(--checkbox-icon-container-border-left-width, 0px);
|
|
968
|
+
border-bottom-width: 0px;
|
|
969
|
+
border-bottom-width: var(--checkbox-icon-container-border-bottom-width, 0px);
|
|
970
|
+
border-right-width: 0px;
|
|
971
|
+
border-right-width: var(--checkbox-icon-container-border-right-width, 0px);
|
|
972
|
+
border-style: solid;
|
|
973
|
+
border-style: var(--checkbox-icon-container-border-style, solid);
|
|
974
|
+
border-color: var(--checkbox-icon-container-border-color);
|
|
958
975
|
}
|
|
959
|
-
.Checkbox-module_checkbox__xj-77 .Checkbox-
|
|
976
|
+
.Checkbox-module_checkbox__xj-77 .Checkbox-module_iconWrapper__waLQV .Checkbox-module_iconContainer__s1XDb .Checkbox-module_icon__kGYfV {
|
|
960
977
|
position: absolute;
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
978
|
+
top: 50%;
|
|
979
|
+
left: 50%;
|
|
980
|
+
transform: translate(-50%, -50%) scale(0);
|
|
981
|
+
width: var(--checkbox-icon-width);
|
|
982
|
+
height: var(--checkbox-icon-height);
|
|
983
|
+
transition: all 0.2s ease-in-out;
|
|
967
984
|
}
|
|
968
|
-
.Checkbox-module_checkbox__xj-77 .Checkbox-
|
|
969
|
-
|
|
970
|
-
|
|
985
|
+
.Checkbox-module_checkbox__xj-77 .Checkbox-module_iconWrapper__waLQV .Checkbox-module_iconContainer__s1XDb .Checkbox-module_icon__kGYfV > * path {
|
|
986
|
+
stroke: var(--checkbox-icon-background-color);
|
|
987
|
+
fill: var(--checkbox-icon-background-color);
|
|
971
988
|
}
|
|
972
|
-
.Checkbox-module_checkbox__xj-77 .Checkbox-module_input__fzmwc:checked + .Checkbox-module_iconWrapper__waLQV .Checkbox-
|
|
973
|
-
|
|
974
|
-
transform: scale(1);
|
|
989
|
+
.Checkbox-module_checkbox__xj-77 .Checkbox-module_input__fzmwc:checked + .Checkbox-module_iconWrapper__waLQV .Checkbox-module_icon__kGYfV {
|
|
990
|
+
transform: translate(-50%, -50%) scale(1);
|
|
975
991
|
}
|
|
976
992
|
.Checkbox-module_checkbox__xj-77.Checkbox-module_labelRight__uNdas {
|
|
977
993
|
flex-direction: row;
|
|
@@ -989,7 +1005,6 @@
|
|
|
989
1005
|
height: var(--checkbox-item-height);
|
|
990
1006
|
min-height: var(--checkbox-item-min-height);
|
|
991
1007
|
min-width: var(--checkbox-item-min-width);
|
|
992
|
-
cursor: pointer;
|
|
993
1008
|
gap: var(--checkbox-item-row-gap) var(--checkbox-item-column-gap);
|
|
994
1009
|
color: var(--checkbox-item-text-color);
|
|
995
1010
|
font-family: var(--checkbox-item-font-family);
|
|
@@ -15859,7 +15874,51 @@ span.flatpickr-weekday {
|
|
|
15859
15874
|
--checkbox-paragraph-spacing: ;
|
|
15860
15875
|
--checkbox-paragraph-indent:
|
|
15861
15876
|
}
|
|
15862
|
-
[data-theme='dark'] [component-variant="checkbox-large-unselected"], [data-theme='light'] [component-variant="checkbox-large-unselected"] {
|
|
15877
|
+
[data-theme='dark'] [component-variant="checkbox-large-unselected-default"], [data-theme='light'] [component-variant="checkbox-large-unselected-default"] {
|
|
15878
|
+
--checkbox-color: var(--text-primary);
|
|
15879
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
15880
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
15881
|
+
--checkbox-font-family: var(--font-family-body);
|
|
15882
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
15883
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
15884
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
15885
|
+
--checkbox-paragraph-spacing: 0px;
|
|
15886
|
+
--checkbox-paragraph-indent: 0px
|
|
15887
|
+
}
|
|
15888
|
+
[data-theme='dark'] [component-variant="checkbox-large-unselected-default"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-unselected-default"]:hover:not(:disabled):not([disabled]) {
|
|
15889
|
+
--checkbox-color: var(--text-primary);
|
|
15890
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
15891
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
15892
|
+
--checkbox-font-family: var(--font-family-body);
|
|
15893
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
15894
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
15895
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
15896
|
+
--checkbox-paragraph-spacing: 0px;
|
|
15897
|
+
--checkbox-paragraph-indent: 0px
|
|
15898
|
+
}
|
|
15899
|
+
[data-theme='dark'] [component-variant="checkbox-large-unselected-default"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-unselected-default"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-large-unselected-default"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-unselected-default"]:active:not(:disabled):not([disabled]) {
|
|
15900
|
+
--checkbox-color: var(--text-primary);
|
|
15901
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
15902
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
15903
|
+
--checkbox-font-family: var(--font-family-body);
|
|
15904
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
15905
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
15906
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
15907
|
+
--checkbox-paragraph-spacing: 0px;
|
|
15908
|
+
--checkbox-paragraph-indent: 0px
|
|
15909
|
+
}
|
|
15910
|
+
[data-theme='dark'] [component-variant="checkbox-large-unselected-default"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-unselected-default"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-large-unselected-default"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-unselected-default"]:focus-visible:not(:disabled):not([disabled]) {
|
|
15911
|
+
--checkbox-color: var(--text-primary);
|
|
15912
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
15913
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
15914
|
+
--checkbox-font-family: var(--font-family-body);
|
|
15915
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
15916
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
15917
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
15918
|
+
--checkbox-paragraph-spacing: 0px;
|
|
15919
|
+
--checkbox-paragraph-indent: 0px
|
|
15920
|
+
}
|
|
15921
|
+
[data-theme='dark'] [component-variant="checkbox-large-unselected-inverse"], [data-theme='light'] [component-variant="checkbox-large-unselected-inverse"] {
|
|
15863
15922
|
--checkbox-color: var(--text-primary);
|
|
15864
15923
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
15865
15924
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -15870,7 +15929,7 @@ span.flatpickr-weekday {
|
|
|
15870
15929
|
--checkbox-paragraph-spacing: 0px;
|
|
15871
15930
|
--checkbox-paragraph-indent: 0px
|
|
15872
15931
|
}
|
|
15873
|
-
[data-theme='dark'] [component-variant="checkbox-large-unselected"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-unselected"]:hover:not(:disabled):not([disabled]) {
|
|
15932
|
+
[data-theme='dark'] [component-variant="checkbox-large-unselected-inverse"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-unselected-inverse"]:hover:not(:disabled):not([disabled]) {
|
|
15874
15933
|
--checkbox-color: var(--text-primary);
|
|
15875
15934
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
15876
15935
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -15881,7 +15940,7 @@ span.flatpickr-weekday {
|
|
|
15881
15940
|
--checkbox-paragraph-spacing: 0px;
|
|
15882
15941
|
--checkbox-paragraph-indent: 0px
|
|
15883
15942
|
}
|
|
15884
|
-
[data-theme='dark'] [component-variant="checkbox-large-unselected"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-unselected"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-large-unselected"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-unselected"]:active:not(:disabled):not([disabled]) {
|
|
15943
|
+
[data-theme='dark'] [component-variant="checkbox-large-unselected-inverse"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-unselected-inverse"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-large-unselected-inverse"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-unselected-inverse"]:active:not(:disabled):not([disabled]) {
|
|
15885
15944
|
--checkbox-color: var(--text-primary);
|
|
15886
15945
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
15887
15946
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -15892,7 +15951,7 @@ span.flatpickr-weekday {
|
|
|
15892
15951
|
--checkbox-paragraph-spacing: 0px;
|
|
15893
15952
|
--checkbox-paragraph-indent: 0px
|
|
15894
15953
|
}
|
|
15895
|
-
[data-theme='dark'] [component-variant="checkbox-large-unselected"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-unselected"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-large-unselected"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-unselected"]:focus-visible:not(:disabled):not([disabled]) {
|
|
15954
|
+
[data-theme='dark'] [component-variant="checkbox-large-unselected-inverse"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-unselected-inverse"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-large-unselected-inverse"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-unselected-inverse"]:focus-visible:not(:disabled):not([disabled]) {
|
|
15896
15955
|
--checkbox-color: var(--text-primary);
|
|
15897
15956
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
15898
15957
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -15903,7 +15962,7 @@ span.flatpickr-weekday {
|
|
|
15903
15962
|
--checkbox-paragraph-spacing: 0px;
|
|
15904
15963
|
--checkbox-paragraph-indent: 0px
|
|
15905
15964
|
}
|
|
15906
|
-
[data-theme='dark'] [component-variant="checkbox-large-selected"], [data-theme='light'] [component-variant="checkbox-large-selected"] {
|
|
15965
|
+
[data-theme='dark'] [component-variant="checkbox-large-selected-default"], [data-theme='light'] [component-variant="checkbox-large-selected-default"] {
|
|
15907
15966
|
--checkbox-color: var(--text-primary);
|
|
15908
15967
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
15909
15968
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -15914,7 +15973,7 @@ span.flatpickr-weekday {
|
|
|
15914
15973
|
--checkbox-paragraph-spacing: 0px;
|
|
15915
15974
|
--checkbox-paragraph-indent: 0px
|
|
15916
15975
|
}
|
|
15917
|
-
[data-theme='dark'] [component-variant="checkbox-large-selected"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected"]:hover:not(:disabled):not([disabled]) {
|
|
15976
|
+
[data-theme='dark'] [component-variant="checkbox-large-selected-default"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected-default"]:hover:not(:disabled):not([disabled]) {
|
|
15918
15977
|
--checkbox-color: var(--text-primary);
|
|
15919
15978
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
15920
15979
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -15925,7 +15984,7 @@ span.flatpickr-weekday {
|
|
|
15925
15984
|
--checkbox-paragraph-spacing: 0px;
|
|
15926
15985
|
--checkbox-paragraph-indent: 0px
|
|
15927
15986
|
}
|
|
15928
|
-
[data-theme='dark'] [component-variant="checkbox-large-selected"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-large-selected"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected"]:active:not(:disabled):not([disabled]) {
|
|
15987
|
+
[data-theme='dark'] [component-variant="checkbox-large-selected-default"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected-default"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-large-selected-default"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected-default"]:active:not(:disabled):not([disabled]) {
|
|
15929
15988
|
--checkbox-color: var(--text-primary);
|
|
15930
15989
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
15931
15990
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -15936,7 +15995,7 @@ span.flatpickr-weekday {
|
|
|
15936
15995
|
--checkbox-paragraph-spacing: 0px;
|
|
15937
15996
|
--checkbox-paragraph-indent: 0px
|
|
15938
15997
|
}
|
|
15939
|
-
[data-theme='dark'] [component-variant="checkbox-large-selected"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-large-selected"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected"]:focus-visible:not(:disabled):not([disabled]) {
|
|
15998
|
+
[data-theme='dark'] [component-variant="checkbox-large-selected-default"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected-default"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-large-selected-default"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected-default"]:focus-visible:not(:disabled):not([disabled]) {
|
|
15940
15999
|
--checkbox-color: var(--text-primary);
|
|
15941
16000
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
15942
16001
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -15947,7 +16006,7 @@ span.flatpickr-weekday {
|
|
|
15947
16006
|
--checkbox-paragraph-spacing: 0px;
|
|
15948
16007
|
--checkbox-paragraph-indent: 0px
|
|
15949
16008
|
}
|
|
15950
|
-
[data-theme='dark'] [component-variant="checkbox-
|
|
16009
|
+
[data-theme='dark'] [component-variant="checkbox-large-selected-inverse"], [data-theme='light'] [component-variant="checkbox-large-selected-inverse"] {
|
|
15951
16010
|
--checkbox-color: var(--text-primary);
|
|
15952
16011
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
15953
16012
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -15958,7 +16017,7 @@ span.flatpickr-weekday {
|
|
|
15958
16017
|
--checkbox-paragraph-spacing: 0px;
|
|
15959
16018
|
--checkbox-paragraph-indent: 0px
|
|
15960
16019
|
}
|
|
15961
|
-
[data-theme='dark'] [component-variant="checkbox-
|
|
16020
|
+
[data-theme='dark'] [component-variant="checkbox-large-selected-inverse"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected-inverse"]:hover:not(:disabled):not([disabled]) {
|
|
15962
16021
|
--checkbox-color: var(--text-primary);
|
|
15963
16022
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
15964
16023
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -15969,7 +16028,7 @@ span.flatpickr-weekday {
|
|
|
15969
16028
|
--checkbox-paragraph-spacing: 0px;
|
|
15970
16029
|
--checkbox-paragraph-indent: 0px
|
|
15971
16030
|
}
|
|
15972
|
-
[data-theme='dark'] [component-variant="checkbox-
|
|
16031
|
+
[data-theme='dark'] [component-variant="checkbox-large-selected-inverse"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected-inverse"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-large-selected-inverse"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected-inverse"]:active:not(:disabled):not([disabled]) {
|
|
15973
16032
|
--checkbox-color: var(--text-primary);
|
|
15974
16033
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
15975
16034
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -15980,7 +16039,7 @@ span.flatpickr-weekday {
|
|
|
15980
16039
|
--checkbox-paragraph-spacing: 0px;
|
|
15981
16040
|
--checkbox-paragraph-indent: 0px
|
|
15982
16041
|
}
|
|
15983
|
-
[data-theme='dark'] [component-variant="checkbox-
|
|
16042
|
+
[data-theme='dark'] [component-variant="checkbox-large-selected-inverse"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected-inverse"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-large-selected-inverse"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected-inverse"]:focus-visible:not(:disabled):not([disabled]) {
|
|
15984
16043
|
--checkbox-color: var(--text-primary);
|
|
15985
16044
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
15986
16045
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -15991,7 +16050,7 @@ span.flatpickr-weekday {
|
|
|
15991
16050
|
--checkbox-paragraph-spacing: 0px;
|
|
15992
16051
|
--checkbox-paragraph-indent: 0px
|
|
15993
16052
|
}
|
|
15994
|
-
[data-theme='dark'] [component-variant="checkbox-medium-
|
|
16053
|
+
[data-theme='dark'] [component-variant="checkbox-medium-unselected-default"], [data-theme='light'] [component-variant="checkbox-medium-unselected-default"] {
|
|
15995
16054
|
--checkbox-color: var(--text-primary);
|
|
15996
16055
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
15997
16056
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -16002,7 +16061,7 @@ span.flatpickr-weekday {
|
|
|
16002
16061
|
--checkbox-paragraph-spacing: 0px;
|
|
16003
16062
|
--checkbox-paragraph-indent: 0px
|
|
16004
16063
|
}
|
|
16005
|
-
[data-theme='dark'] [component-variant="checkbox-medium-
|
|
16064
|
+
[data-theme='dark'] [component-variant="checkbox-medium-unselected-default"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-unselected-default"]:hover:not(:disabled):not([disabled]) {
|
|
16006
16065
|
--checkbox-color: var(--text-primary);
|
|
16007
16066
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
16008
16067
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -16013,7 +16072,7 @@ span.flatpickr-weekday {
|
|
|
16013
16072
|
--checkbox-paragraph-spacing: 0px;
|
|
16014
16073
|
--checkbox-paragraph-indent: 0px
|
|
16015
16074
|
}
|
|
16016
|
-
[data-theme='dark'] [component-variant="checkbox-medium-
|
|
16075
|
+
[data-theme='dark'] [component-variant="checkbox-medium-unselected-default"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-unselected-default"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-medium-unselected-default"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-unselected-default"]:active:not(:disabled):not([disabled]) {
|
|
16017
16076
|
--checkbox-color: var(--text-primary);
|
|
16018
16077
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
16019
16078
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -16024,7 +16083,7 @@ span.flatpickr-weekday {
|
|
|
16024
16083
|
--checkbox-paragraph-spacing: 0px;
|
|
16025
16084
|
--checkbox-paragraph-indent: 0px
|
|
16026
16085
|
}
|
|
16027
|
-
[data-theme='dark'] [component-variant="checkbox-medium-
|
|
16086
|
+
[data-theme='dark'] [component-variant="checkbox-medium-unselected-default"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-unselected-default"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-medium-unselected-default"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-unselected-default"]:focus-visible:not(:disabled):not([disabled]) {
|
|
16028
16087
|
--checkbox-color: var(--text-primary);
|
|
16029
16088
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
16030
16089
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -16035,7 +16094,7 @@ span.flatpickr-weekday {
|
|
|
16035
16094
|
--checkbox-paragraph-spacing: 0px;
|
|
16036
16095
|
--checkbox-paragraph-indent: 0px
|
|
16037
16096
|
}
|
|
16038
|
-
[data-theme='dark'] [component-variant="checkbox-
|
|
16097
|
+
[data-theme='dark'] [component-variant="checkbox-medium-unselected-inverse"], [data-theme='light'] [component-variant="checkbox-medium-unselected-inverse"] {
|
|
16039
16098
|
--checkbox-color: var(--text-primary);
|
|
16040
16099
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
16041
16100
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -16046,7 +16105,7 @@ span.flatpickr-weekday {
|
|
|
16046
16105
|
--checkbox-paragraph-spacing: 0px;
|
|
16047
16106
|
--checkbox-paragraph-indent: 0px
|
|
16048
16107
|
}
|
|
16049
|
-
[data-theme='dark'] [component-variant="checkbox-
|
|
16108
|
+
[data-theme='dark'] [component-variant="checkbox-medium-unselected-inverse"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-unselected-inverse"]:hover:not(:disabled):not([disabled]) {
|
|
16050
16109
|
--checkbox-color: var(--text-primary);
|
|
16051
16110
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
16052
16111
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -16057,7 +16116,7 @@ span.flatpickr-weekday {
|
|
|
16057
16116
|
--checkbox-paragraph-spacing: 0px;
|
|
16058
16117
|
--checkbox-paragraph-indent: 0px
|
|
16059
16118
|
}
|
|
16060
|
-
[data-theme='dark'] [component-variant="checkbox-
|
|
16119
|
+
[data-theme='dark'] [component-variant="checkbox-medium-unselected-inverse"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-unselected-inverse"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-medium-unselected-inverse"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-unselected-inverse"]:active:not(:disabled):not([disabled]) {
|
|
16061
16120
|
--checkbox-color: var(--text-primary);
|
|
16062
16121
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
16063
16122
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -16068,7 +16127,7 @@ span.flatpickr-weekday {
|
|
|
16068
16127
|
--checkbox-paragraph-spacing: 0px;
|
|
16069
16128
|
--checkbox-paragraph-indent: 0px
|
|
16070
16129
|
}
|
|
16071
|
-
[data-theme='dark'] [component-variant="checkbox-
|
|
16130
|
+
[data-theme='dark'] [component-variant="checkbox-medium-unselected-inverse"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-unselected-inverse"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-medium-unselected-inverse"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-unselected-inverse"]:focus-visible:not(:disabled):not([disabled]) {
|
|
16072
16131
|
--checkbox-color: var(--text-primary);
|
|
16073
16132
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
16074
16133
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -16079,7 +16138,7 @@ span.flatpickr-weekday {
|
|
|
16079
16138
|
--checkbox-paragraph-spacing: 0px;
|
|
16080
16139
|
--checkbox-paragraph-indent: 0px
|
|
16081
16140
|
}
|
|
16082
|
-
[data-theme='dark'] [component-variant="checkbox-
|
|
16141
|
+
[data-theme='dark'] [component-variant="checkbox-medium-selected-default"], [data-theme='light'] [component-variant="checkbox-medium-selected-default"] {
|
|
16083
16142
|
--checkbox-color: var(--text-primary);
|
|
16084
16143
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
16085
16144
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -16090,7 +16149,7 @@ span.flatpickr-weekday {
|
|
|
16090
16149
|
--checkbox-paragraph-spacing: 0px;
|
|
16091
16150
|
--checkbox-paragraph-indent: 0px
|
|
16092
16151
|
}
|
|
16093
|
-
[data-theme='dark'] [component-variant="checkbox-
|
|
16152
|
+
[data-theme='dark'] [component-variant="checkbox-medium-selected-default"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-selected-default"]:hover:not(:disabled):not([disabled]) {
|
|
16094
16153
|
--checkbox-color: var(--text-primary);
|
|
16095
16154
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
16096
16155
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -16101,7 +16160,7 @@ span.flatpickr-weekday {
|
|
|
16101
16160
|
--checkbox-paragraph-spacing: 0px;
|
|
16102
16161
|
--checkbox-paragraph-indent: 0px
|
|
16103
16162
|
}
|
|
16104
|
-
[data-theme='dark'] [component-variant="checkbox-
|
|
16163
|
+
[data-theme='dark'] [component-variant="checkbox-medium-selected-default"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-selected-default"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-medium-selected-default"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-selected-default"]:active:not(:disabled):not([disabled]) {
|
|
16105
16164
|
--checkbox-color: var(--text-primary);
|
|
16106
16165
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
16107
16166
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -16112,7 +16171,7 @@ span.flatpickr-weekday {
|
|
|
16112
16171
|
--checkbox-paragraph-spacing: 0px;
|
|
16113
16172
|
--checkbox-paragraph-indent: 0px
|
|
16114
16173
|
}
|
|
16115
|
-
[data-theme='dark'] [component-variant="checkbox-
|
|
16174
|
+
[data-theme='dark'] [component-variant="checkbox-medium-selected-default"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-selected-default"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-medium-selected-default"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-selected-default"]:focus-visible:not(:disabled):not([disabled]) {
|
|
16116
16175
|
--checkbox-color: var(--text-primary);
|
|
16117
16176
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
16118
16177
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -16123,6 +16182,1918 @@ span.flatpickr-weekday {
|
|
|
16123
16182
|
--checkbox-paragraph-spacing: 0px;
|
|
16124
16183
|
--checkbox-paragraph-indent: 0px
|
|
16125
16184
|
}
|
|
16185
|
+
[data-theme='dark'] [component-variant="checkbox-medium-selected-inverse"], [data-theme='light'] [component-variant="checkbox-medium-selected-inverse"] {
|
|
16186
|
+
--checkbox-color: var(--text-primary);
|
|
16187
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
16188
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
16189
|
+
--checkbox-font-family: var(--font-family-body);
|
|
16190
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
16191
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
16192
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
16193
|
+
--checkbox-paragraph-spacing: 0px;
|
|
16194
|
+
--checkbox-paragraph-indent: 0px
|
|
16195
|
+
}
|
|
16196
|
+
[data-theme='dark'] [component-variant="checkbox-medium-selected-inverse"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-selected-inverse"]:hover:not(:disabled):not([disabled]) {
|
|
16197
|
+
--checkbox-color: var(--text-primary);
|
|
16198
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
16199
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
16200
|
+
--checkbox-font-family: var(--font-family-body);
|
|
16201
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
16202
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
16203
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
16204
|
+
--checkbox-paragraph-spacing: 0px;
|
|
16205
|
+
--checkbox-paragraph-indent: 0px
|
|
16206
|
+
}
|
|
16207
|
+
[data-theme='dark'] [component-variant="checkbox-medium-selected-inverse"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-selected-inverse"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-medium-selected-inverse"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-selected-inverse"]:active:not(:disabled):not([disabled]) {
|
|
16208
|
+
--checkbox-color: var(--text-primary);
|
|
16209
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
16210
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
16211
|
+
--checkbox-font-family: var(--font-family-body);
|
|
16212
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
16213
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
16214
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
16215
|
+
--checkbox-paragraph-spacing: 0px;
|
|
16216
|
+
--checkbox-paragraph-indent: 0px
|
|
16217
|
+
}
|
|
16218
|
+
[data-theme='dark'] [component-variant="checkbox-medium-selected-inverse"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-selected-inverse"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-medium-selected-inverse"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-selected-inverse"]:focus-visible:not(:disabled):not([disabled]) {
|
|
16219
|
+
--checkbox-color: var(--text-primary);
|
|
16220
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
16221
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
16222
|
+
--checkbox-font-family: var(--font-family-body);
|
|
16223
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
16224
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
16225
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
16226
|
+
--checkbox-paragraph-spacing: 0px;
|
|
16227
|
+
--checkbox-paragraph-indent: 0px
|
|
16228
|
+
}
|
|
16229
|
+
[data-theme='dark'] [component-variant="checkbox-small-unselected-default"], [data-theme='light'] [component-variant="checkbox-small-unselected-default"] {
|
|
16230
|
+
--checkbox-color: var(--text-primary);
|
|
16231
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
16232
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
16233
|
+
--checkbox-font-family: var(--font-family-body);
|
|
16234
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
16235
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
16236
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
16237
|
+
--checkbox-paragraph-spacing: 0px;
|
|
16238
|
+
--checkbox-paragraph-indent: 0px
|
|
16239
|
+
}
|
|
16240
|
+
[data-theme='dark'] [component-variant="checkbox-small-unselected-default"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-unselected-default"]:hover:not(:disabled):not([disabled]) {
|
|
16241
|
+
--checkbox-color: var(--text-primary);
|
|
16242
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
16243
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
16244
|
+
--checkbox-font-family: var(--font-family-body);
|
|
16245
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
16246
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
16247
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
16248
|
+
--checkbox-paragraph-spacing: 0px;
|
|
16249
|
+
--checkbox-paragraph-indent: 0px
|
|
16250
|
+
}
|
|
16251
|
+
[data-theme='dark'] [component-variant="checkbox-small-unselected-default"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-unselected-default"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-small-unselected-default"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-unselected-default"]:active:not(:disabled):not([disabled]) {
|
|
16252
|
+
--checkbox-color: var(--text-primary);
|
|
16253
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
16254
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
16255
|
+
--checkbox-font-family: var(--font-family-body);
|
|
16256
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
16257
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
16258
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
16259
|
+
--checkbox-paragraph-spacing: 0px;
|
|
16260
|
+
--checkbox-paragraph-indent: 0px
|
|
16261
|
+
}
|
|
16262
|
+
[data-theme='dark'] [component-variant="checkbox-small-unselected-default"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-unselected-default"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-small-unselected-default"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-unselected-default"]:focus-visible:not(:disabled):not([disabled]) {
|
|
16263
|
+
--checkbox-color: var(--text-primary);
|
|
16264
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
16265
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
16266
|
+
--checkbox-font-family: var(--font-family-body);
|
|
16267
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
16268
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
16269
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
16270
|
+
--checkbox-paragraph-spacing: 0px;
|
|
16271
|
+
--checkbox-paragraph-indent: 0px
|
|
16272
|
+
}
|
|
16273
|
+
[data-theme='dark'] [component-variant="checkbox-small-unselected-inverse"], [data-theme='light'] [component-variant="checkbox-small-unselected-inverse"] {
|
|
16274
|
+
--checkbox-color: var(--text-primary);
|
|
16275
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
16276
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
16277
|
+
--checkbox-font-family: var(--font-family-body);
|
|
16278
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
16279
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
16280
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
16281
|
+
--checkbox-paragraph-spacing: 0px;
|
|
16282
|
+
--checkbox-paragraph-indent: 0px
|
|
16283
|
+
}
|
|
16284
|
+
[data-theme='dark'] [component-variant="checkbox-small-unselected-inverse"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-unselected-inverse"]:hover:not(:disabled):not([disabled]) {
|
|
16285
|
+
--checkbox-color: var(--text-primary);
|
|
16286
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
16287
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
16288
|
+
--checkbox-font-family: var(--font-family-body);
|
|
16289
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
16290
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
16291
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
16292
|
+
--checkbox-paragraph-spacing: 0px;
|
|
16293
|
+
--checkbox-paragraph-indent: 0px
|
|
16294
|
+
}
|
|
16295
|
+
[data-theme='dark'] [component-variant="checkbox-small-unselected-inverse"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-unselected-inverse"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-small-unselected-inverse"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-unselected-inverse"]:active:not(:disabled):not([disabled]) {
|
|
16296
|
+
--checkbox-color: var(--text-primary);
|
|
16297
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
16298
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
16299
|
+
--checkbox-font-family: var(--font-family-body);
|
|
16300
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
16301
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
16302
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
16303
|
+
--checkbox-paragraph-spacing: 0px;
|
|
16304
|
+
--checkbox-paragraph-indent: 0px
|
|
16305
|
+
}
|
|
16306
|
+
[data-theme='dark'] [component-variant="checkbox-small-unselected-inverse"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-unselected-inverse"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-small-unselected-inverse"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-unselected-inverse"]:focus-visible:not(:disabled):not([disabled]) {
|
|
16307
|
+
--checkbox-color: var(--text-primary);
|
|
16308
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
16309
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
16310
|
+
--checkbox-font-family: var(--font-family-body);
|
|
16311
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
16312
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
16313
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
16314
|
+
--checkbox-paragraph-spacing: 0px;
|
|
16315
|
+
--checkbox-paragraph-indent: 0px
|
|
16316
|
+
}
|
|
16317
|
+
[data-theme='dark'] [component-variant="checkbox-small-selected-default"], [data-theme='light'] [component-variant="checkbox-small-selected-default"] {
|
|
16318
|
+
--checkbox-color: var(--text-primary);
|
|
16319
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
16320
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
16321
|
+
--checkbox-font-family: var(--font-family-body);
|
|
16322
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
16323
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
16324
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
16325
|
+
--checkbox-paragraph-spacing: 0px;
|
|
16326
|
+
--checkbox-paragraph-indent: 0px
|
|
16327
|
+
}
|
|
16328
|
+
[data-theme='dark'] [component-variant="checkbox-small-selected-default"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-selected-default"]:hover:not(:disabled):not([disabled]) {
|
|
16329
|
+
--checkbox-color: var(--text-primary);
|
|
16330
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
16331
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
16332
|
+
--checkbox-font-family: var(--font-family-body);
|
|
16333
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
16334
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
16335
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
16336
|
+
--checkbox-paragraph-spacing: 0px;
|
|
16337
|
+
--checkbox-paragraph-indent: 0px
|
|
16338
|
+
}
|
|
16339
|
+
[data-theme='dark'] [component-variant="checkbox-small-selected-default"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-selected-default"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-small-selected-default"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-selected-default"]:active:not(:disabled):not([disabled]) {
|
|
16340
|
+
--checkbox-color: var(--text-primary);
|
|
16341
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
16342
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
16343
|
+
--checkbox-font-family: var(--font-family-body);
|
|
16344
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
16345
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
16346
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
16347
|
+
--checkbox-paragraph-spacing: 0px;
|
|
16348
|
+
--checkbox-paragraph-indent: 0px
|
|
16349
|
+
}
|
|
16350
|
+
[data-theme='dark'] [component-variant="checkbox-small-selected-default"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-selected-default"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-small-selected-default"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-selected-default"]:focus-visible:not(:disabled):not([disabled]) {
|
|
16351
|
+
--checkbox-color: var(--text-primary);
|
|
16352
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
16353
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
16354
|
+
--checkbox-font-family: var(--font-family-body);
|
|
16355
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
16356
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
16357
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
16358
|
+
--checkbox-paragraph-spacing: 0px;
|
|
16359
|
+
--checkbox-paragraph-indent: 0px
|
|
16360
|
+
}
|
|
16361
|
+
[data-theme='dark'] [component-variant="checkbox-small-selected-inverse"], [data-theme='light'] [component-variant="checkbox-small-selected-inverse"] {
|
|
16362
|
+
--checkbox-color: var(--text-primary);
|
|
16363
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
16364
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
16365
|
+
--checkbox-font-family: var(--font-family-body);
|
|
16366
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
16367
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
16368
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
16369
|
+
--checkbox-paragraph-spacing: 0px;
|
|
16370
|
+
--checkbox-paragraph-indent: 0px
|
|
16371
|
+
}
|
|
16372
|
+
[data-theme='dark'] [component-variant="checkbox-small-selected-inverse"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-selected-inverse"]:hover:not(:disabled):not([disabled]) {
|
|
16373
|
+
--checkbox-color: var(--text-primary);
|
|
16374
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
16375
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
16376
|
+
--checkbox-font-family: var(--font-family-body);
|
|
16377
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
16378
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
16379
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
16380
|
+
--checkbox-paragraph-spacing: 0px;
|
|
16381
|
+
--checkbox-paragraph-indent: 0px
|
|
16382
|
+
}
|
|
16383
|
+
[data-theme='dark'] [component-variant="checkbox-small-selected-inverse"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-selected-inverse"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-small-selected-inverse"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-selected-inverse"]:active:not(:disabled):not([disabled]) {
|
|
16384
|
+
--checkbox-color: var(--text-primary);
|
|
16385
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
16386
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
16387
|
+
--checkbox-font-family: var(--font-family-body);
|
|
16388
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
16389
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
16390
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
16391
|
+
--checkbox-paragraph-spacing: 0px;
|
|
16392
|
+
--checkbox-paragraph-indent: 0px
|
|
16393
|
+
}
|
|
16394
|
+
[data-theme='dark'] [component-variant="checkbox-small-selected-inverse"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-selected-inverse"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-small-selected-inverse"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-selected-inverse"]:focus-visible:not(:disabled):not([disabled]) {
|
|
16395
|
+
--checkbox-color: var(--text-primary);
|
|
16396
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
16397
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
16398
|
+
--checkbox-font-family: var(--font-family-body);
|
|
16399
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
16400
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
16401
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
16402
|
+
--checkbox-paragraph-spacing: 0px;
|
|
16403
|
+
--checkbox-paragraph-indent: 0px
|
|
16404
|
+
}
|
|
16405
|
+
[data-theme='dark'] [component-variant="checkbox-large-unselected-default"], [data-theme='light'] [component-variant="checkbox-large-unselected-default"] {
|
|
16406
|
+
--checkbox-icon-wrapper-height: 24px;
|
|
16407
|
+
--checkbox-icon-wrapper-width: 24px;
|
|
16408
|
+
--checkbox-icon-wrapper-border-top-left-radius: 2px;
|
|
16409
|
+
--checkbox-icon-wrapper-border-top-right-radius: 2px;
|
|
16410
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 2px;
|
|
16411
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 2px;
|
|
16412
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16413
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16414
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16415
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16416
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16417
|
+
}
|
|
16418
|
+
[data-theme='dark'] [component-variant="checkbox-large-unselected-default"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-unselected-default"]:hover:not(:disabled):not([disabled]) {
|
|
16419
|
+
--checkbox-icon-wrapper-height: 24px;
|
|
16420
|
+
--checkbox-icon-wrapper-width: 24px;
|
|
16421
|
+
--checkbox-icon-wrapper-border-top-left-radius: 2px;
|
|
16422
|
+
--checkbox-icon-wrapper-border-top-right-radius: 2px;
|
|
16423
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 2px;
|
|
16424
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 2px;
|
|
16425
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16426
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16427
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16428
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16429
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16430
|
+
}
|
|
16431
|
+
[data-theme='dark'] [component-variant="checkbox-large-unselected-default"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-unselected-default"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-large-unselected-default"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-unselected-default"]:active:not(:disabled):not([disabled]) {
|
|
16432
|
+
--checkbox-icon-wrapper-height: 24px;
|
|
16433
|
+
--checkbox-icon-wrapper-width: 24px;
|
|
16434
|
+
--checkbox-icon-wrapper-border-top-left-radius: 2px;
|
|
16435
|
+
--checkbox-icon-wrapper-border-top-right-radius: 2px;
|
|
16436
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 2px;
|
|
16437
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 2px;
|
|
16438
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16439
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16440
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16441
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16442
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16443
|
+
}
|
|
16444
|
+
[data-theme='dark'] [component-variant="checkbox-large-unselected-default"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-unselected-default"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-large-unselected-default"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-unselected-default"]:focus-visible:not(:disabled):not([disabled]) {
|
|
16445
|
+
--checkbox-icon-wrapper-height: 24px;
|
|
16446
|
+
--checkbox-icon-wrapper-width: 24px;
|
|
16447
|
+
--checkbox-icon-wrapper-border-top-left-radius: 2px;
|
|
16448
|
+
--checkbox-icon-wrapper-border-top-right-radius: 2px;
|
|
16449
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 2px;
|
|
16450
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 2px;
|
|
16451
|
+
--checkbox-icon-wrapper-border-color: var(--border-border-grey-1);
|
|
16452
|
+
--checkbox-icon-wrapper-border-top-width: 1px;
|
|
16453
|
+
--checkbox-icon-wrapper-border-right-width: 1px;
|
|
16454
|
+
--checkbox-icon-wrapper-border-bottom-width: 1px;
|
|
16455
|
+
--checkbox-icon-wrapper-border-left-width: 1px;
|
|
16456
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16457
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16458
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16459
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16460
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16461
|
+
}
|
|
16462
|
+
[data-theme='dark'] [component-variant="checkbox-large-unselected-inverse"], [data-theme='light'] [component-variant="checkbox-large-unselected-inverse"] {
|
|
16463
|
+
--checkbox-icon-wrapper-height: 24px;
|
|
16464
|
+
--checkbox-icon-wrapper-width: 24px;
|
|
16465
|
+
--checkbox-icon-wrapper-border-top-left-radius: 2px;
|
|
16466
|
+
--checkbox-icon-wrapper-border-top-right-radius: 2px;
|
|
16467
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 2px;
|
|
16468
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 2px;
|
|
16469
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16470
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16471
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16472
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16473
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16474
|
+
}
|
|
16475
|
+
[data-theme='dark'] [component-variant="checkbox-large-unselected-inverse"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-unselected-inverse"]:hover:not(:disabled):not([disabled]) {
|
|
16476
|
+
--checkbox-icon-wrapper-height: 24px;
|
|
16477
|
+
--checkbox-icon-wrapper-width: 24px;
|
|
16478
|
+
--checkbox-icon-wrapper-border-top-left-radius: 2px;
|
|
16479
|
+
--checkbox-icon-wrapper-border-top-right-radius: 2px;
|
|
16480
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 2px;
|
|
16481
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 2px;
|
|
16482
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16483
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16484
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16485
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16486
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16487
|
+
}
|
|
16488
|
+
[data-theme='dark'] [component-variant="checkbox-large-unselected-inverse"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-unselected-inverse"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-large-unselected-inverse"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-unselected-inverse"]:active:not(:disabled):not([disabled]) {
|
|
16489
|
+
--checkbox-icon-wrapper-height: 24px;
|
|
16490
|
+
--checkbox-icon-wrapper-width: 24px;
|
|
16491
|
+
--checkbox-icon-wrapper-border-top-left-radius: 2px;
|
|
16492
|
+
--checkbox-icon-wrapper-border-top-right-radius: 2px;
|
|
16493
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 2px;
|
|
16494
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 2px;
|
|
16495
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16496
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16497
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16498
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16499
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16500
|
+
}
|
|
16501
|
+
[data-theme='dark'] [component-variant="checkbox-large-unselected-inverse"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-unselected-inverse"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-large-unselected-inverse"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-unselected-inverse"]:focus-visible:not(:disabled):not([disabled]) {
|
|
16502
|
+
--checkbox-icon-wrapper-height: 24px;
|
|
16503
|
+
--checkbox-icon-wrapper-width: 24px;
|
|
16504
|
+
--checkbox-icon-wrapper-border-top-left-radius: 2px;
|
|
16505
|
+
--checkbox-icon-wrapper-border-top-right-radius: 2px;
|
|
16506
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 2px;
|
|
16507
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 2px;
|
|
16508
|
+
--checkbox-icon-wrapper-border-color: var(--border-border-grey-1);
|
|
16509
|
+
--checkbox-icon-wrapper-border-top-width: 1px;
|
|
16510
|
+
--checkbox-icon-wrapper-border-right-width: 1px;
|
|
16511
|
+
--checkbox-icon-wrapper-border-bottom-width: 1px;
|
|
16512
|
+
--checkbox-icon-wrapper-border-left-width: 1px;
|
|
16513
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16514
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16515
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16516
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16517
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16518
|
+
}
|
|
16519
|
+
[data-theme='dark'] [component-variant="checkbox-large-selected-default"], [data-theme='light'] [component-variant="checkbox-large-selected-default"] {
|
|
16520
|
+
--checkbox-icon-wrapper-height: 24px;
|
|
16521
|
+
--checkbox-icon-wrapper-width: 24px;
|
|
16522
|
+
--checkbox-icon-wrapper-border-top-left-radius: 2px;
|
|
16523
|
+
--checkbox-icon-wrapper-border-top-right-radius: 2px;
|
|
16524
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 2px;
|
|
16525
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 2px;
|
|
16526
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16527
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16528
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16529
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16530
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16531
|
+
}
|
|
16532
|
+
[data-theme='dark'] [component-variant="checkbox-large-selected-default"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected-default"]:hover:not(:disabled):not([disabled]) {
|
|
16533
|
+
--checkbox-icon-wrapper-height: 24px;
|
|
16534
|
+
--checkbox-icon-wrapper-width: 24px;
|
|
16535
|
+
--checkbox-icon-wrapper-border-top-left-radius: 2px;
|
|
16536
|
+
--checkbox-icon-wrapper-border-top-right-radius: 2px;
|
|
16537
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 2px;
|
|
16538
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 2px;
|
|
16539
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16540
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16541
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16542
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16543
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16544
|
+
}
|
|
16545
|
+
[data-theme='dark'] [component-variant="checkbox-large-selected-default"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected-default"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-large-selected-default"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected-default"]:active:not(:disabled):not([disabled]) {
|
|
16546
|
+
--checkbox-icon-wrapper-height: 24px;
|
|
16547
|
+
--checkbox-icon-wrapper-width: 24px;
|
|
16548
|
+
--checkbox-icon-wrapper-border-top-left-radius: 2px;
|
|
16549
|
+
--checkbox-icon-wrapper-border-top-right-radius: 2px;
|
|
16550
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 2px;
|
|
16551
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 2px;
|
|
16552
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16553
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16554
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16555
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16556
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16557
|
+
}
|
|
16558
|
+
[data-theme='dark'] [component-variant="checkbox-large-selected-default"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected-default"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-large-selected-default"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected-default"]:focus-visible:not(:disabled):not([disabled]) {
|
|
16559
|
+
--checkbox-icon-wrapper-height: 24px;
|
|
16560
|
+
--checkbox-icon-wrapper-width: 24px;
|
|
16561
|
+
--checkbox-icon-wrapper-border-top-left-radius: 2px;
|
|
16562
|
+
--checkbox-icon-wrapper-border-top-right-radius: 2px;
|
|
16563
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 2px;
|
|
16564
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 2px;
|
|
16565
|
+
--checkbox-icon-wrapper-border-color: var(--border-border-grey-1);
|
|
16566
|
+
--checkbox-icon-wrapper-border-top-width: 1px;
|
|
16567
|
+
--checkbox-icon-wrapper-border-right-width: 1px;
|
|
16568
|
+
--checkbox-icon-wrapper-border-bottom-width: 1px;
|
|
16569
|
+
--checkbox-icon-wrapper-border-left-width: 1px;
|
|
16570
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16571
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16572
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16573
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16574
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16575
|
+
}
|
|
16576
|
+
[data-theme='dark'] [component-variant="checkbox-large-selected-inverse"], [data-theme='light'] [component-variant="checkbox-large-selected-inverse"] {
|
|
16577
|
+
--checkbox-icon-wrapper-height: 24px;
|
|
16578
|
+
--checkbox-icon-wrapper-width: 24px;
|
|
16579
|
+
--checkbox-icon-wrapper-border-top-left-radius: 2px;
|
|
16580
|
+
--checkbox-icon-wrapper-border-top-right-radius: 2px;
|
|
16581
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 2px;
|
|
16582
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 2px;
|
|
16583
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16584
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16585
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16586
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16587
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16588
|
+
}
|
|
16589
|
+
[data-theme='dark'] [component-variant="checkbox-large-selected-inverse"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected-inverse"]:hover:not(:disabled):not([disabled]) {
|
|
16590
|
+
--checkbox-icon-wrapper-height: 24px;
|
|
16591
|
+
--checkbox-icon-wrapper-width: 24px;
|
|
16592
|
+
--checkbox-icon-wrapper-border-top-left-radius: 2px;
|
|
16593
|
+
--checkbox-icon-wrapper-border-top-right-radius: 2px;
|
|
16594
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 2px;
|
|
16595
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 2px;
|
|
16596
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16597
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16598
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16599
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16600
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16601
|
+
}
|
|
16602
|
+
[data-theme='dark'] [component-variant="checkbox-large-selected-inverse"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected-inverse"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-large-selected-inverse"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected-inverse"]:active:not(:disabled):not([disabled]) {
|
|
16603
|
+
--checkbox-icon-wrapper-height: 24px;
|
|
16604
|
+
--checkbox-icon-wrapper-width: 24px;
|
|
16605
|
+
--checkbox-icon-wrapper-border-top-left-radius: 2px;
|
|
16606
|
+
--checkbox-icon-wrapper-border-top-right-radius: 2px;
|
|
16607
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 2px;
|
|
16608
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 2px;
|
|
16609
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16610
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16611
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16612
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16613
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16614
|
+
}
|
|
16615
|
+
[data-theme='dark'] [component-variant="checkbox-large-selected-inverse"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected-inverse"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-large-selected-inverse"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected-inverse"]:focus-visible:not(:disabled):not([disabled]) {
|
|
16616
|
+
--checkbox-icon-wrapper-height: 24px;
|
|
16617
|
+
--checkbox-icon-wrapper-width: 24px;
|
|
16618
|
+
--checkbox-icon-wrapper-border-top-left-radius: 2px;
|
|
16619
|
+
--checkbox-icon-wrapper-border-top-right-radius: 2px;
|
|
16620
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 2px;
|
|
16621
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 2px;
|
|
16622
|
+
--checkbox-icon-wrapper-border-color: var(--border-border-grey-1);
|
|
16623
|
+
--checkbox-icon-wrapper-border-top-width: 1px;
|
|
16624
|
+
--checkbox-icon-wrapper-border-right-width: 1px;
|
|
16625
|
+
--checkbox-icon-wrapper-border-bottom-width: 1px;
|
|
16626
|
+
--checkbox-icon-wrapper-border-left-width: 1px;
|
|
16627
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16628
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16629
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16630
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16631
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16632
|
+
}
|
|
16633
|
+
[data-theme='dark'] [component-variant="checkbox-medium-unselected-default"], [data-theme='light'] [component-variant="checkbox-medium-unselected-default"] {
|
|
16634
|
+
--checkbox-icon-wrapper-height: 20px;
|
|
16635
|
+
--checkbox-icon-wrapper-width: 20px;
|
|
16636
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.6666666269302368px;
|
|
16637
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.6666666269302368px;
|
|
16638
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.6666666269302368px;
|
|
16639
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.6666666269302368px;
|
|
16640
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16641
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16642
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16643
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16644
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16645
|
+
}
|
|
16646
|
+
[data-theme='dark'] [component-variant="checkbox-medium-unselected-default"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-unselected-default"]:hover:not(:disabled):not([disabled]) {
|
|
16647
|
+
--checkbox-icon-wrapper-height: 20px;
|
|
16648
|
+
--checkbox-icon-wrapper-width: 20px;
|
|
16649
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.6666666269302368px;
|
|
16650
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.6666666269302368px;
|
|
16651
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.6666666269302368px;
|
|
16652
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.6666666269302368px;
|
|
16653
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16654
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16655
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16656
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16657
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16658
|
+
}
|
|
16659
|
+
[data-theme='dark'] [component-variant="checkbox-medium-unselected-default"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-unselected-default"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-medium-unselected-default"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-unselected-default"]:active:not(:disabled):not([disabled]) {
|
|
16660
|
+
--checkbox-icon-wrapper-height: 20px;
|
|
16661
|
+
--checkbox-icon-wrapper-width: 20px;
|
|
16662
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.6666666269302368px;
|
|
16663
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.6666666269302368px;
|
|
16664
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.6666666269302368px;
|
|
16665
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.6666666269302368px;
|
|
16666
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16667
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16668
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16669
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16670
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16671
|
+
}
|
|
16672
|
+
[data-theme='dark'] [component-variant="checkbox-medium-unselected-default"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-unselected-default"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-medium-unselected-default"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-unselected-default"]:focus-visible:not(:disabled):not([disabled]) {
|
|
16673
|
+
--checkbox-icon-wrapper-height: 20px;
|
|
16674
|
+
--checkbox-icon-wrapper-width: 20px;
|
|
16675
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.6666666269302368px;
|
|
16676
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.6666666269302368px;
|
|
16677
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.6666666269302368px;
|
|
16678
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.6666666269302368px;
|
|
16679
|
+
--checkbox-icon-wrapper-border-color: var(--border-border-grey-1);
|
|
16680
|
+
--checkbox-icon-wrapper-border-top-width: 0.8333333134651184px;
|
|
16681
|
+
--checkbox-icon-wrapper-border-right-width: 0.8333333134651184px;
|
|
16682
|
+
--checkbox-icon-wrapper-border-bottom-width: 0.8333333134651184px;
|
|
16683
|
+
--checkbox-icon-wrapper-border-left-width: 0.8333333134651184px;
|
|
16684
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16685
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16686
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16687
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16688
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16689
|
+
}
|
|
16690
|
+
[data-theme='dark'] [component-variant="checkbox-medium-unselected-inverse"], [data-theme='light'] [component-variant="checkbox-medium-unselected-inverse"] {
|
|
16691
|
+
--checkbox-icon-wrapper-height: 20px;
|
|
16692
|
+
--checkbox-icon-wrapper-width: 20px;
|
|
16693
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.6666666269302368px;
|
|
16694
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.6666666269302368px;
|
|
16695
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.6666666269302368px;
|
|
16696
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.6666666269302368px;
|
|
16697
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16698
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16699
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16700
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16701
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16702
|
+
}
|
|
16703
|
+
[data-theme='dark'] [component-variant="checkbox-medium-unselected-inverse"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-unselected-inverse"]:hover:not(:disabled):not([disabled]) {
|
|
16704
|
+
--checkbox-icon-wrapper-height: 20px;
|
|
16705
|
+
--checkbox-icon-wrapper-width: 20px;
|
|
16706
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.6666666269302368px;
|
|
16707
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.6666666269302368px;
|
|
16708
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.6666666269302368px;
|
|
16709
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.6666666269302368px;
|
|
16710
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16711
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16712
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16713
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16714
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16715
|
+
}
|
|
16716
|
+
[data-theme='dark'] [component-variant="checkbox-medium-unselected-inverse"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-unselected-inverse"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-medium-unselected-inverse"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-unselected-inverse"]:active:not(:disabled):not([disabled]) {
|
|
16717
|
+
--checkbox-icon-wrapper-height: 20px;
|
|
16718
|
+
--checkbox-icon-wrapper-width: 20px;
|
|
16719
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.6666666269302368px;
|
|
16720
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.6666666269302368px;
|
|
16721
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.6666666269302368px;
|
|
16722
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.6666666269302368px;
|
|
16723
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16724
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16725
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16726
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16727
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16728
|
+
}
|
|
16729
|
+
[data-theme='dark'] [component-variant="checkbox-medium-unselected-inverse"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-unselected-inverse"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-medium-unselected-inverse"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-unselected-inverse"]:focus-visible:not(:disabled):not([disabled]) {
|
|
16730
|
+
--checkbox-icon-wrapper-height: 20px;
|
|
16731
|
+
--checkbox-icon-wrapper-width: 20px;
|
|
16732
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.6666666269302368px;
|
|
16733
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.6666666269302368px;
|
|
16734
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.6666666269302368px;
|
|
16735
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.6666666269302368px;
|
|
16736
|
+
--checkbox-icon-wrapper-border-color: var(--border-border-grey-1);
|
|
16737
|
+
--checkbox-icon-wrapper-border-top-width: 0.8333333134651184px;
|
|
16738
|
+
--checkbox-icon-wrapper-border-right-width: 0.8333333134651184px;
|
|
16739
|
+
--checkbox-icon-wrapper-border-bottom-width: 0.8333333134651184px;
|
|
16740
|
+
--checkbox-icon-wrapper-border-left-width: 0.8333333134651184px;
|
|
16741
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16742
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16743
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16744
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16745
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16746
|
+
}
|
|
16747
|
+
[data-theme='dark'] [component-variant="checkbox-medium-selected-default"], [data-theme='light'] [component-variant="checkbox-medium-selected-default"] {
|
|
16748
|
+
--checkbox-icon-wrapper-height: 20px;
|
|
16749
|
+
--checkbox-icon-wrapper-width: 20px;
|
|
16750
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.6666666269302368px;
|
|
16751
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.6666666269302368px;
|
|
16752
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.6666666269302368px;
|
|
16753
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.6666666269302368px;
|
|
16754
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16755
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16756
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16757
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16758
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16759
|
+
}
|
|
16760
|
+
[data-theme='dark'] [component-variant="checkbox-medium-selected-default"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-selected-default"]:hover:not(:disabled):not([disabled]) {
|
|
16761
|
+
--checkbox-icon-wrapper-height: 20px;
|
|
16762
|
+
--checkbox-icon-wrapper-width: 20px;
|
|
16763
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.6666666269302368px;
|
|
16764
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.6666666269302368px;
|
|
16765
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.6666666269302368px;
|
|
16766
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.6666666269302368px;
|
|
16767
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16768
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16769
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16770
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16771
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16772
|
+
}
|
|
16773
|
+
[data-theme='dark'] [component-variant="checkbox-medium-selected-default"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-selected-default"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-medium-selected-default"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-selected-default"]:active:not(:disabled):not([disabled]) {
|
|
16774
|
+
--checkbox-icon-wrapper-height: 20px;
|
|
16775
|
+
--checkbox-icon-wrapper-width: 20px;
|
|
16776
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.6666666269302368px;
|
|
16777
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.6666666269302368px;
|
|
16778
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.6666666269302368px;
|
|
16779
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.6666666269302368px;
|
|
16780
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16781
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16782
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16783
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16784
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16785
|
+
}
|
|
16786
|
+
[data-theme='dark'] [component-variant="checkbox-medium-selected-default"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-selected-default"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-medium-selected-default"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-selected-default"]:focus-visible:not(:disabled):not([disabled]) {
|
|
16787
|
+
--checkbox-icon-wrapper-height: 20px;
|
|
16788
|
+
--checkbox-icon-wrapper-width: 20px;
|
|
16789
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.6666666269302368px;
|
|
16790
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.6666666269302368px;
|
|
16791
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.6666666269302368px;
|
|
16792
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.6666666269302368px;
|
|
16793
|
+
--checkbox-icon-wrapper-border-color: var(--border-border-grey-1);
|
|
16794
|
+
--checkbox-icon-wrapper-border-top-width: 0.8333333134651184px;
|
|
16795
|
+
--checkbox-icon-wrapper-border-right-width: 0.8333333134651184px;
|
|
16796
|
+
--checkbox-icon-wrapper-border-bottom-width: 0.8333333134651184px;
|
|
16797
|
+
--checkbox-icon-wrapper-border-left-width: 0.8333333134651184px;
|
|
16798
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16799
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16800
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16801
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16802
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16803
|
+
}
|
|
16804
|
+
[data-theme='dark'] [component-variant="checkbox-medium-selected-inverse"], [data-theme='light'] [component-variant="checkbox-medium-selected-inverse"] {
|
|
16805
|
+
--checkbox-icon-wrapper-height: 20px;
|
|
16806
|
+
--checkbox-icon-wrapper-width: 20px;
|
|
16807
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.6666666269302368px;
|
|
16808
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.6666666269302368px;
|
|
16809
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.6666666269302368px;
|
|
16810
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.6666666269302368px;
|
|
16811
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16812
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16813
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16814
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16815
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16816
|
+
}
|
|
16817
|
+
[data-theme='dark'] [component-variant="checkbox-medium-selected-inverse"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-selected-inverse"]:hover:not(:disabled):not([disabled]) {
|
|
16818
|
+
--checkbox-icon-wrapper-height: 20px;
|
|
16819
|
+
--checkbox-icon-wrapper-width: 20px;
|
|
16820
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.6666666269302368px;
|
|
16821
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.6666666269302368px;
|
|
16822
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.6666666269302368px;
|
|
16823
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.6666666269302368px;
|
|
16824
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16825
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16826
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16827
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16828
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16829
|
+
}
|
|
16830
|
+
[data-theme='dark'] [component-variant="checkbox-medium-selected-inverse"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-selected-inverse"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-medium-selected-inverse"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-selected-inverse"]:active:not(:disabled):not([disabled]) {
|
|
16831
|
+
--checkbox-icon-wrapper-height: 20px;
|
|
16832
|
+
--checkbox-icon-wrapper-width: 20px;
|
|
16833
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.6666666269302368px;
|
|
16834
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.6666666269302368px;
|
|
16835
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.6666666269302368px;
|
|
16836
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.6666666269302368px;
|
|
16837
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16838
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16839
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16840
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16841
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16842
|
+
}
|
|
16843
|
+
[data-theme='dark'] [component-variant="checkbox-medium-selected-inverse"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-selected-inverse"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-medium-selected-inverse"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-selected-inverse"]:focus-visible:not(:disabled):not([disabled]) {
|
|
16844
|
+
--checkbox-icon-wrapper-height: 20px;
|
|
16845
|
+
--checkbox-icon-wrapper-width: 20px;
|
|
16846
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.6666666269302368px;
|
|
16847
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.6666666269302368px;
|
|
16848
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.6666666269302368px;
|
|
16849
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.6666666269302368px;
|
|
16850
|
+
--checkbox-icon-wrapper-border-color: var(--border-border-grey-1);
|
|
16851
|
+
--checkbox-icon-wrapper-border-top-width: 1px;
|
|
16852
|
+
--checkbox-icon-wrapper-border-right-width: 1px;
|
|
16853
|
+
--checkbox-icon-wrapper-border-bottom-width: 1px;
|
|
16854
|
+
--checkbox-icon-wrapper-border-left-width: 1px;
|
|
16855
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16856
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16857
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16858
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16859
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16860
|
+
}
|
|
16861
|
+
[data-theme='dark'] [component-variant="checkbox-small-unselected-default"], [data-theme='light'] [component-variant="checkbox-small-unselected-default"] {
|
|
16862
|
+
--checkbox-icon-wrapper-height: 16px;
|
|
16863
|
+
--checkbox-icon-wrapper-width: 16px;
|
|
16864
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.3333333730697632px;
|
|
16865
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.3333333730697632px;
|
|
16866
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.3333333730697632px;
|
|
16867
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.3333333730697632px;
|
|
16868
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16869
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16870
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16871
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16872
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16873
|
+
}
|
|
16874
|
+
[data-theme='dark'] [component-variant="checkbox-small-unselected-default"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-unselected-default"]:hover:not(:disabled):not([disabled]) {
|
|
16875
|
+
--checkbox-icon-wrapper-height: 16px;
|
|
16876
|
+
--checkbox-icon-wrapper-width: 16px;
|
|
16877
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.3333333730697632px;
|
|
16878
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.3333333730697632px;
|
|
16879
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.3333333730697632px;
|
|
16880
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.3333333730697632px;
|
|
16881
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16882
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16883
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16884
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16885
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16886
|
+
}
|
|
16887
|
+
[data-theme='dark'] [component-variant="checkbox-small-unselected-default"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-unselected-default"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-small-unselected-default"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-unselected-default"]:active:not(:disabled):not([disabled]) {
|
|
16888
|
+
--checkbox-icon-wrapper-height: 16px;
|
|
16889
|
+
--checkbox-icon-wrapper-width: 16px;
|
|
16890
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.3333333730697632px;
|
|
16891
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.3333333730697632px;
|
|
16892
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.3333333730697632px;
|
|
16893
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.3333333730697632px;
|
|
16894
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16895
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16896
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16897
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16898
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16899
|
+
}
|
|
16900
|
+
[data-theme='dark'] [component-variant="checkbox-small-unselected-default"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-unselected-default"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-small-unselected-default"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-unselected-default"]:focus-visible:not(:disabled):not([disabled]) {
|
|
16901
|
+
--checkbox-icon-wrapper-height: 16px;
|
|
16902
|
+
--checkbox-icon-wrapper-width: 16px;
|
|
16903
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.3333333730697632px;
|
|
16904
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.3333333730697632px;
|
|
16905
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.3333333730697632px;
|
|
16906
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.3333333730697632px;
|
|
16907
|
+
--checkbox-icon-wrapper-border-color: var(--border-border-grey-1);
|
|
16908
|
+
--checkbox-icon-wrapper-border-top-width: 0.6666666865348816px;
|
|
16909
|
+
--checkbox-icon-wrapper-border-right-width: 0.6666666865348816px;
|
|
16910
|
+
--checkbox-icon-wrapper-border-bottom-width: 0.6666666865348816px;
|
|
16911
|
+
--checkbox-icon-wrapper-border-left-width: 0.6666666865348816px;
|
|
16912
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16913
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16914
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16915
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16916
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16917
|
+
}
|
|
16918
|
+
[data-theme='dark'] [component-variant="checkbox-small-unselected-inverse"], [data-theme='light'] [component-variant="checkbox-small-unselected-inverse"] {
|
|
16919
|
+
--checkbox-icon-wrapper-height: 16px;
|
|
16920
|
+
--checkbox-icon-wrapper-width: 16px;
|
|
16921
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.3333333730697632px;
|
|
16922
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.3333333730697632px;
|
|
16923
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.3333333730697632px;
|
|
16924
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.3333333730697632px;
|
|
16925
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16926
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16927
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16928
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16929
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16930
|
+
}
|
|
16931
|
+
[data-theme='dark'] [component-variant="checkbox-small-unselected-inverse"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-unselected-inverse"]:hover:not(:disabled):not([disabled]) {
|
|
16932
|
+
--checkbox-icon-wrapper-height: 16px;
|
|
16933
|
+
--checkbox-icon-wrapper-width: 16px;
|
|
16934
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.3333333730697632px;
|
|
16935
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.3333333730697632px;
|
|
16936
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.3333333730697632px;
|
|
16937
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.3333333730697632px;
|
|
16938
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16939
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16940
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16941
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16942
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16943
|
+
}
|
|
16944
|
+
[data-theme='dark'] [component-variant="checkbox-small-unselected-inverse"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-unselected-inverse"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-small-unselected-inverse"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-unselected-inverse"]:active:not(:disabled):not([disabled]) {
|
|
16945
|
+
--checkbox-icon-wrapper-height: 16px;
|
|
16946
|
+
--checkbox-icon-wrapper-width: 16px;
|
|
16947
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.3333333730697632px;
|
|
16948
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.3333333730697632px;
|
|
16949
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.3333333730697632px;
|
|
16950
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.3333333730697632px;
|
|
16951
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16952
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16953
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16954
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16955
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16956
|
+
}
|
|
16957
|
+
[data-theme='dark'] [component-variant="checkbox-small-unselected-inverse"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-unselected-inverse"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-small-unselected-inverse"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-unselected-inverse"]:focus-visible:not(:disabled):not([disabled]) {
|
|
16958
|
+
--checkbox-icon-wrapper-height: 16px;
|
|
16959
|
+
--checkbox-icon-wrapper-width: 16px;
|
|
16960
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.3333333730697632px;
|
|
16961
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.3333333730697632px;
|
|
16962
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.3333333730697632px;
|
|
16963
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.3333333730697632px;
|
|
16964
|
+
--checkbox-icon-wrapper-border-color: var(--border-border-grey-1);
|
|
16965
|
+
--checkbox-icon-wrapper-border-top-width: 0.6666666865348816px;
|
|
16966
|
+
--checkbox-icon-wrapper-border-right-width: 0.6666666865348816px;
|
|
16967
|
+
--checkbox-icon-wrapper-border-bottom-width: 0.6666666865348816px;
|
|
16968
|
+
--checkbox-icon-wrapper-border-left-width: 0.6666666865348816px;
|
|
16969
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16970
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16971
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16972
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16973
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16974
|
+
}
|
|
16975
|
+
[data-theme='dark'] [component-variant="checkbox-small-selected-default"], [data-theme='light'] [component-variant="checkbox-small-selected-default"] {
|
|
16976
|
+
--checkbox-icon-wrapper-height: 16px;
|
|
16977
|
+
--checkbox-icon-wrapper-width: 16px;
|
|
16978
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.3333333730697632px;
|
|
16979
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.3333333730697632px;
|
|
16980
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.3333333730697632px;
|
|
16981
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.3333333730697632px;
|
|
16982
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16983
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16984
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16985
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16986
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16987
|
+
}
|
|
16988
|
+
[data-theme='dark'] [component-variant="checkbox-small-selected-default"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-selected-default"]:hover:not(:disabled):not([disabled]) {
|
|
16989
|
+
--checkbox-icon-wrapper-height: 16px;
|
|
16990
|
+
--checkbox-icon-wrapper-width: 16px;
|
|
16991
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.3333333730697632px;
|
|
16992
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.3333333730697632px;
|
|
16993
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.3333333730697632px;
|
|
16994
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.3333333730697632px;
|
|
16995
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16996
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16997
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16998
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16999
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
17000
|
+
}
|
|
17001
|
+
[data-theme='dark'] [component-variant="checkbox-small-selected-default"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-selected-default"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-small-selected-default"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-selected-default"]:active:not(:disabled):not([disabled]) {
|
|
17002
|
+
--checkbox-icon-wrapper-height: 16px;
|
|
17003
|
+
--checkbox-icon-wrapper-width: 16px;
|
|
17004
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.3333333730697632px;
|
|
17005
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.3333333730697632px;
|
|
17006
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.3333333730697632px;
|
|
17007
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.3333333730697632px;
|
|
17008
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
17009
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
17010
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
17011
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
17012
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
17013
|
+
}
|
|
17014
|
+
[data-theme='dark'] [component-variant="checkbox-small-selected-default"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-selected-default"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-small-selected-default"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-selected-default"]:focus-visible:not(:disabled):not([disabled]) {
|
|
17015
|
+
--checkbox-icon-wrapper-height: 16px;
|
|
17016
|
+
--checkbox-icon-wrapper-width: 16px;
|
|
17017
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.3333333730697632px;
|
|
17018
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.3333333730697632px;
|
|
17019
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.3333333730697632px;
|
|
17020
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.3333333730697632px;
|
|
17021
|
+
--checkbox-icon-wrapper-border-color: var(--border-border-grey-1);
|
|
17022
|
+
--checkbox-icon-wrapper-border-top-width: 0.6666666865348816px;
|
|
17023
|
+
--checkbox-icon-wrapper-border-right-width: 0.6666666865348816px;
|
|
17024
|
+
--checkbox-icon-wrapper-border-bottom-width: 0.6666666865348816px;
|
|
17025
|
+
--checkbox-icon-wrapper-border-left-width: 0.6666666865348816px;
|
|
17026
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
17027
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
17028
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
17029
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
17030
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
17031
|
+
}
|
|
17032
|
+
[data-theme='dark'] [component-variant="checkbox-small-selected-inverse"], [data-theme='light'] [component-variant="checkbox-small-selected-inverse"] {
|
|
17033
|
+
--checkbox-icon-wrapper-height: 16px;
|
|
17034
|
+
--checkbox-icon-wrapper-width: 16px;
|
|
17035
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.3333333730697632px;
|
|
17036
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.3333333730697632px;
|
|
17037
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.3333333730697632px;
|
|
17038
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.3333333730697632px;
|
|
17039
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
17040
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
17041
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
17042
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
17043
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
17044
|
+
}
|
|
17045
|
+
[data-theme='dark'] [component-variant="checkbox-small-selected-inverse"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-selected-inverse"]:hover:not(:disabled):not([disabled]) {
|
|
17046
|
+
--checkbox-icon-wrapper-height: 16px;
|
|
17047
|
+
--checkbox-icon-wrapper-width: 16px;
|
|
17048
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.3333333730697632px;
|
|
17049
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.3333333730697632px;
|
|
17050
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.3333333730697632px;
|
|
17051
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.3333333730697632px;
|
|
17052
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
17053
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
17054
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
17055
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
17056
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
17057
|
+
}
|
|
17058
|
+
[data-theme='dark'] [component-variant="checkbox-small-selected-inverse"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-selected-inverse"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-small-selected-inverse"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-selected-inverse"]:active:not(:disabled):not([disabled]) {
|
|
17059
|
+
--checkbox-icon-wrapper-height: 16px;
|
|
17060
|
+
--checkbox-icon-wrapper-width: 16px;
|
|
17061
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.3333333730697632px;
|
|
17062
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.3333333730697632px;
|
|
17063
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.3333333730697632px;
|
|
17064
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.3333333730697632px;
|
|
17065
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
17066
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
17067
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
17068
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
17069
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
17070
|
+
}
|
|
17071
|
+
[data-theme='dark'] [component-variant="checkbox-small-selected-inverse"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-selected-inverse"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-small-selected-inverse"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-selected-inverse"]:focus-visible:not(:disabled):not([disabled]) {
|
|
17072
|
+
--checkbox-icon-wrapper-height: 16px;
|
|
17073
|
+
--checkbox-icon-wrapper-width: 16px;
|
|
17074
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.3333333730697632px;
|
|
17075
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.3333333730697632px;
|
|
17076
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.3333333730697632px;
|
|
17077
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.3333333730697632px;
|
|
17078
|
+
--checkbox-icon-wrapper-border-color: var(--border-border-grey-1);
|
|
17079
|
+
--checkbox-icon-wrapper-border-top-width: 1px;
|
|
17080
|
+
--checkbox-icon-wrapper-border-right-width: 1px;
|
|
17081
|
+
--checkbox-icon-wrapper-border-bottom-width: 1px;
|
|
17082
|
+
--checkbox-icon-wrapper-border-left-width: 1px;
|
|
17083
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
17084
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
17085
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
17086
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
17087
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
17088
|
+
}
|
|
17089
|
+
[data-theme='dark'] [component-variant="checkbox-large-unselected-default"], [data-theme='light'] [component-variant="checkbox-large-unselected-default"] {
|
|
17090
|
+
--checkbox-icon-container-height: 18px;
|
|
17091
|
+
--checkbox-icon-container-width: 18px;
|
|
17092
|
+
--checkbox-icon-container-border-top-left-radius: 2px;
|
|
17093
|
+
--checkbox-icon-container-border-top-right-radius: 2px;
|
|
17094
|
+
--checkbox-icon-container-border-bottom-left-radius: 2px;
|
|
17095
|
+
--checkbox-icon-container-border-bottom-right-radius: 2px;
|
|
17096
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17097
|
+
--checkbox-icon-container-border-top-width: 2px;
|
|
17098
|
+
--checkbox-icon-container-border-right-width: 2px;
|
|
17099
|
+
--checkbox-icon-container-border-bottom-width: 2px;
|
|
17100
|
+
--checkbox-icon-container-border-left-width: 2px;
|
|
17101
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17102
|
+
--checkbox-icon-container-font-size: initial;
|
|
17103
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17104
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17105
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17106
|
+
}
|
|
17107
|
+
[data-theme='dark'] [component-variant="checkbox-large-unselected-default"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-unselected-default"]:hover:not(:disabled):not([disabled]) {
|
|
17108
|
+
--checkbox-icon-container-height: 18px;
|
|
17109
|
+
--checkbox-icon-container-width: 18px;
|
|
17110
|
+
--checkbox-icon-container-border-top-left-radius: 2px;
|
|
17111
|
+
--checkbox-icon-container-border-top-right-radius: 2px;
|
|
17112
|
+
--checkbox-icon-container-border-bottom-left-radius: 2px;
|
|
17113
|
+
--checkbox-icon-container-border-bottom-right-radius: 2px;
|
|
17114
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17115
|
+
--checkbox-icon-container-border-top-width: 2px;
|
|
17116
|
+
--checkbox-icon-container-border-right-width: 2px;
|
|
17117
|
+
--checkbox-icon-container-border-bottom-width: 2px;
|
|
17118
|
+
--checkbox-icon-container-border-left-width: 2px;
|
|
17119
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17120
|
+
--checkbox-icon-container-font-size: initial;
|
|
17121
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17122
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17123
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17124
|
+
}
|
|
17125
|
+
[data-theme='dark'] [component-variant="checkbox-large-unselected-default"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-unselected-default"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-large-unselected-default"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-unselected-default"]:active:not(:disabled):not([disabled]) {
|
|
17126
|
+
--checkbox-icon-container-height: 18px;
|
|
17127
|
+
--checkbox-icon-container-width: 18px;
|
|
17128
|
+
--checkbox-icon-container-border-top-left-radius: 2px;
|
|
17129
|
+
--checkbox-icon-container-border-top-right-radius: 2px;
|
|
17130
|
+
--checkbox-icon-container-border-bottom-left-radius: 2px;
|
|
17131
|
+
--checkbox-icon-container-border-bottom-right-radius: 2px;
|
|
17132
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17133
|
+
--checkbox-icon-container-border-top-width: 2px;
|
|
17134
|
+
--checkbox-icon-container-border-right-width: 2px;
|
|
17135
|
+
--checkbox-icon-container-border-bottom-width: 2px;
|
|
17136
|
+
--checkbox-icon-container-border-left-width: 2px;
|
|
17137
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17138
|
+
--checkbox-icon-container-font-size: initial;
|
|
17139
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17140
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17141
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17142
|
+
}
|
|
17143
|
+
[data-theme='dark'] [component-variant="checkbox-large-unselected-default"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-unselected-default"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-large-unselected-default"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-unselected-default"]:focus-visible:not(:disabled):not([disabled]) {
|
|
17144
|
+
--checkbox-icon-container-height: 18px;
|
|
17145
|
+
--checkbox-icon-container-width: 18px;
|
|
17146
|
+
--checkbox-icon-container-border-top-left-radius: 2px;
|
|
17147
|
+
--checkbox-icon-container-border-top-right-radius: 2px;
|
|
17148
|
+
--checkbox-icon-container-border-bottom-left-radius: 2px;
|
|
17149
|
+
--checkbox-icon-container-border-bottom-right-radius: 2px;
|
|
17150
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17151
|
+
--checkbox-icon-container-border-top-width: 2px;
|
|
17152
|
+
--checkbox-icon-container-border-right-width: 2px;
|
|
17153
|
+
--checkbox-icon-container-border-bottom-width: 2px;
|
|
17154
|
+
--checkbox-icon-container-border-left-width: 2px;
|
|
17155
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17156
|
+
--checkbox-icon-container-font-size: initial;
|
|
17157
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17158
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17159
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17160
|
+
}
|
|
17161
|
+
[data-theme='dark'] [component-variant="checkbox-large-unselected-inverse"], [data-theme='light'] [component-variant="checkbox-large-unselected-inverse"] {
|
|
17162
|
+
--checkbox-icon-container-height: 18px;
|
|
17163
|
+
--checkbox-icon-container-width: 18px;
|
|
17164
|
+
--checkbox-icon-container-border-top-left-radius: 2px;
|
|
17165
|
+
--checkbox-icon-container-border-top-right-radius: 2px;
|
|
17166
|
+
--checkbox-icon-container-border-bottom-left-radius: 2px;
|
|
17167
|
+
--checkbox-icon-container-border-bottom-right-radius: 2px;
|
|
17168
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17169
|
+
--checkbox-icon-container-border-top-width: 2px;
|
|
17170
|
+
--checkbox-icon-container-border-right-width: 2px;
|
|
17171
|
+
--checkbox-icon-container-border-bottom-width: 2px;
|
|
17172
|
+
--checkbox-icon-container-border-left-width: 2px;
|
|
17173
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17174
|
+
--checkbox-icon-container-font-size: initial;
|
|
17175
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17176
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17177
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17178
|
+
}
|
|
17179
|
+
[data-theme='dark'] [component-variant="checkbox-large-unselected-inverse"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-unselected-inverse"]:hover:not(:disabled):not([disabled]) {
|
|
17180
|
+
--checkbox-icon-container-height: 18px;
|
|
17181
|
+
--checkbox-icon-container-width: 18px;
|
|
17182
|
+
--checkbox-icon-container-border-top-left-radius: 2px;
|
|
17183
|
+
--checkbox-icon-container-border-top-right-radius: 2px;
|
|
17184
|
+
--checkbox-icon-container-border-bottom-left-radius: 2px;
|
|
17185
|
+
--checkbox-icon-container-border-bottom-right-radius: 2px;
|
|
17186
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17187
|
+
--checkbox-icon-container-border-top-width: 2px;
|
|
17188
|
+
--checkbox-icon-container-border-right-width: 2px;
|
|
17189
|
+
--checkbox-icon-container-border-bottom-width: 2px;
|
|
17190
|
+
--checkbox-icon-container-border-left-width: 2px;
|
|
17191
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17192
|
+
--checkbox-icon-container-font-size: initial;
|
|
17193
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17194
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17195
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17196
|
+
}
|
|
17197
|
+
[data-theme='dark'] [component-variant="checkbox-large-unselected-inverse"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-unselected-inverse"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-large-unselected-inverse"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-unselected-inverse"]:active:not(:disabled):not([disabled]) {
|
|
17198
|
+
--checkbox-icon-container-height: 18px;
|
|
17199
|
+
--checkbox-icon-container-width: 18px;
|
|
17200
|
+
--checkbox-icon-container-border-top-left-radius: 2px;
|
|
17201
|
+
--checkbox-icon-container-border-top-right-radius: 2px;
|
|
17202
|
+
--checkbox-icon-container-border-bottom-left-radius: 2px;
|
|
17203
|
+
--checkbox-icon-container-border-bottom-right-radius: 2px;
|
|
17204
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17205
|
+
--checkbox-icon-container-border-top-width: 2px;
|
|
17206
|
+
--checkbox-icon-container-border-right-width: 2px;
|
|
17207
|
+
--checkbox-icon-container-border-bottom-width: 2px;
|
|
17208
|
+
--checkbox-icon-container-border-left-width: 2px;
|
|
17209
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17210
|
+
--checkbox-icon-container-font-size: initial;
|
|
17211
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17212
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17213
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17214
|
+
}
|
|
17215
|
+
[data-theme='dark'] [component-variant="checkbox-large-unselected-inverse"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-unselected-inverse"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-large-unselected-inverse"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-unselected-inverse"]:focus-visible:not(:disabled):not([disabled]) {
|
|
17216
|
+
--checkbox-icon-container-height: 18px;
|
|
17217
|
+
--checkbox-icon-container-width: 18px;
|
|
17218
|
+
--checkbox-icon-container-border-top-left-radius: 2px;
|
|
17219
|
+
--checkbox-icon-container-border-top-right-radius: 2px;
|
|
17220
|
+
--checkbox-icon-container-border-bottom-left-radius: 2px;
|
|
17221
|
+
--checkbox-icon-container-border-bottom-right-radius: 2px;
|
|
17222
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17223
|
+
--checkbox-icon-container-border-top-width: 2px;
|
|
17224
|
+
--checkbox-icon-container-border-right-width: 2px;
|
|
17225
|
+
--checkbox-icon-container-border-bottom-width: 2px;
|
|
17226
|
+
--checkbox-icon-container-border-left-width: 2px;
|
|
17227
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17228
|
+
--checkbox-icon-container-font-size: initial;
|
|
17229
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17230
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17231
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17232
|
+
}
|
|
17233
|
+
[data-theme='dark'] [component-variant="checkbox-large-selected-default"], [data-theme='light'] [component-variant="checkbox-large-selected-default"] {
|
|
17234
|
+
--checkbox-icon-container-height: 18px;
|
|
17235
|
+
--checkbox-icon-container-width: 18px;
|
|
17236
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17237
|
+
--checkbox-icon-container-border-top-left-radius: 2px;
|
|
17238
|
+
--checkbox-icon-container-border-top-right-radius: 2px;
|
|
17239
|
+
--checkbox-icon-container-border-bottom-left-radius: 2px;
|
|
17240
|
+
--checkbox-icon-container-border-bottom-right-radius: 2px;
|
|
17241
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17242
|
+
--checkbox-icon-container-font-size: initial;
|
|
17243
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17244
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17245
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17246
|
+
}
|
|
17247
|
+
[data-theme='dark'] [component-variant="checkbox-large-selected-default"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected-default"]:hover:not(:disabled):not([disabled]) {
|
|
17248
|
+
--checkbox-icon-container-height: 18px;
|
|
17249
|
+
--checkbox-icon-container-width: 18px;
|
|
17250
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17251
|
+
--checkbox-icon-container-border-top-left-radius: 2px;
|
|
17252
|
+
--checkbox-icon-container-border-top-right-radius: 2px;
|
|
17253
|
+
--checkbox-icon-container-border-bottom-left-radius: 2px;
|
|
17254
|
+
--checkbox-icon-container-border-bottom-right-radius: 2px;
|
|
17255
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17256
|
+
--checkbox-icon-container-font-size: initial;
|
|
17257
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17258
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17259
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17260
|
+
}
|
|
17261
|
+
[data-theme='dark'] [component-variant="checkbox-large-selected-default"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected-default"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-large-selected-default"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected-default"]:active:not(:disabled):not([disabled]) {
|
|
17262
|
+
--checkbox-icon-container-height: 18px;
|
|
17263
|
+
--checkbox-icon-container-width: 18px;
|
|
17264
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17265
|
+
--checkbox-icon-container-border-top-left-radius: 2px;
|
|
17266
|
+
--checkbox-icon-container-border-top-right-radius: 2px;
|
|
17267
|
+
--checkbox-icon-container-border-bottom-left-radius: 2px;
|
|
17268
|
+
--checkbox-icon-container-border-bottom-right-radius: 2px;
|
|
17269
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17270
|
+
--checkbox-icon-container-font-size: initial;
|
|
17271
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17272
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17273
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17274
|
+
}
|
|
17275
|
+
[data-theme='dark'] [component-variant="checkbox-large-selected-default"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected-default"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-large-selected-default"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected-default"]:focus-visible:not(:disabled):not([disabled]) {
|
|
17276
|
+
--checkbox-icon-container-height: 18px;
|
|
17277
|
+
--checkbox-icon-container-width: 18px;
|
|
17278
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17279
|
+
--checkbox-icon-container-border-top-left-radius: 2px;
|
|
17280
|
+
--checkbox-icon-container-border-top-right-radius: 2px;
|
|
17281
|
+
--checkbox-icon-container-border-bottom-left-radius: 2px;
|
|
17282
|
+
--checkbox-icon-container-border-bottom-right-radius: 2px;
|
|
17283
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17284
|
+
--checkbox-icon-container-font-size: initial;
|
|
17285
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17286
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17287
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17288
|
+
}
|
|
17289
|
+
[data-theme='dark'] [component-variant="checkbox-large-selected-inverse"], [data-theme='light'] [component-variant="checkbox-large-selected-inverse"] {
|
|
17290
|
+
--checkbox-icon-container-height: 18px;
|
|
17291
|
+
--checkbox-icon-container-width: 18px;
|
|
17292
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17293
|
+
--checkbox-icon-container-border-top-left-radius: 2px;
|
|
17294
|
+
--checkbox-icon-container-border-top-right-radius: 2px;
|
|
17295
|
+
--checkbox-icon-container-border-bottom-left-radius: 2px;
|
|
17296
|
+
--checkbox-icon-container-border-bottom-right-radius: 2px;
|
|
17297
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17298
|
+
--checkbox-icon-container-font-size: initial;
|
|
17299
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17300
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17301
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17302
|
+
}
|
|
17303
|
+
[data-theme='dark'] [component-variant="checkbox-large-selected-inverse"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected-inverse"]:hover:not(:disabled):not([disabled]) {
|
|
17304
|
+
--checkbox-icon-container-height: 18px;
|
|
17305
|
+
--checkbox-icon-container-width: 18px;
|
|
17306
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17307
|
+
--checkbox-icon-container-border-top-left-radius: 2px;
|
|
17308
|
+
--checkbox-icon-container-border-top-right-radius: 2px;
|
|
17309
|
+
--checkbox-icon-container-border-bottom-left-radius: 2px;
|
|
17310
|
+
--checkbox-icon-container-border-bottom-right-radius: 2px;
|
|
17311
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17312
|
+
--checkbox-icon-container-font-size: initial;
|
|
17313
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17314
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17315
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17316
|
+
}
|
|
17317
|
+
[data-theme='dark'] [component-variant="checkbox-large-selected-inverse"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected-inverse"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-large-selected-inverse"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected-inverse"]:active:not(:disabled):not([disabled]) {
|
|
17318
|
+
--checkbox-icon-container-height: 18px;
|
|
17319
|
+
--checkbox-icon-container-width: 18px;
|
|
17320
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17321
|
+
--checkbox-icon-container-border-top-left-radius: 2px;
|
|
17322
|
+
--checkbox-icon-container-border-top-right-radius: 2px;
|
|
17323
|
+
--checkbox-icon-container-border-bottom-left-radius: 2px;
|
|
17324
|
+
--checkbox-icon-container-border-bottom-right-radius: 2px;
|
|
17325
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17326
|
+
--checkbox-icon-container-font-size: initial;
|
|
17327
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17328
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17329
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17330
|
+
}
|
|
17331
|
+
[data-theme='dark'] [component-variant="checkbox-large-selected-inverse"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected-inverse"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-large-selected-inverse"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected-inverse"]:focus-visible:not(:disabled):not([disabled]) {
|
|
17332
|
+
--checkbox-icon-container-height: 18px;
|
|
17333
|
+
--checkbox-icon-container-width: 18px;
|
|
17334
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17335
|
+
--checkbox-icon-container-border-top-left-radius: 2px;
|
|
17336
|
+
--checkbox-icon-container-border-top-right-radius: 2px;
|
|
17337
|
+
--checkbox-icon-container-border-bottom-left-radius: 2px;
|
|
17338
|
+
--checkbox-icon-container-border-bottom-right-radius: 2px;
|
|
17339
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17340
|
+
--checkbox-icon-container-font-size: initial;
|
|
17341
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17342
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17343
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17344
|
+
}
|
|
17345
|
+
[data-theme='dark'] [component-variant="checkbox-medium-unselected-default"], [data-theme='light'] [component-variant="checkbox-medium-unselected-default"] {
|
|
17346
|
+
--checkbox-icon-container-height: 15px;
|
|
17347
|
+
--checkbox-icon-container-width: 15px;
|
|
17348
|
+
--checkbox-icon-container-border-top-left-radius: 1.6666666269302368px;
|
|
17349
|
+
--checkbox-icon-container-border-top-right-radius: 1.6666666269302368px;
|
|
17350
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.6666666269302368px;
|
|
17351
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.6666666269302368px;
|
|
17352
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17353
|
+
--checkbox-icon-container-border-top-width: 1.6666666269302368px;
|
|
17354
|
+
--checkbox-icon-container-border-right-width: 1.6666666269302368px;
|
|
17355
|
+
--checkbox-icon-container-border-bottom-width: 1.6666666269302368px;
|
|
17356
|
+
--checkbox-icon-container-border-left-width: 1.6666666269302368px;
|
|
17357
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17358
|
+
--checkbox-icon-container-font-size: initial;
|
|
17359
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17360
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17361
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17362
|
+
}
|
|
17363
|
+
[data-theme='dark'] [component-variant="checkbox-medium-unselected-default"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-unselected-default"]:hover:not(:disabled):not([disabled]) {
|
|
17364
|
+
--checkbox-icon-container-height: 15px;
|
|
17365
|
+
--checkbox-icon-container-width: 15px;
|
|
17366
|
+
--checkbox-icon-container-border-top-left-radius: 1.6666666269302368px;
|
|
17367
|
+
--checkbox-icon-container-border-top-right-radius: 1.6666666269302368px;
|
|
17368
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.6666666269302368px;
|
|
17369
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.6666666269302368px;
|
|
17370
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17371
|
+
--checkbox-icon-container-border-top-width: 1.6666666269302368px;
|
|
17372
|
+
--checkbox-icon-container-border-right-width: 1.6666666269302368px;
|
|
17373
|
+
--checkbox-icon-container-border-bottom-width: 1.6666666269302368px;
|
|
17374
|
+
--checkbox-icon-container-border-left-width: 1.6666666269302368px;
|
|
17375
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17376
|
+
--checkbox-icon-container-font-size: initial;
|
|
17377
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17378
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17379
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17380
|
+
}
|
|
17381
|
+
[data-theme='dark'] [component-variant="checkbox-medium-unselected-default"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-unselected-default"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-medium-unselected-default"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-unselected-default"]:active:not(:disabled):not([disabled]) {
|
|
17382
|
+
--checkbox-icon-container-height: 15px;
|
|
17383
|
+
--checkbox-icon-container-width: 15px;
|
|
17384
|
+
--checkbox-icon-container-border-top-left-radius: 1.6666666269302368px;
|
|
17385
|
+
--checkbox-icon-container-border-top-right-radius: 1.6666666269302368px;
|
|
17386
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.6666666269302368px;
|
|
17387
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.6666666269302368px;
|
|
17388
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17389
|
+
--checkbox-icon-container-border-top-width: 1.6666666269302368px;
|
|
17390
|
+
--checkbox-icon-container-border-right-width: 1.6666666269302368px;
|
|
17391
|
+
--checkbox-icon-container-border-bottom-width: 1.6666666269302368px;
|
|
17392
|
+
--checkbox-icon-container-border-left-width: 1.6666666269302368px;
|
|
17393
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17394
|
+
--checkbox-icon-container-font-size: initial;
|
|
17395
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17396
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17397
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17398
|
+
}
|
|
17399
|
+
[data-theme='dark'] [component-variant="checkbox-medium-unselected-default"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-unselected-default"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-medium-unselected-default"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-unselected-default"]:focus-visible:not(:disabled):not([disabled]) {
|
|
17400
|
+
--checkbox-icon-container-height: 15px;
|
|
17401
|
+
--checkbox-icon-container-width: 15px;
|
|
17402
|
+
--checkbox-icon-container-border-top-left-radius: 1.6666666269302368px;
|
|
17403
|
+
--checkbox-icon-container-border-top-right-radius: 1.6666666269302368px;
|
|
17404
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.6666666269302368px;
|
|
17405
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.6666666269302368px;
|
|
17406
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17407
|
+
--checkbox-icon-container-border-top-width: 1.6666666269302368px;
|
|
17408
|
+
--checkbox-icon-container-border-right-width: 1.6666666269302368px;
|
|
17409
|
+
--checkbox-icon-container-border-bottom-width: 1.6666666269302368px;
|
|
17410
|
+
--checkbox-icon-container-border-left-width: 1.6666666269302368px;
|
|
17411
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17412
|
+
--checkbox-icon-container-font-size: initial;
|
|
17413
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17414
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17415
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17416
|
+
}
|
|
17417
|
+
[data-theme='dark'] [component-variant="checkbox-medium-unselected-inverse"], [data-theme='light'] [component-variant="checkbox-medium-unselected-inverse"] {
|
|
17418
|
+
--checkbox-icon-container-height: 15px;
|
|
17419
|
+
--checkbox-icon-container-width: 15px;
|
|
17420
|
+
--checkbox-icon-container-border-top-left-radius: 1.6666666269302368px;
|
|
17421
|
+
--checkbox-icon-container-border-top-right-radius: 1.6666666269302368px;
|
|
17422
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.6666666269302368px;
|
|
17423
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.6666666269302368px;
|
|
17424
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17425
|
+
--checkbox-icon-container-border-top-width: 1.6666666269302368px;
|
|
17426
|
+
--checkbox-icon-container-border-right-width: 1.6666666269302368px;
|
|
17427
|
+
--checkbox-icon-container-border-bottom-width: 1.6666666269302368px;
|
|
17428
|
+
--checkbox-icon-container-border-left-width: 1.6666666269302368px;
|
|
17429
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17430
|
+
--checkbox-icon-container-font-size: initial;
|
|
17431
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17432
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17433
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17434
|
+
}
|
|
17435
|
+
[data-theme='dark'] [component-variant="checkbox-medium-unselected-inverse"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-unselected-inverse"]:hover:not(:disabled):not([disabled]) {
|
|
17436
|
+
--checkbox-icon-container-height: 15px;
|
|
17437
|
+
--checkbox-icon-container-width: 15px;
|
|
17438
|
+
--checkbox-icon-container-border-top-left-radius: 1.6666666269302368px;
|
|
17439
|
+
--checkbox-icon-container-border-top-right-radius: 1.6666666269302368px;
|
|
17440
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.6666666269302368px;
|
|
17441
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.6666666269302368px;
|
|
17442
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17443
|
+
--checkbox-icon-container-border-top-width: 1.6666666269302368px;
|
|
17444
|
+
--checkbox-icon-container-border-right-width: 1.6666666269302368px;
|
|
17445
|
+
--checkbox-icon-container-border-bottom-width: 1.6666666269302368px;
|
|
17446
|
+
--checkbox-icon-container-border-left-width: 1.6666666269302368px;
|
|
17447
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17448
|
+
--checkbox-icon-container-font-size: initial;
|
|
17449
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17450
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17451
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17452
|
+
}
|
|
17453
|
+
[data-theme='dark'] [component-variant="checkbox-medium-unselected-inverse"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-unselected-inverse"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-medium-unselected-inverse"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-unselected-inverse"]:active:not(:disabled):not([disabled]) {
|
|
17454
|
+
--checkbox-icon-container-height: 15px;
|
|
17455
|
+
--checkbox-icon-container-width: 15px;
|
|
17456
|
+
--checkbox-icon-container-border-top-left-radius: 1.6666666269302368px;
|
|
17457
|
+
--checkbox-icon-container-border-top-right-radius: 1.6666666269302368px;
|
|
17458
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.6666666269302368px;
|
|
17459
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.6666666269302368px;
|
|
17460
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17461
|
+
--checkbox-icon-container-border-top-width: 1.6666666269302368px;
|
|
17462
|
+
--checkbox-icon-container-border-right-width: 1.6666666269302368px;
|
|
17463
|
+
--checkbox-icon-container-border-bottom-width: 1.6666666269302368px;
|
|
17464
|
+
--checkbox-icon-container-border-left-width: 1.6666666269302368px;
|
|
17465
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17466
|
+
--checkbox-icon-container-font-size: initial;
|
|
17467
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17468
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17469
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17470
|
+
}
|
|
17471
|
+
[data-theme='dark'] [component-variant="checkbox-medium-unselected-inverse"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-unselected-inverse"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-medium-unselected-inverse"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-unselected-inverse"]:focus-visible:not(:disabled):not([disabled]) {
|
|
17472
|
+
--checkbox-icon-container-height: 15px;
|
|
17473
|
+
--checkbox-icon-container-width: 15px;
|
|
17474
|
+
--checkbox-icon-container-border-top-left-radius: 1.6666666269302368px;
|
|
17475
|
+
--checkbox-icon-container-border-top-right-radius: 1.6666666269302368px;
|
|
17476
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.6666666269302368px;
|
|
17477
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.6666666269302368px;
|
|
17478
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17479
|
+
--checkbox-icon-container-border-top-width: 1.6666666269302368px;
|
|
17480
|
+
--checkbox-icon-container-border-right-width: 1.6666666269302368px;
|
|
17481
|
+
--checkbox-icon-container-border-bottom-width: 1.6666666269302368px;
|
|
17482
|
+
--checkbox-icon-container-border-left-width: 1.6666666269302368px;
|
|
17483
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17484
|
+
--checkbox-icon-container-font-size: initial;
|
|
17485
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17486
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17487
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17488
|
+
}
|
|
17489
|
+
[data-theme='dark'] [component-variant="checkbox-medium-selected-default"], [data-theme='light'] [component-variant="checkbox-medium-selected-default"] {
|
|
17490
|
+
--checkbox-icon-container-height: 15px;
|
|
17491
|
+
--checkbox-icon-container-width: 15px;
|
|
17492
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17493
|
+
--checkbox-icon-container-border-top-left-radius: 1.6666666269302368px;
|
|
17494
|
+
--checkbox-icon-container-border-top-right-radius: 1.6666666269302368px;
|
|
17495
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.6666666269302368px;
|
|
17496
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.6666666269302368px;
|
|
17497
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17498
|
+
--checkbox-icon-container-font-size: initial;
|
|
17499
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17500
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17501
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17502
|
+
}
|
|
17503
|
+
[data-theme='dark'] [component-variant="checkbox-medium-selected-default"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-selected-default"]:hover:not(:disabled):not([disabled]) {
|
|
17504
|
+
--checkbox-icon-container-height: 15px;
|
|
17505
|
+
--checkbox-icon-container-width: 15px;
|
|
17506
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17507
|
+
--checkbox-icon-container-border-top-left-radius: 1.6666666269302368px;
|
|
17508
|
+
--checkbox-icon-container-border-top-right-radius: 1.6666666269302368px;
|
|
17509
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.6666666269302368px;
|
|
17510
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.6666666269302368px;
|
|
17511
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17512
|
+
--checkbox-icon-container-font-size: initial;
|
|
17513
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17514
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17515
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17516
|
+
}
|
|
17517
|
+
[data-theme='dark'] [component-variant="checkbox-medium-selected-default"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-selected-default"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-medium-selected-default"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-selected-default"]:active:not(:disabled):not([disabled]) {
|
|
17518
|
+
--checkbox-icon-container-height: 15px;
|
|
17519
|
+
--checkbox-icon-container-width: 15px;
|
|
17520
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17521
|
+
--checkbox-icon-container-border-top-left-radius: 1.6666666269302368px;
|
|
17522
|
+
--checkbox-icon-container-border-top-right-radius: 1.6666666269302368px;
|
|
17523
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.6666666269302368px;
|
|
17524
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.6666666269302368px;
|
|
17525
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17526
|
+
--checkbox-icon-container-font-size: initial;
|
|
17527
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17528
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17529
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17530
|
+
}
|
|
17531
|
+
[data-theme='dark'] [component-variant="checkbox-medium-selected-default"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-selected-default"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-medium-selected-default"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-selected-default"]:focus-visible:not(:disabled):not([disabled]) {
|
|
17532
|
+
--checkbox-icon-container-height: 15px;
|
|
17533
|
+
--checkbox-icon-container-width: 15px;
|
|
17534
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17535
|
+
--checkbox-icon-container-border-top-left-radius: 1.6666666269302368px;
|
|
17536
|
+
--checkbox-icon-container-border-top-right-radius: 1.6666666269302368px;
|
|
17537
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.6666666269302368px;
|
|
17538
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.6666666269302368px;
|
|
17539
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17540
|
+
--checkbox-icon-container-font-size: initial;
|
|
17541
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17542
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17543
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17544
|
+
}
|
|
17545
|
+
[data-theme='dark'] [component-variant="checkbox-medium-selected-inverse"], [data-theme='light'] [component-variant="checkbox-medium-selected-inverse"] {
|
|
17546
|
+
--checkbox-icon-container-height: 15px;
|
|
17547
|
+
--checkbox-icon-container-width: 15px;
|
|
17548
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17549
|
+
--checkbox-icon-container-border-top-left-radius: 1.6666666269302368px;
|
|
17550
|
+
--checkbox-icon-container-border-top-right-radius: 1.6666666269302368px;
|
|
17551
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.6666666269302368px;
|
|
17552
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.6666666269302368px;
|
|
17553
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17554
|
+
--checkbox-icon-container-font-size: initial;
|
|
17555
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17556
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17557
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17558
|
+
}
|
|
17559
|
+
[data-theme='dark'] [component-variant="checkbox-medium-selected-inverse"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-selected-inverse"]:hover:not(:disabled):not([disabled]) {
|
|
17560
|
+
--checkbox-icon-container-height: 15px;
|
|
17561
|
+
--checkbox-icon-container-width: 15px;
|
|
17562
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17563
|
+
--checkbox-icon-container-border-top-left-radius: 1.6666666269302368px;
|
|
17564
|
+
--checkbox-icon-container-border-top-right-radius: 1.6666666269302368px;
|
|
17565
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.6666666269302368px;
|
|
17566
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.6666666269302368px;
|
|
17567
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17568
|
+
--checkbox-icon-container-font-size: initial;
|
|
17569
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17570
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17571
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17572
|
+
}
|
|
17573
|
+
[data-theme='dark'] [component-variant="checkbox-medium-selected-inverse"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-selected-inverse"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-medium-selected-inverse"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-selected-inverse"]:active:not(:disabled):not([disabled]) {
|
|
17574
|
+
--checkbox-icon-container-height: 15px;
|
|
17575
|
+
--checkbox-icon-container-width: 15px;
|
|
17576
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17577
|
+
--checkbox-icon-container-border-top-left-radius: 1.6666666269302368px;
|
|
17578
|
+
--checkbox-icon-container-border-top-right-radius: 1.6666666269302368px;
|
|
17579
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.6666666269302368px;
|
|
17580
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.6666666269302368px;
|
|
17581
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17582
|
+
--checkbox-icon-container-font-size: initial;
|
|
17583
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17584
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17585
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17586
|
+
}
|
|
17587
|
+
[data-theme='dark'] [component-variant="checkbox-medium-selected-inverse"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-selected-inverse"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-medium-selected-inverse"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-selected-inverse"]:focus-visible:not(:disabled):not([disabled]) {
|
|
17588
|
+
--checkbox-icon-container-height: 15px;
|
|
17589
|
+
--checkbox-icon-container-width: 15px;
|
|
17590
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17591
|
+
--checkbox-icon-container-border-top-left-radius: 1.6666666269302368px;
|
|
17592
|
+
--checkbox-icon-container-border-top-right-radius: 1.6666666269302368px;
|
|
17593
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.6666666269302368px;
|
|
17594
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.6666666269302368px;
|
|
17595
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17596
|
+
--checkbox-icon-container-font-size: initial;
|
|
17597
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17598
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17599
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17600
|
+
}
|
|
17601
|
+
[data-theme='dark'] [component-variant="checkbox-small-unselected-default"], [data-theme='light'] [component-variant="checkbox-small-unselected-default"] {
|
|
17602
|
+
--checkbox-icon-container-height: 12px;
|
|
17603
|
+
--checkbox-icon-container-width: 12px;
|
|
17604
|
+
--checkbox-icon-container-border-top-left-radius: 1.3333333730697632px;
|
|
17605
|
+
--checkbox-icon-container-border-top-right-radius: 1.3333333730697632px;
|
|
17606
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.3333333730697632px;
|
|
17607
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.3333333730697632px;
|
|
17608
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17609
|
+
--checkbox-icon-container-border-top-width: 1.3333333730697632px;
|
|
17610
|
+
--checkbox-icon-container-border-right-width: 1.3333333730697632px;
|
|
17611
|
+
--checkbox-icon-container-border-bottom-width: 1.3333333730697632px;
|
|
17612
|
+
--checkbox-icon-container-border-left-width: 1.3333333730697632px;
|
|
17613
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17614
|
+
--checkbox-icon-container-font-size: initial;
|
|
17615
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17616
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17617
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17618
|
+
}
|
|
17619
|
+
[data-theme='dark'] [component-variant="checkbox-small-unselected-default"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-unselected-default"]:hover:not(:disabled):not([disabled]) {
|
|
17620
|
+
--checkbox-icon-container-height: 12px;
|
|
17621
|
+
--checkbox-icon-container-width: 12px;
|
|
17622
|
+
--checkbox-icon-container-border-top-left-radius: 1.3333333730697632px;
|
|
17623
|
+
--checkbox-icon-container-border-top-right-radius: 1.3333333730697632px;
|
|
17624
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.3333333730697632px;
|
|
17625
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.3333333730697632px;
|
|
17626
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17627
|
+
--checkbox-icon-container-border-top-width: 1.3333333730697632px;
|
|
17628
|
+
--checkbox-icon-container-border-right-width: 1.3333333730697632px;
|
|
17629
|
+
--checkbox-icon-container-border-bottom-width: 1.3333333730697632px;
|
|
17630
|
+
--checkbox-icon-container-border-left-width: 1.3333333730697632px;
|
|
17631
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17632
|
+
--checkbox-icon-container-font-size: initial;
|
|
17633
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17634
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17635
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17636
|
+
}
|
|
17637
|
+
[data-theme='dark'] [component-variant="checkbox-small-unselected-default"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-unselected-default"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-small-unselected-default"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-unselected-default"]:active:not(:disabled):not([disabled]) {
|
|
17638
|
+
--checkbox-icon-container-height: 12px;
|
|
17639
|
+
--checkbox-icon-container-width: 12px;
|
|
17640
|
+
--checkbox-icon-container-border-top-left-radius: 1.3333333730697632px;
|
|
17641
|
+
--checkbox-icon-container-border-top-right-radius: 1.3333333730697632px;
|
|
17642
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.3333333730697632px;
|
|
17643
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.3333333730697632px;
|
|
17644
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17645
|
+
--checkbox-icon-container-border-top-width: 1.3333333730697632px;
|
|
17646
|
+
--checkbox-icon-container-border-right-width: 1.3333333730697632px;
|
|
17647
|
+
--checkbox-icon-container-border-bottom-width: 1.3333333730697632px;
|
|
17648
|
+
--checkbox-icon-container-border-left-width: 1.3333333730697632px;
|
|
17649
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17650
|
+
--checkbox-icon-container-font-size: initial;
|
|
17651
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17652
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17653
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17654
|
+
}
|
|
17655
|
+
[data-theme='dark'] [component-variant="checkbox-small-unselected-default"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-unselected-default"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-small-unselected-default"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-unselected-default"]:focus-visible:not(:disabled):not([disabled]) {
|
|
17656
|
+
--checkbox-icon-container-height: 12px;
|
|
17657
|
+
--checkbox-icon-container-width: 12px;
|
|
17658
|
+
--checkbox-icon-container-border-top-left-radius: 1.3333333730697632px;
|
|
17659
|
+
--checkbox-icon-container-border-top-right-radius: 1.3333333730697632px;
|
|
17660
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.3333333730697632px;
|
|
17661
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.3333333730697632px;
|
|
17662
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17663
|
+
--checkbox-icon-container-border-top-width: 1.3333333730697632px;
|
|
17664
|
+
--checkbox-icon-container-border-right-width: 1.3333333730697632px;
|
|
17665
|
+
--checkbox-icon-container-border-bottom-width: 1.3333333730697632px;
|
|
17666
|
+
--checkbox-icon-container-border-left-width: 1.3333333730697632px;
|
|
17667
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17668
|
+
--checkbox-icon-container-font-size: initial;
|
|
17669
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17670
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17671
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17672
|
+
}
|
|
17673
|
+
[data-theme='dark'] [component-variant="checkbox-small-unselected-inverse"], [data-theme='light'] [component-variant="checkbox-small-unselected-inverse"] {
|
|
17674
|
+
--checkbox-icon-container-height: 12px;
|
|
17675
|
+
--checkbox-icon-container-width: 12px;
|
|
17676
|
+
--checkbox-icon-container-border-top-left-radius: 1.3333333730697632px;
|
|
17677
|
+
--checkbox-icon-container-border-top-right-radius: 1.3333333730697632px;
|
|
17678
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.3333333730697632px;
|
|
17679
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.3333333730697632px;
|
|
17680
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17681
|
+
--checkbox-icon-container-border-top-width: 1.3333333730697632px;
|
|
17682
|
+
--checkbox-icon-container-border-right-width: 1.3333333730697632px;
|
|
17683
|
+
--checkbox-icon-container-border-bottom-width: 1.3333333730697632px;
|
|
17684
|
+
--checkbox-icon-container-border-left-width: 1.3333333730697632px;
|
|
17685
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17686
|
+
--checkbox-icon-container-font-size: initial;
|
|
17687
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17688
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17689
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17690
|
+
}
|
|
17691
|
+
[data-theme='dark'] [component-variant="checkbox-small-unselected-inverse"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-unselected-inverse"]:hover:not(:disabled):not([disabled]) {
|
|
17692
|
+
--checkbox-icon-container-height: 12px;
|
|
17693
|
+
--checkbox-icon-container-width: 12px;
|
|
17694
|
+
--checkbox-icon-container-border-top-left-radius: 1.3333333730697632px;
|
|
17695
|
+
--checkbox-icon-container-border-top-right-radius: 1.3333333730697632px;
|
|
17696
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.3333333730697632px;
|
|
17697
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.3333333730697632px;
|
|
17698
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17699
|
+
--checkbox-icon-container-border-top-width: 1.3333333730697632px;
|
|
17700
|
+
--checkbox-icon-container-border-right-width: 1.3333333730697632px;
|
|
17701
|
+
--checkbox-icon-container-border-bottom-width: 1.3333333730697632px;
|
|
17702
|
+
--checkbox-icon-container-border-left-width: 1.3333333730697632px;
|
|
17703
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17704
|
+
--checkbox-icon-container-font-size: initial;
|
|
17705
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17706
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17707
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17708
|
+
}
|
|
17709
|
+
[data-theme='dark'] [component-variant="checkbox-small-unselected-inverse"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-unselected-inverse"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-small-unselected-inverse"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-unselected-inverse"]:active:not(:disabled):not([disabled]) {
|
|
17710
|
+
--checkbox-icon-container-height: 12px;
|
|
17711
|
+
--checkbox-icon-container-width: 12px;
|
|
17712
|
+
--checkbox-icon-container-border-top-left-radius: 1.3333333730697632px;
|
|
17713
|
+
--checkbox-icon-container-border-top-right-radius: 1.3333333730697632px;
|
|
17714
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.3333333730697632px;
|
|
17715
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.3333333730697632px;
|
|
17716
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17717
|
+
--checkbox-icon-container-border-top-width: 1.3333333730697632px;
|
|
17718
|
+
--checkbox-icon-container-border-right-width: 1.3333333730697632px;
|
|
17719
|
+
--checkbox-icon-container-border-bottom-width: 1.3333333730697632px;
|
|
17720
|
+
--checkbox-icon-container-border-left-width: 1.3333333730697632px;
|
|
17721
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17722
|
+
--checkbox-icon-container-font-size: initial;
|
|
17723
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17724
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17725
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17726
|
+
}
|
|
17727
|
+
[data-theme='dark'] [component-variant="checkbox-small-unselected-inverse"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-unselected-inverse"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-small-unselected-inverse"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-unselected-inverse"]:focus-visible:not(:disabled):not([disabled]) {
|
|
17728
|
+
--checkbox-icon-container-height: 12px;
|
|
17729
|
+
--checkbox-icon-container-width: 12px;
|
|
17730
|
+
--checkbox-icon-container-border-top-left-radius: 1.3333333730697632px;
|
|
17731
|
+
--checkbox-icon-container-border-top-right-radius: 1.3333333730697632px;
|
|
17732
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.3333333730697632px;
|
|
17733
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.3333333730697632px;
|
|
17734
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17735
|
+
--checkbox-icon-container-border-top-width: 1.3333333730697632px;
|
|
17736
|
+
--checkbox-icon-container-border-right-width: 1.3333333730697632px;
|
|
17737
|
+
--checkbox-icon-container-border-bottom-width: 1.3333333730697632px;
|
|
17738
|
+
--checkbox-icon-container-border-left-width: 1.3333333730697632px;
|
|
17739
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17740
|
+
--checkbox-icon-container-font-size: initial;
|
|
17741
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17742
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17743
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17744
|
+
}
|
|
17745
|
+
[data-theme='dark'] [component-variant="checkbox-small-selected-default"], [data-theme='light'] [component-variant="checkbox-small-selected-default"] {
|
|
17746
|
+
--checkbox-icon-container-height: 12px;
|
|
17747
|
+
--checkbox-icon-container-width: 12px;
|
|
17748
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17749
|
+
--checkbox-icon-container-border-top-left-radius: 1.3333333730697632px;
|
|
17750
|
+
--checkbox-icon-container-border-top-right-radius: 1.3333333730697632px;
|
|
17751
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.3333333730697632px;
|
|
17752
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.3333333730697632px;
|
|
17753
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17754
|
+
--checkbox-icon-container-font-size: initial;
|
|
17755
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17756
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17757
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17758
|
+
}
|
|
17759
|
+
[data-theme='dark'] [component-variant="checkbox-small-selected-default"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-selected-default"]:hover:not(:disabled):not([disabled]) {
|
|
17760
|
+
--checkbox-icon-container-height: 12px;
|
|
17761
|
+
--checkbox-icon-container-width: 12px;
|
|
17762
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17763
|
+
--checkbox-icon-container-border-top-left-radius: 1.3333333730697632px;
|
|
17764
|
+
--checkbox-icon-container-border-top-right-radius: 1.3333333730697632px;
|
|
17765
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.3333333730697632px;
|
|
17766
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.3333333730697632px;
|
|
17767
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17768
|
+
--checkbox-icon-container-font-size: initial;
|
|
17769
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17770
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17771
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17772
|
+
}
|
|
17773
|
+
[data-theme='dark'] [component-variant="checkbox-small-selected-default"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-selected-default"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-small-selected-default"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-selected-default"]:active:not(:disabled):not([disabled]) {
|
|
17774
|
+
--checkbox-icon-container-height: 12px;
|
|
17775
|
+
--checkbox-icon-container-width: 12px;
|
|
17776
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17777
|
+
--checkbox-icon-container-border-top-left-radius: 1.3333333730697632px;
|
|
17778
|
+
--checkbox-icon-container-border-top-right-radius: 1.3333333730697632px;
|
|
17779
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.3333333730697632px;
|
|
17780
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.3333333730697632px;
|
|
17781
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17782
|
+
--checkbox-icon-container-font-size: initial;
|
|
17783
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17784
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17785
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17786
|
+
}
|
|
17787
|
+
[data-theme='dark'] [component-variant="checkbox-small-selected-default"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-selected-default"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-small-selected-default"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-selected-default"]:focus-visible:not(:disabled):not([disabled]) {
|
|
17788
|
+
--checkbox-icon-container-height: 12px;
|
|
17789
|
+
--checkbox-icon-container-width: 12px;
|
|
17790
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17791
|
+
--checkbox-icon-container-border-top-left-radius: 1.3333333730697632px;
|
|
17792
|
+
--checkbox-icon-container-border-top-right-radius: 1.3333333730697632px;
|
|
17793
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.3333333730697632px;
|
|
17794
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.3333333730697632px;
|
|
17795
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17796
|
+
--checkbox-icon-container-font-size: initial;
|
|
17797
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17798
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17799
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17800
|
+
}
|
|
17801
|
+
[data-theme='dark'] [component-variant="checkbox-small-selected-inverse"], [data-theme='light'] [component-variant="checkbox-small-selected-inverse"] {
|
|
17802
|
+
--checkbox-icon-container-height: 12px;
|
|
17803
|
+
--checkbox-icon-container-width: 12px;
|
|
17804
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17805
|
+
--checkbox-icon-container-border-top-left-radius: 1.3333333730697632px;
|
|
17806
|
+
--checkbox-icon-container-border-top-right-radius: 1.3333333730697632px;
|
|
17807
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.3333333730697632px;
|
|
17808
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.3333333730697632px;
|
|
17809
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17810
|
+
--checkbox-icon-container-font-size: initial;
|
|
17811
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17812
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17813
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17814
|
+
}
|
|
17815
|
+
[data-theme='dark'] [component-variant="checkbox-small-selected-inverse"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-selected-inverse"]:hover:not(:disabled):not([disabled]) {
|
|
17816
|
+
--checkbox-icon-container-height: 12px;
|
|
17817
|
+
--checkbox-icon-container-width: 12px;
|
|
17818
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17819
|
+
--checkbox-icon-container-border-top-left-radius: 1.3333333730697632px;
|
|
17820
|
+
--checkbox-icon-container-border-top-right-radius: 1.3333333730697632px;
|
|
17821
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.3333333730697632px;
|
|
17822
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.3333333730697632px;
|
|
17823
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17824
|
+
--checkbox-icon-container-font-size: initial;
|
|
17825
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17826
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17827
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17828
|
+
}
|
|
17829
|
+
[data-theme='dark'] [component-variant="checkbox-small-selected-inverse"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-selected-inverse"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-small-selected-inverse"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-selected-inverse"]:active:not(:disabled):not([disabled]) {
|
|
17830
|
+
--checkbox-icon-container-height: 12px;
|
|
17831
|
+
--checkbox-icon-container-width: 12px;
|
|
17832
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17833
|
+
--checkbox-icon-container-border-top-left-radius: 1.3333333730697632px;
|
|
17834
|
+
--checkbox-icon-container-border-top-right-radius: 1.3333333730697632px;
|
|
17835
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.3333333730697632px;
|
|
17836
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.3333333730697632px;
|
|
17837
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17838
|
+
--checkbox-icon-container-font-size: initial;
|
|
17839
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17840
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17841
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17842
|
+
}
|
|
17843
|
+
[data-theme='dark'] [component-variant="checkbox-small-selected-inverse"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-selected-inverse"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-small-selected-inverse"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-selected-inverse"]:focus-visible:not(:disabled):not([disabled]) {
|
|
17844
|
+
--checkbox-icon-container-height: 12px;
|
|
17845
|
+
--checkbox-icon-container-width: 12px;
|
|
17846
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17847
|
+
--checkbox-icon-container-border-top-left-radius: 1.3333333730697632px;
|
|
17848
|
+
--checkbox-icon-container-border-top-right-radius: 1.3333333730697632px;
|
|
17849
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.3333333730697632px;
|
|
17850
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.3333333730697632px;
|
|
17851
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17852
|
+
--checkbox-icon-container-font-size: initial;
|
|
17853
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17854
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17855
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17856
|
+
}
|
|
17857
|
+
[data-theme='dark'] [component-variant="checkbox-large-selected-default"], [data-theme='light'] [component-variant="checkbox-large-selected-default"] {
|
|
17858
|
+
--checkbox-icon-height: 16px;
|
|
17859
|
+
--checkbox-icon-width: 16px;
|
|
17860
|
+
--checkbox-icon-background-color: rgb(233, 233, 234);
|
|
17861
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
17862
|
+
--checkbox-icon-font-size: initial;
|
|
17863
|
+
--checkbox-icon-font-weight: regular;
|
|
17864
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
17865
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
17866
|
+
}
|
|
17867
|
+
[data-theme='dark'] [component-variant="checkbox-large-selected-default"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected-default"]:hover:not(:disabled):not([disabled]) {
|
|
17868
|
+
--checkbox-icon-height: 16px;
|
|
17869
|
+
--checkbox-icon-width: 16px;
|
|
17870
|
+
--checkbox-icon-background-color: rgb(233, 233, 234);
|
|
17871
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
17872
|
+
--checkbox-icon-font-size: initial;
|
|
17873
|
+
--checkbox-icon-font-weight: regular;
|
|
17874
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
17875
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
17876
|
+
}
|
|
17877
|
+
[data-theme='dark'] [component-variant="checkbox-large-selected-default"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected-default"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-large-selected-default"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected-default"]:active:not(:disabled):not([disabled]) {
|
|
17878
|
+
--checkbox-icon-height: 16px;
|
|
17879
|
+
--checkbox-icon-width: 16px;
|
|
17880
|
+
--checkbox-icon-background-color: rgb(233, 233, 234);
|
|
17881
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
17882
|
+
--checkbox-icon-font-size: initial;
|
|
17883
|
+
--checkbox-icon-font-weight: regular;
|
|
17884
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
17885
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
17886
|
+
}
|
|
17887
|
+
[data-theme='dark'] [component-variant="checkbox-large-selected-default"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected-default"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-large-selected-default"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected-default"]:focus-visible:not(:disabled):not([disabled]) {
|
|
17888
|
+
--checkbox-icon-height: 16px;
|
|
17889
|
+
--checkbox-icon-width: 16px;
|
|
17890
|
+
--checkbox-icon-background-color: rgb(233, 233, 234);
|
|
17891
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
17892
|
+
--checkbox-icon-font-size: initial;
|
|
17893
|
+
--checkbox-icon-font-weight: regular;
|
|
17894
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
17895
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
17896
|
+
}
|
|
17897
|
+
[data-theme='dark'] [component-variant="checkbox-large-selected-inverse"], [data-theme='light'] [component-variant="checkbox-large-selected-inverse"] {
|
|
17898
|
+
--checkbox-icon-height: 16px;
|
|
17899
|
+
--checkbox-icon-width: 16px;
|
|
17900
|
+
--checkbox-icon-background-color: rgb(14, 15, 20);
|
|
17901
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
17902
|
+
--checkbox-icon-font-size: initial;
|
|
17903
|
+
--checkbox-icon-font-weight: regular;
|
|
17904
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
17905
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
17906
|
+
}
|
|
17907
|
+
[data-theme='dark'] [component-variant="checkbox-large-selected-inverse"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected-inverse"]:hover:not(:disabled):not([disabled]) {
|
|
17908
|
+
--checkbox-icon-height: 16px;
|
|
17909
|
+
--checkbox-icon-width: 16px;
|
|
17910
|
+
--checkbox-icon-background-color: rgb(14, 15, 20);
|
|
17911
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
17912
|
+
--checkbox-icon-font-size: initial;
|
|
17913
|
+
--checkbox-icon-font-weight: regular;
|
|
17914
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
17915
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
17916
|
+
}
|
|
17917
|
+
[data-theme='dark'] [component-variant="checkbox-large-selected-inverse"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected-inverse"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-large-selected-inverse"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected-inverse"]:active:not(:disabled):not([disabled]) {
|
|
17918
|
+
--checkbox-icon-height: 16px;
|
|
17919
|
+
--checkbox-icon-width: 16px;
|
|
17920
|
+
--checkbox-icon-background-color: rgb(14, 15, 20);
|
|
17921
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
17922
|
+
--checkbox-icon-font-size: initial;
|
|
17923
|
+
--checkbox-icon-font-weight: regular;
|
|
17924
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
17925
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
17926
|
+
}
|
|
17927
|
+
[data-theme='dark'] [component-variant="checkbox-large-selected-inverse"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected-inverse"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-large-selected-inverse"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-large-selected-inverse"]:focus-visible:not(:disabled):not([disabled]) {
|
|
17928
|
+
--checkbox-icon-height: 16px;
|
|
17929
|
+
--checkbox-icon-width: 16px;
|
|
17930
|
+
--checkbox-icon-background-color: rgb(14, 15, 20);
|
|
17931
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
17932
|
+
--checkbox-icon-font-size: initial;
|
|
17933
|
+
--checkbox-icon-font-weight: regular;
|
|
17934
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
17935
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
17936
|
+
}
|
|
17937
|
+
[data-theme='dark'] [component-variant="checkbox-medium-selected-default"], [data-theme='light'] [component-variant="checkbox-medium-selected-default"] {
|
|
17938
|
+
--checkbox-icon-height: 13.333333015441895px;
|
|
17939
|
+
--checkbox-icon-width: 13.333333015441895px;
|
|
17940
|
+
--checkbox-icon-background-color: rgb(233, 233, 234);
|
|
17941
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
17942
|
+
--checkbox-icon-font-size: initial;
|
|
17943
|
+
--checkbox-icon-font-weight: regular;
|
|
17944
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
17945
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
17946
|
+
}
|
|
17947
|
+
[data-theme='dark'] [component-variant="checkbox-medium-selected-default"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-selected-default"]:hover:not(:disabled):not([disabled]) {
|
|
17948
|
+
--checkbox-icon-height: 13.333333015441895px;
|
|
17949
|
+
--checkbox-icon-width: 13.333333015441895px;
|
|
17950
|
+
--checkbox-icon-background-color: rgb(233, 233, 234);
|
|
17951
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
17952
|
+
--checkbox-icon-font-size: initial;
|
|
17953
|
+
--checkbox-icon-font-weight: regular;
|
|
17954
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
17955
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
17956
|
+
}
|
|
17957
|
+
[data-theme='dark'] [component-variant="checkbox-medium-selected-default"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-selected-default"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-medium-selected-default"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-selected-default"]:active:not(:disabled):not([disabled]) {
|
|
17958
|
+
--checkbox-icon-height: 13.333333015441895px;
|
|
17959
|
+
--checkbox-icon-width: 13.333333015441895px;
|
|
17960
|
+
--checkbox-icon-background-color: rgb(233, 233, 234);
|
|
17961
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
17962
|
+
--checkbox-icon-font-size: initial;
|
|
17963
|
+
--checkbox-icon-font-weight: regular;
|
|
17964
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
17965
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
17966
|
+
}
|
|
17967
|
+
[data-theme='dark'] [component-variant="checkbox-medium-selected-default"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-selected-default"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-medium-selected-default"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-selected-default"]:focus-visible:not(:disabled):not([disabled]) {
|
|
17968
|
+
--checkbox-icon-height: 13.333333015441895px;
|
|
17969
|
+
--checkbox-icon-width: 13.333333015441895px;
|
|
17970
|
+
--checkbox-icon-background-color: rgb(233, 233, 234);
|
|
17971
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
17972
|
+
--checkbox-icon-font-size: initial;
|
|
17973
|
+
--checkbox-icon-font-weight: regular;
|
|
17974
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
17975
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
17976
|
+
}
|
|
17977
|
+
[data-theme='dark'] [component-variant="checkbox-medium-selected-inverse"], [data-theme='light'] [component-variant="checkbox-medium-selected-inverse"] {
|
|
17978
|
+
--checkbox-icon-height: 13.333333015441895px;
|
|
17979
|
+
--checkbox-icon-width: 13.333333015441895px;
|
|
17980
|
+
--checkbox-icon-background-color: rgb(14, 15, 20);
|
|
17981
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
17982
|
+
--checkbox-icon-font-size: initial;
|
|
17983
|
+
--checkbox-icon-font-weight: regular;
|
|
17984
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
17985
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
17986
|
+
}
|
|
17987
|
+
[data-theme='dark'] [component-variant="checkbox-medium-selected-inverse"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-selected-inverse"]:hover:not(:disabled):not([disabled]) {
|
|
17988
|
+
--checkbox-icon-height: 13.333333015441895px;
|
|
17989
|
+
--checkbox-icon-width: 13.333333015441895px;
|
|
17990
|
+
--checkbox-icon-background-color: rgb(14, 15, 20);
|
|
17991
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
17992
|
+
--checkbox-icon-font-size: initial;
|
|
17993
|
+
--checkbox-icon-font-weight: regular;
|
|
17994
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
17995
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
17996
|
+
}
|
|
17997
|
+
[data-theme='dark'] [component-variant="checkbox-medium-selected-inverse"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-selected-inverse"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-medium-selected-inverse"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-selected-inverse"]:active:not(:disabled):not([disabled]) {
|
|
17998
|
+
--checkbox-icon-height: 13.333333015441895px;
|
|
17999
|
+
--checkbox-icon-width: 13.333333015441895px;
|
|
18000
|
+
--checkbox-icon-background-color: rgb(14, 15, 20);
|
|
18001
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
18002
|
+
--checkbox-icon-font-size: initial;
|
|
18003
|
+
--checkbox-icon-font-weight: regular;
|
|
18004
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
18005
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
18006
|
+
}
|
|
18007
|
+
[data-theme='dark'] [component-variant="checkbox-medium-selected-inverse"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-selected-inverse"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-medium-selected-inverse"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-medium-selected-inverse"]:focus-visible:not(:disabled):not([disabled]) {
|
|
18008
|
+
--checkbox-icon-height: 13.333333015441895px;
|
|
18009
|
+
--checkbox-icon-width: 13.333333015441895px;
|
|
18010
|
+
--checkbox-icon-background-color: rgb(14, 15, 20);
|
|
18011
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
18012
|
+
--checkbox-icon-font-size: initial;
|
|
18013
|
+
--checkbox-icon-font-weight: regular;
|
|
18014
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
18015
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
18016
|
+
}
|
|
18017
|
+
[data-theme='dark'] [component-variant="checkbox-small-selected-default"], [data-theme='light'] [component-variant="checkbox-small-selected-default"] {
|
|
18018
|
+
--checkbox-icon-height: 10.666666984558105px;
|
|
18019
|
+
--checkbox-icon-width: 10.666666984558105px;
|
|
18020
|
+
--checkbox-icon-background-color: rgb(233, 233, 234);
|
|
18021
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
18022
|
+
--checkbox-icon-font-size: initial;
|
|
18023
|
+
--checkbox-icon-font-weight: regular;
|
|
18024
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
18025
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
18026
|
+
}
|
|
18027
|
+
[data-theme='dark'] [component-variant="checkbox-small-selected-default"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-selected-default"]:hover:not(:disabled):not([disabled]) {
|
|
18028
|
+
--checkbox-icon-height: 10.666666984558105px;
|
|
18029
|
+
--checkbox-icon-width: 10.666666984558105px;
|
|
18030
|
+
--checkbox-icon-background-color: rgb(233, 233, 234);
|
|
18031
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
18032
|
+
--checkbox-icon-font-size: initial;
|
|
18033
|
+
--checkbox-icon-font-weight: regular;
|
|
18034
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
18035
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
18036
|
+
}
|
|
18037
|
+
[data-theme='dark'] [component-variant="checkbox-small-selected-default"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-selected-default"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-small-selected-default"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-selected-default"]:active:not(:disabled):not([disabled]) {
|
|
18038
|
+
--checkbox-icon-height: 10.666666984558105px;
|
|
18039
|
+
--checkbox-icon-width: 10.666666984558105px;
|
|
18040
|
+
--checkbox-icon-background-color: rgb(233, 233, 234);
|
|
18041
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
18042
|
+
--checkbox-icon-font-size: initial;
|
|
18043
|
+
--checkbox-icon-font-weight: regular;
|
|
18044
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
18045
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
18046
|
+
}
|
|
18047
|
+
[data-theme='dark'] [component-variant="checkbox-small-selected-default"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-selected-default"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-small-selected-default"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-selected-default"]:focus-visible:not(:disabled):not([disabled]) {
|
|
18048
|
+
--checkbox-icon-height: 10.666666984558105px;
|
|
18049
|
+
--checkbox-icon-width: 10.666666984558105px;
|
|
18050
|
+
--checkbox-icon-background-color: rgb(233, 233, 234);
|
|
18051
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
18052
|
+
--checkbox-icon-font-size: initial;
|
|
18053
|
+
--checkbox-icon-font-weight: regular;
|
|
18054
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
18055
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
18056
|
+
}
|
|
18057
|
+
[data-theme='dark'] [component-variant="checkbox-small-selected-inverse"], [data-theme='light'] [component-variant="checkbox-small-selected-inverse"] {
|
|
18058
|
+
--checkbox-icon-height: 10.666666984558105px;
|
|
18059
|
+
--checkbox-icon-width: 10.666666984558105px;
|
|
18060
|
+
--checkbox-icon-background-color: rgb(14, 15, 20);
|
|
18061
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
18062
|
+
--checkbox-icon-font-size: initial;
|
|
18063
|
+
--checkbox-icon-font-weight: regular;
|
|
18064
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
18065
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
18066
|
+
}
|
|
18067
|
+
[data-theme='dark'] [component-variant="checkbox-small-selected-inverse"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-selected-inverse"]:hover:not(:disabled):not([disabled]) {
|
|
18068
|
+
--checkbox-icon-height: 10.666666984558105px;
|
|
18069
|
+
--checkbox-icon-width: 10.666666984558105px;
|
|
18070
|
+
--checkbox-icon-background-color: rgb(14, 15, 20);
|
|
18071
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
18072
|
+
--checkbox-icon-font-size: initial;
|
|
18073
|
+
--checkbox-icon-font-weight: regular;
|
|
18074
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
18075
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
18076
|
+
}
|
|
18077
|
+
[data-theme='dark'] [component-variant="checkbox-small-selected-inverse"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-selected-inverse"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-small-selected-inverse"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-selected-inverse"]:active:not(:disabled):not([disabled]) {
|
|
18078
|
+
--checkbox-icon-height: 10.666666984558105px;
|
|
18079
|
+
--checkbox-icon-width: 10.666666984558105px;
|
|
18080
|
+
--checkbox-icon-background-color: rgb(14, 15, 20);
|
|
18081
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
18082
|
+
--checkbox-icon-font-size: initial;
|
|
18083
|
+
--checkbox-icon-font-weight: regular;
|
|
18084
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
18085
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
18086
|
+
}
|
|
18087
|
+
[data-theme='dark'] [component-variant="checkbox-small-selected-inverse"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-selected-inverse"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="checkbox-small-selected-inverse"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="checkbox-small-selected-inverse"]:focus-visible:not(:disabled):not([disabled]) {
|
|
18088
|
+
--checkbox-icon-height: 10.666666984558105px;
|
|
18089
|
+
--checkbox-icon-width: 10.666666984558105px;
|
|
18090
|
+
--checkbox-icon-background-color: rgb(14, 15, 20);
|
|
18091
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
18092
|
+
--checkbox-icon-font-size: initial;
|
|
18093
|
+
--checkbox-icon-font-weight: regular;
|
|
18094
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
18095
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
18096
|
+
}
|
|
16126
18097
|
[data-theme='dark'] [component-variant^="radio-button-"], [data-theme='light'] [component-variant^="radio-button-"] {
|
|
16127
18098
|
--radio-button-opacity: 1;
|
|
16128
18099
|
--radio-button-height: auto;
|