@delightui/components 0.1.74 → 0.1.76
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/utils/ConditionalView/ConditionalView.d.ts +3 -0
- package/dist/cjs/components/utils/ConditionalView/ConditionalView.types.d.ts +5 -0
- package/dist/cjs/components/utils/ConditionalView/index.d.ts +2 -0
- package/dist/cjs/components/utils/WrapTextNodes/WrapTextNodes.d.ts +6 -0
- package/dist/cjs/components/utils/WrapTextNodes/WrapTextNodes.types.d.ts +2 -0
- package/dist/cjs/components/utils/WrapTextNodes/index.d.ts +4 -0
- package/dist/cjs/components/utils/index.d.ts +5 -0
- package/dist/cjs/components/utils/utils.d.ts +16 -0
- package/dist/cjs/library.css +2343 -131
- 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/utils/ConditionalView/ConditionalView.d.ts +3 -0
- package/dist/esm/components/utils/ConditionalView/ConditionalView.types.d.ts +5 -0
- package/dist/esm/components/utils/ConditionalView/index.d.ts +2 -0
- package/dist/esm/components/utils/WrapTextNodes/WrapTextNodes.d.ts +6 -0
- package/dist/esm/components/utils/WrapTextNodes/WrapTextNodes.types.d.ts +2 -0
- package/dist/esm/components/utils/WrapTextNodes/index.d.ts +4 -0
- package/dist/esm/components/utils/index.d.ts +5 -0
- package/dist/esm/components/utils/utils.d.ts +16 -0
- package/dist/esm/library.css +2343 -131
- package/dist/esm/library.js +3 -3
- package/dist/esm/library.js.map +1 -1
- package/dist/index.d.ts +8 -1
- package/package.json +1 -1
package/dist/esm/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);
|
|
@@ -4246,35 +4261,83 @@ span.flatpickr-weekday {
|
|
|
4246
4261
|
.TabItem-module_tabItem__--dM- {
|
|
4247
4262
|
--button-content-justify-content: center;
|
|
4248
4263
|
display: flex;
|
|
4264
|
+
flex-direction: column;
|
|
4265
|
+
justify-content: center;
|
|
4266
|
+
align-items: center;
|
|
4267
|
+
height: var(--tab-item-height);
|
|
4268
|
+
min-height: var(--tab-item-min-height);
|
|
4269
|
+
max-height: var(--tab-item-max-height);
|
|
4270
|
+
width: var(--tab-item-width);
|
|
4271
|
+
min-width: var(--tab-item-min-width);
|
|
4272
|
+
max-width: var(--tab-item-max-width);
|
|
4273
|
+
padding-top: calc(var(--tab-item-padding-top) - var(--tab-item-border-top-width));
|
|
4274
|
+
padding-bottom: calc(var(--tab-item-padding-bottom) - var(--tab-item-border-bottom-width));
|
|
4275
|
+
padding-left: calc(var(--tab-item-padding-left) - var(--tab-item-border-left-width));
|
|
4276
|
+
padding-right: calc(var(--tab-item-padding-right) - var(--tab-item-border-right-width));
|
|
4277
|
+
row-gap: var(--tab-item-row-gap);
|
|
4278
|
+
-moz-column-gap: var(--tab-item-column-gap);
|
|
4279
|
+
column-gap: var(--tab-item-column-gap);
|
|
4280
|
+
border-bottom-width: var(--tab-item-border-bottom-width);
|
|
4281
|
+
border-left-width: var(--tab-item-border-left-width);
|
|
4282
|
+
border-right-width: var(--tab-item-border-right-width);
|
|
4283
|
+
border-top-width: var(--tab-item-border-top-width);
|
|
4284
|
+
border-style: var(--tab-item-border-style);
|
|
4285
|
+
border-color: var(--tab-item-border-color);
|
|
4286
|
+
border-top-left-radius: var(--tab-item-border-top-left-radius);
|
|
4287
|
+
border-top-right-radius: var(--tab-item-border-top-right-radius);
|
|
4288
|
+
border-bottom-right-radius: var(--tab-item-border-bottom-right-radius);
|
|
4289
|
+
border-bottom-left-radius: var(--tab-item-border-bottom-left-radius);
|
|
4290
|
+
outline-width: var(--tab-item-outline-width);
|
|
4291
|
+
outline-style: var(--tab-item-outline-style);
|
|
4292
|
+
outline-color: var(--tab-item-outline-color);
|
|
4293
|
+
background-color: var(--tab-item-background-color);
|
|
4294
|
+
font-family: var(--tab-item-font-family);
|
|
4295
|
+
font-size: var(--tab-item-font-size);
|
|
4296
|
+
font-weight: var(--tab-item-font-weight);
|
|
4297
|
+
line-height: var(--tab-item-line-height);
|
|
4298
|
+
color: var(--tab-item-color);
|
|
4299
|
+
}
|
|
4300
|
+
.TabItem-module_tabItem__--dM- .TabItem-module_contentContainer__hESs0 {
|
|
4301
|
+
display: flex;
|
|
4302
|
+
flex-direction: row;
|
|
4249
4303
|
justify-content: center;
|
|
4250
4304
|
align-items: center;
|
|
4251
|
-
|
|
4252
|
-
|
|
4253
|
-
|
|
4254
|
-
|
|
4255
|
-
|
|
4256
|
-
|
|
4257
|
-
|
|
4258
|
-
|
|
4259
|
-
|
|
4260
|
-
|
|
4261
|
-
|
|
4262
|
-
--
|
|
4263
|
-
|
|
4264
|
-
--
|
|
4265
|
-
|
|
4266
|
-
|
|
4267
|
-
|
|
4268
|
-
|
|
4269
|
-
|
|
4270
|
-
|
|
4271
|
-
|
|
4272
|
-
|
|
4273
|
-
|
|
4274
|
-
|
|
4275
|
-
|
|
4276
|
-
|
|
4277
|
-
|
|
4305
|
+
height: var(--tab-item-wrapper-height);
|
|
4306
|
+
min-height: var(--tab-item-wrapper-min-height);
|
|
4307
|
+
max-height: var(--tab-item-wrapper-max-height);
|
|
4308
|
+
width: var(--tab-item-wrapper-width);
|
|
4309
|
+
min-width: var(--tab-item-wrapper-min-width);
|
|
4310
|
+
max-width: var(--tab-item-wrapper-max-width);
|
|
4311
|
+
padding-top: calc(var(--tab-item-wrapper-padding-top) - 0px);
|
|
4312
|
+
padding-top: calc(var(--tab-item-wrapper-padding-top) - var(--tab-item-wrapper-border-top-width, 0px));
|
|
4313
|
+
padding-bottom: calc(var(--tab-item-wrapper-padding-bottom) - 0px);
|
|
4314
|
+
padding-bottom: calc(var(--tab-item-wrapper-padding-bottom) - var(--tab-item-wrapper-border-bottom-width, 0px));
|
|
4315
|
+
padding-left: calc(var(--tab-item-wrapper-padding-left) - 0px);
|
|
4316
|
+
padding-left: calc(var(--tab-item-wrapper-padding-left) - var(--tab-item-wrapper-border-left-width, 0px));
|
|
4317
|
+
padding-right: calc(var(--tab-item-wrapper-padding-right) - 0px);
|
|
4318
|
+
padding-right: calc(var(--tab-item-wrapper-padding-right) - var(--tab-item-wrapper-border-right-width, 0px));
|
|
4319
|
+
row-gap: var(--tab-item-wrapper-row-gap);
|
|
4320
|
+
-moz-column-gap: var(--tab-item-wrapper-column-gap);
|
|
4321
|
+
column-gap: var(--tab-item-wrapper-column-gap);
|
|
4322
|
+
border-bottom-width: var(--tab-item-wrapper-border-bottom-width);
|
|
4323
|
+
border-left-width: var(--tab-item-wrapper-border-left-width);
|
|
4324
|
+
border-right-width: var(--tab-item-wrapper-border-right-width);
|
|
4325
|
+
border-top-width: var(--tab-item-wrapper-border-top-width);
|
|
4326
|
+
border-style: var(--tab-item-wrapper-border-style);
|
|
4327
|
+
border-color: var(--tab-item-wrapper-border-color);
|
|
4328
|
+
border-top-left-radius: var(--button-border-top-left-radius);
|
|
4329
|
+
border-top-right-radius: var(--tab-item-wrapper-border-top-right-radius);
|
|
4330
|
+
border-bottom-right-radius: var(--tab-item-wrapper-border-bottom-right-radius);
|
|
4331
|
+
border-bottom-left-radius: var(--tab-item-wrapper-border-bottom-left-radius);
|
|
4332
|
+
outline-width: var(--tab-item-wrapper-outline-width);
|
|
4333
|
+
outline-style: var(--tab-item-wrapper-outline-style);
|
|
4334
|
+
outline-color: var(--tab-item-wrapper-outline-color);
|
|
4335
|
+
background-color: var(--tab-item-wrapper-background-color);
|
|
4336
|
+
}
|
|
4337
|
+
.TabItem-module_tabItem__--dM- .TabItem-module_underline__MVnHi {
|
|
4338
|
+
width: var(--tab-item-underline-width);
|
|
4339
|
+
height: var(--tab-item-underline-height);
|
|
4340
|
+
background-color: var(--tab-item-underline-background-color);
|
|
4278
4341
|
}
|
|
4279
4342
|
.TabContent-module_tabContent__3-qqV {
|
|
4280
4343
|
display: flex;
|
|
@@ -15859,7 +15922,51 @@ span.flatpickr-weekday {
|
|
|
15859
15922
|
--checkbox-paragraph-spacing: ;
|
|
15860
15923
|
--checkbox-paragraph-indent:
|
|
15861
15924
|
}
|
|
15862
|
-
[data-theme='dark'] [component-variant="checkbox-large-unselected"], [data-theme='light'] [component-variant="checkbox-large-unselected"] {
|
|
15925
|
+
[data-theme='dark'] [component-variant="checkbox-large-unselected-default"], [data-theme='light'] [component-variant="checkbox-large-unselected-default"] {
|
|
15926
|
+
--checkbox-color: var(--text-primary);
|
|
15927
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
15928
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
15929
|
+
--checkbox-font-family: var(--font-family-body);
|
|
15930
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
15931
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
15932
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
15933
|
+
--checkbox-paragraph-spacing: 0px;
|
|
15934
|
+
--checkbox-paragraph-indent: 0px
|
|
15935
|
+
}
|
|
15936
|
+
[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]) {
|
|
15937
|
+
--checkbox-color: var(--text-primary);
|
|
15938
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
15939
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
15940
|
+
--checkbox-font-family: var(--font-family-body);
|
|
15941
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
15942
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
15943
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
15944
|
+
--checkbox-paragraph-spacing: 0px;
|
|
15945
|
+
--checkbox-paragraph-indent: 0px
|
|
15946
|
+
}
|
|
15947
|
+
[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]) {
|
|
15948
|
+
--checkbox-color: var(--text-primary);
|
|
15949
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
15950
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
15951
|
+
--checkbox-font-family: var(--font-family-body);
|
|
15952
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
15953
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
15954
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
15955
|
+
--checkbox-paragraph-spacing: 0px;
|
|
15956
|
+
--checkbox-paragraph-indent: 0px
|
|
15957
|
+
}
|
|
15958
|
+
[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]) {
|
|
15959
|
+
--checkbox-color: var(--text-primary);
|
|
15960
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
15961
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
15962
|
+
--checkbox-font-family: var(--font-family-body);
|
|
15963
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
15964
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
15965
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
15966
|
+
--checkbox-paragraph-spacing: 0px;
|
|
15967
|
+
--checkbox-paragraph-indent: 0px
|
|
15968
|
+
}
|
|
15969
|
+
[data-theme='dark'] [component-variant="checkbox-large-unselected-inverse"], [data-theme='light'] [component-variant="checkbox-large-unselected-inverse"] {
|
|
15863
15970
|
--checkbox-color: var(--text-primary);
|
|
15864
15971
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
15865
15972
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -15870,7 +15977,7 @@ span.flatpickr-weekday {
|
|
|
15870
15977
|
--checkbox-paragraph-spacing: 0px;
|
|
15871
15978
|
--checkbox-paragraph-indent: 0px
|
|
15872
15979
|
}
|
|
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]) {
|
|
15980
|
+
[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
15981
|
--checkbox-color: var(--text-primary);
|
|
15875
15982
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
15876
15983
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -15881,7 +15988,7 @@ span.flatpickr-weekday {
|
|
|
15881
15988
|
--checkbox-paragraph-spacing: 0px;
|
|
15882
15989
|
--checkbox-paragraph-indent: 0px
|
|
15883
15990
|
}
|
|
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]) {
|
|
15991
|
+
[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
15992
|
--checkbox-color: var(--text-primary);
|
|
15886
15993
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
15887
15994
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -15892,7 +15999,7 @@ span.flatpickr-weekday {
|
|
|
15892
15999
|
--checkbox-paragraph-spacing: 0px;
|
|
15893
16000
|
--checkbox-paragraph-indent: 0px
|
|
15894
16001
|
}
|
|
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]) {
|
|
16002
|
+
[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
16003
|
--checkbox-color: var(--text-primary);
|
|
15897
16004
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
15898
16005
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -15903,7 +16010,7 @@ span.flatpickr-weekday {
|
|
|
15903
16010
|
--checkbox-paragraph-spacing: 0px;
|
|
15904
16011
|
--checkbox-paragraph-indent: 0px
|
|
15905
16012
|
}
|
|
15906
|
-
[data-theme='dark'] [component-variant="checkbox-large-selected"], [data-theme='light'] [component-variant="checkbox-large-selected"] {
|
|
16013
|
+
[data-theme='dark'] [component-variant="checkbox-large-selected-default"], [data-theme='light'] [component-variant="checkbox-large-selected-default"] {
|
|
15907
16014
|
--checkbox-color: var(--text-primary);
|
|
15908
16015
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
15909
16016
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -15914,7 +16021,7 @@ span.flatpickr-weekday {
|
|
|
15914
16021
|
--checkbox-paragraph-spacing: 0px;
|
|
15915
16022
|
--checkbox-paragraph-indent: 0px
|
|
15916
16023
|
}
|
|
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]) {
|
|
16024
|
+
[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
16025
|
--checkbox-color: var(--text-primary);
|
|
15919
16026
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
15920
16027
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -15925,7 +16032,7 @@ span.flatpickr-weekday {
|
|
|
15925
16032
|
--checkbox-paragraph-spacing: 0px;
|
|
15926
16033
|
--checkbox-paragraph-indent: 0px
|
|
15927
16034
|
}
|
|
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]) {
|
|
16035
|
+
[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
16036
|
--checkbox-color: var(--text-primary);
|
|
15930
16037
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
15931
16038
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -15936,7 +16043,7 @@ span.flatpickr-weekday {
|
|
|
15936
16043
|
--checkbox-paragraph-spacing: 0px;
|
|
15937
16044
|
--checkbox-paragraph-indent: 0px
|
|
15938
16045
|
}
|
|
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]) {
|
|
16046
|
+
[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
16047
|
--checkbox-color: var(--text-primary);
|
|
15941
16048
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
15942
16049
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -15947,7 +16054,7 @@ span.flatpickr-weekday {
|
|
|
15947
16054
|
--checkbox-paragraph-spacing: 0px;
|
|
15948
16055
|
--checkbox-paragraph-indent: 0px
|
|
15949
16056
|
}
|
|
15950
|
-
[data-theme='dark'] [component-variant="checkbox-
|
|
16057
|
+
[data-theme='dark'] [component-variant="checkbox-large-selected-inverse"], [data-theme='light'] [component-variant="checkbox-large-selected-inverse"] {
|
|
15951
16058
|
--checkbox-color: var(--text-primary);
|
|
15952
16059
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
15953
16060
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -15958,7 +16065,7 @@ span.flatpickr-weekday {
|
|
|
15958
16065
|
--checkbox-paragraph-spacing: 0px;
|
|
15959
16066
|
--checkbox-paragraph-indent: 0px
|
|
15960
16067
|
}
|
|
15961
|
-
[data-theme='dark'] [component-variant="checkbox-
|
|
16068
|
+
[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
16069
|
--checkbox-color: var(--text-primary);
|
|
15963
16070
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
15964
16071
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -15969,7 +16076,7 @@ span.flatpickr-weekday {
|
|
|
15969
16076
|
--checkbox-paragraph-spacing: 0px;
|
|
15970
16077
|
--checkbox-paragraph-indent: 0px
|
|
15971
16078
|
}
|
|
15972
|
-
[data-theme='dark'] [component-variant="checkbox-
|
|
16079
|
+
[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
16080
|
--checkbox-color: var(--text-primary);
|
|
15974
16081
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
15975
16082
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -15980,7 +16087,7 @@ span.flatpickr-weekday {
|
|
|
15980
16087
|
--checkbox-paragraph-spacing: 0px;
|
|
15981
16088
|
--checkbox-paragraph-indent: 0px
|
|
15982
16089
|
}
|
|
15983
|
-
[data-theme='dark'] [component-variant="checkbox-
|
|
16090
|
+
[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
16091
|
--checkbox-color: var(--text-primary);
|
|
15985
16092
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
15986
16093
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -15991,7 +16098,7 @@ span.flatpickr-weekday {
|
|
|
15991
16098
|
--checkbox-paragraph-spacing: 0px;
|
|
15992
16099
|
--checkbox-paragraph-indent: 0px
|
|
15993
16100
|
}
|
|
15994
|
-
[data-theme='dark'] [component-variant="checkbox-medium-
|
|
16101
|
+
[data-theme='dark'] [component-variant="checkbox-medium-unselected-default"], [data-theme='light'] [component-variant="checkbox-medium-unselected-default"] {
|
|
15995
16102
|
--checkbox-color: var(--text-primary);
|
|
15996
16103
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
15997
16104
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -16002,7 +16109,7 @@ span.flatpickr-weekday {
|
|
|
16002
16109
|
--checkbox-paragraph-spacing: 0px;
|
|
16003
16110
|
--checkbox-paragraph-indent: 0px
|
|
16004
16111
|
}
|
|
16005
|
-
[data-theme='dark'] [component-variant="checkbox-medium-
|
|
16112
|
+
[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
16113
|
--checkbox-color: var(--text-primary);
|
|
16007
16114
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
16008
16115
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -16013,7 +16120,7 @@ span.flatpickr-weekday {
|
|
|
16013
16120
|
--checkbox-paragraph-spacing: 0px;
|
|
16014
16121
|
--checkbox-paragraph-indent: 0px
|
|
16015
16122
|
}
|
|
16016
|
-
[data-theme='dark'] [component-variant="checkbox-medium-
|
|
16123
|
+
[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
16124
|
--checkbox-color: var(--text-primary);
|
|
16018
16125
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
16019
16126
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -16024,7 +16131,7 @@ span.flatpickr-weekday {
|
|
|
16024
16131
|
--checkbox-paragraph-spacing: 0px;
|
|
16025
16132
|
--checkbox-paragraph-indent: 0px
|
|
16026
16133
|
}
|
|
16027
|
-
[data-theme='dark'] [component-variant="checkbox-medium-
|
|
16134
|
+
[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
16135
|
--checkbox-color: var(--text-primary);
|
|
16029
16136
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
16030
16137
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -16035,7 +16142,7 @@ span.flatpickr-weekday {
|
|
|
16035
16142
|
--checkbox-paragraph-spacing: 0px;
|
|
16036
16143
|
--checkbox-paragraph-indent: 0px
|
|
16037
16144
|
}
|
|
16038
|
-
[data-theme='dark'] [component-variant="checkbox-
|
|
16145
|
+
[data-theme='dark'] [component-variant="checkbox-medium-unselected-inverse"], [data-theme='light'] [component-variant="checkbox-medium-unselected-inverse"] {
|
|
16039
16146
|
--checkbox-color: var(--text-primary);
|
|
16040
16147
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
16041
16148
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -16046,7 +16153,7 @@ span.flatpickr-weekday {
|
|
|
16046
16153
|
--checkbox-paragraph-spacing: 0px;
|
|
16047
16154
|
--checkbox-paragraph-indent: 0px
|
|
16048
16155
|
}
|
|
16049
|
-
[data-theme='dark'] [component-variant="checkbox-
|
|
16156
|
+
[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
16157
|
--checkbox-color: var(--text-primary);
|
|
16051
16158
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
16052
16159
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -16057,7 +16164,7 @@ span.flatpickr-weekday {
|
|
|
16057
16164
|
--checkbox-paragraph-spacing: 0px;
|
|
16058
16165
|
--checkbox-paragraph-indent: 0px
|
|
16059
16166
|
}
|
|
16060
|
-
[data-theme='dark'] [component-variant="checkbox-
|
|
16167
|
+
[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
16168
|
--checkbox-color: var(--text-primary);
|
|
16062
16169
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
16063
16170
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -16068,7 +16175,7 @@ span.flatpickr-weekday {
|
|
|
16068
16175
|
--checkbox-paragraph-spacing: 0px;
|
|
16069
16176
|
--checkbox-paragraph-indent: 0px
|
|
16070
16177
|
}
|
|
16071
|
-
[data-theme='dark'] [component-variant="checkbox-
|
|
16178
|
+
[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
16179
|
--checkbox-color: var(--text-primary);
|
|
16073
16180
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
16074
16181
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -16079,7 +16186,7 @@ span.flatpickr-weekday {
|
|
|
16079
16186
|
--checkbox-paragraph-spacing: 0px;
|
|
16080
16187
|
--checkbox-paragraph-indent: 0px
|
|
16081
16188
|
}
|
|
16082
|
-
[data-theme='dark'] [component-variant="checkbox-
|
|
16189
|
+
[data-theme='dark'] [component-variant="checkbox-medium-selected-default"], [data-theme='light'] [component-variant="checkbox-medium-selected-default"] {
|
|
16083
16190
|
--checkbox-color: var(--text-primary);
|
|
16084
16191
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
16085
16192
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -16090,7 +16197,7 @@ span.flatpickr-weekday {
|
|
|
16090
16197
|
--checkbox-paragraph-spacing: 0px;
|
|
16091
16198
|
--checkbox-paragraph-indent: 0px
|
|
16092
16199
|
}
|
|
16093
|
-
[data-theme='dark'] [component-variant="checkbox-
|
|
16200
|
+
[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
16201
|
--checkbox-color: var(--text-primary);
|
|
16095
16202
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
16096
16203
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -16101,7 +16208,7 @@ span.flatpickr-weekday {
|
|
|
16101
16208
|
--checkbox-paragraph-spacing: 0px;
|
|
16102
16209
|
--checkbox-paragraph-indent: 0px
|
|
16103
16210
|
}
|
|
16104
|
-
[data-theme='dark'] [component-variant="checkbox-
|
|
16211
|
+
[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
16212
|
--checkbox-color: var(--text-primary);
|
|
16106
16213
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
16107
16214
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -16112,7 +16219,7 @@ span.flatpickr-weekday {
|
|
|
16112
16219
|
--checkbox-paragraph-spacing: 0px;
|
|
16113
16220
|
--checkbox-paragraph-indent: 0px
|
|
16114
16221
|
}
|
|
16115
|
-
[data-theme='dark'] [component-variant="checkbox-
|
|
16222
|
+
[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
16223
|
--checkbox-color: var(--text-primary);
|
|
16117
16224
|
--checkbox-row-gap: var(--spacing-space-5);
|
|
16118
16225
|
--checkbox-column-gap: var(--spacing-space-5);
|
|
@@ -16123,6 +16230,1918 @@ span.flatpickr-weekday {
|
|
|
16123
16230
|
--checkbox-paragraph-spacing: 0px;
|
|
16124
16231
|
--checkbox-paragraph-indent: 0px
|
|
16125
16232
|
}
|
|
16233
|
+
[data-theme='dark'] [component-variant="checkbox-medium-selected-inverse"], [data-theme='light'] [component-variant="checkbox-medium-selected-inverse"] {
|
|
16234
|
+
--checkbox-color: var(--text-primary);
|
|
16235
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
16236
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
16237
|
+
--checkbox-font-family: var(--font-family-body);
|
|
16238
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
16239
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
16240
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
16241
|
+
--checkbox-paragraph-spacing: 0px;
|
|
16242
|
+
--checkbox-paragraph-indent: 0px
|
|
16243
|
+
}
|
|
16244
|
+
[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]) {
|
|
16245
|
+
--checkbox-color: var(--text-primary);
|
|
16246
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
16247
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
16248
|
+
--checkbox-font-family: var(--font-family-body);
|
|
16249
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
16250
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
16251
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
16252
|
+
--checkbox-paragraph-spacing: 0px;
|
|
16253
|
+
--checkbox-paragraph-indent: 0px
|
|
16254
|
+
}
|
|
16255
|
+
[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]) {
|
|
16256
|
+
--checkbox-color: var(--text-primary);
|
|
16257
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
16258
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
16259
|
+
--checkbox-font-family: var(--font-family-body);
|
|
16260
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
16261
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
16262
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
16263
|
+
--checkbox-paragraph-spacing: 0px;
|
|
16264
|
+
--checkbox-paragraph-indent: 0px
|
|
16265
|
+
}
|
|
16266
|
+
[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]) {
|
|
16267
|
+
--checkbox-color: var(--text-primary);
|
|
16268
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
16269
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
16270
|
+
--checkbox-font-family: var(--font-family-body);
|
|
16271
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
16272
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
16273
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
16274
|
+
--checkbox-paragraph-spacing: 0px;
|
|
16275
|
+
--checkbox-paragraph-indent: 0px
|
|
16276
|
+
}
|
|
16277
|
+
[data-theme='dark'] [component-variant="checkbox-small-unselected-default"], [data-theme='light'] [component-variant="checkbox-small-unselected-default"] {
|
|
16278
|
+
--checkbox-color: var(--text-primary);
|
|
16279
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
16280
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
16281
|
+
--checkbox-font-family: var(--font-family-body);
|
|
16282
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
16283
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
16284
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
16285
|
+
--checkbox-paragraph-spacing: 0px;
|
|
16286
|
+
--checkbox-paragraph-indent: 0px
|
|
16287
|
+
}
|
|
16288
|
+
[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]) {
|
|
16289
|
+
--checkbox-color: var(--text-primary);
|
|
16290
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
16291
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
16292
|
+
--checkbox-font-family: var(--font-family-body);
|
|
16293
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
16294
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
16295
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
16296
|
+
--checkbox-paragraph-spacing: 0px;
|
|
16297
|
+
--checkbox-paragraph-indent: 0px
|
|
16298
|
+
}
|
|
16299
|
+
[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]) {
|
|
16300
|
+
--checkbox-color: var(--text-primary);
|
|
16301
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
16302
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
16303
|
+
--checkbox-font-family: var(--font-family-body);
|
|
16304
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
16305
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
16306
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
16307
|
+
--checkbox-paragraph-spacing: 0px;
|
|
16308
|
+
--checkbox-paragraph-indent: 0px
|
|
16309
|
+
}
|
|
16310
|
+
[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]) {
|
|
16311
|
+
--checkbox-color: var(--text-primary);
|
|
16312
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
16313
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
16314
|
+
--checkbox-font-family: var(--font-family-body);
|
|
16315
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
16316
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
16317
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
16318
|
+
--checkbox-paragraph-spacing: 0px;
|
|
16319
|
+
--checkbox-paragraph-indent: 0px
|
|
16320
|
+
}
|
|
16321
|
+
[data-theme='dark'] [component-variant="checkbox-small-unselected-inverse"], [data-theme='light'] [component-variant="checkbox-small-unselected-inverse"] {
|
|
16322
|
+
--checkbox-color: var(--text-primary);
|
|
16323
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
16324
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
16325
|
+
--checkbox-font-family: var(--font-family-body);
|
|
16326
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
16327
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
16328
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
16329
|
+
--checkbox-paragraph-spacing: 0px;
|
|
16330
|
+
--checkbox-paragraph-indent: 0px
|
|
16331
|
+
}
|
|
16332
|
+
[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]) {
|
|
16333
|
+
--checkbox-color: var(--text-primary);
|
|
16334
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
16335
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
16336
|
+
--checkbox-font-family: var(--font-family-body);
|
|
16337
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
16338
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
16339
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
16340
|
+
--checkbox-paragraph-spacing: 0px;
|
|
16341
|
+
--checkbox-paragraph-indent: 0px
|
|
16342
|
+
}
|
|
16343
|
+
[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]) {
|
|
16344
|
+
--checkbox-color: var(--text-primary);
|
|
16345
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
16346
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
16347
|
+
--checkbox-font-family: var(--font-family-body);
|
|
16348
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
16349
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
16350
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
16351
|
+
--checkbox-paragraph-spacing: 0px;
|
|
16352
|
+
--checkbox-paragraph-indent: 0px
|
|
16353
|
+
}
|
|
16354
|
+
[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]) {
|
|
16355
|
+
--checkbox-color: var(--text-primary);
|
|
16356
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
16357
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
16358
|
+
--checkbox-font-family: var(--font-family-body);
|
|
16359
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
16360
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
16361
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
16362
|
+
--checkbox-paragraph-spacing: 0px;
|
|
16363
|
+
--checkbox-paragraph-indent: 0px
|
|
16364
|
+
}
|
|
16365
|
+
[data-theme='dark'] [component-variant="checkbox-small-selected-default"], [data-theme='light'] [component-variant="checkbox-small-selected-default"] {
|
|
16366
|
+
--checkbox-color: var(--text-primary);
|
|
16367
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
16368
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
16369
|
+
--checkbox-font-family: var(--font-family-body);
|
|
16370
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
16371
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
16372
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
16373
|
+
--checkbox-paragraph-spacing: 0px;
|
|
16374
|
+
--checkbox-paragraph-indent: 0px
|
|
16375
|
+
}
|
|
16376
|
+
[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]) {
|
|
16377
|
+
--checkbox-color: var(--text-primary);
|
|
16378
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
16379
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
16380
|
+
--checkbox-font-family: var(--font-family-body);
|
|
16381
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
16382
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
16383
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
16384
|
+
--checkbox-paragraph-spacing: 0px;
|
|
16385
|
+
--checkbox-paragraph-indent: 0px
|
|
16386
|
+
}
|
|
16387
|
+
[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]) {
|
|
16388
|
+
--checkbox-color: var(--text-primary);
|
|
16389
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
16390
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
16391
|
+
--checkbox-font-family: var(--font-family-body);
|
|
16392
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
16393
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
16394
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
16395
|
+
--checkbox-paragraph-spacing: 0px;
|
|
16396
|
+
--checkbox-paragraph-indent: 0px
|
|
16397
|
+
}
|
|
16398
|
+
[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]) {
|
|
16399
|
+
--checkbox-color: var(--text-primary);
|
|
16400
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
16401
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
16402
|
+
--checkbox-font-family: var(--font-family-body);
|
|
16403
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
16404
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
16405
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
16406
|
+
--checkbox-paragraph-spacing: 0px;
|
|
16407
|
+
--checkbox-paragraph-indent: 0px
|
|
16408
|
+
}
|
|
16409
|
+
[data-theme='dark'] [component-variant="checkbox-small-selected-inverse"], [data-theme='light'] [component-variant="checkbox-small-selected-inverse"] {
|
|
16410
|
+
--checkbox-color: var(--text-primary);
|
|
16411
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
16412
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
16413
|
+
--checkbox-font-family: var(--font-family-body);
|
|
16414
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
16415
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
16416
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
16417
|
+
--checkbox-paragraph-spacing: 0px;
|
|
16418
|
+
--checkbox-paragraph-indent: 0px
|
|
16419
|
+
}
|
|
16420
|
+
[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]) {
|
|
16421
|
+
--checkbox-color: var(--text-primary);
|
|
16422
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
16423
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
16424
|
+
--checkbox-font-family: var(--font-family-body);
|
|
16425
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
16426
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
16427
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
16428
|
+
--checkbox-paragraph-spacing: 0px;
|
|
16429
|
+
--checkbox-paragraph-indent: 0px
|
|
16430
|
+
}
|
|
16431
|
+
[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]) {
|
|
16432
|
+
--checkbox-color: var(--text-primary);
|
|
16433
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
16434
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
16435
|
+
--checkbox-font-family: var(--font-family-body);
|
|
16436
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
16437
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
16438
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
16439
|
+
--checkbox-paragraph-spacing: 0px;
|
|
16440
|
+
--checkbox-paragraph-indent: 0px
|
|
16441
|
+
}
|
|
16442
|
+
[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]) {
|
|
16443
|
+
--checkbox-color: var(--text-primary);
|
|
16444
|
+
--checkbox-row-gap: var(--spacing-space-5);
|
|
16445
|
+
--checkbox-column-gap: var(--spacing-space-5);
|
|
16446
|
+
--checkbox-font-family: var(--font-family-body);
|
|
16447
|
+
--checkbox-font-size: var(--font-size-body-small);
|
|
16448
|
+
--checkbox-font-weight: var(--font-weight-regular);
|
|
16449
|
+
--checkbox-line-height: var(--line-height-body-small);
|
|
16450
|
+
--checkbox-paragraph-spacing: 0px;
|
|
16451
|
+
--checkbox-paragraph-indent: 0px
|
|
16452
|
+
}
|
|
16453
|
+
[data-theme='dark'] [component-variant="checkbox-large-unselected-default"], [data-theme='light'] [component-variant="checkbox-large-unselected-default"] {
|
|
16454
|
+
--checkbox-icon-wrapper-height: 24px;
|
|
16455
|
+
--checkbox-icon-wrapper-width: 24px;
|
|
16456
|
+
--checkbox-icon-wrapper-border-top-left-radius: 2px;
|
|
16457
|
+
--checkbox-icon-wrapper-border-top-right-radius: 2px;
|
|
16458
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 2px;
|
|
16459
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 2px;
|
|
16460
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16461
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16462
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16463
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16464
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16465
|
+
}
|
|
16466
|
+
[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]) {
|
|
16467
|
+
--checkbox-icon-wrapper-height: 24px;
|
|
16468
|
+
--checkbox-icon-wrapper-width: 24px;
|
|
16469
|
+
--checkbox-icon-wrapper-border-top-left-radius: 2px;
|
|
16470
|
+
--checkbox-icon-wrapper-border-top-right-radius: 2px;
|
|
16471
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 2px;
|
|
16472
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 2px;
|
|
16473
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16474
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16475
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16476
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16477
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16478
|
+
}
|
|
16479
|
+
[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]) {
|
|
16480
|
+
--checkbox-icon-wrapper-height: 24px;
|
|
16481
|
+
--checkbox-icon-wrapper-width: 24px;
|
|
16482
|
+
--checkbox-icon-wrapper-border-top-left-radius: 2px;
|
|
16483
|
+
--checkbox-icon-wrapper-border-top-right-radius: 2px;
|
|
16484
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 2px;
|
|
16485
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 2px;
|
|
16486
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16487
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16488
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16489
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16490
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16491
|
+
}
|
|
16492
|
+
[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]) {
|
|
16493
|
+
--checkbox-icon-wrapper-height: 24px;
|
|
16494
|
+
--checkbox-icon-wrapper-width: 24px;
|
|
16495
|
+
--checkbox-icon-wrapper-border-top-left-radius: 2px;
|
|
16496
|
+
--checkbox-icon-wrapper-border-top-right-radius: 2px;
|
|
16497
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 2px;
|
|
16498
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 2px;
|
|
16499
|
+
--checkbox-icon-wrapper-border-color: var(--border-border-grey-1);
|
|
16500
|
+
--checkbox-icon-wrapper-border-top-width: 1px;
|
|
16501
|
+
--checkbox-icon-wrapper-border-right-width: 1px;
|
|
16502
|
+
--checkbox-icon-wrapper-border-bottom-width: 1px;
|
|
16503
|
+
--checkbox-icon-wrapper-border-left-width: 1px;
|
|
16504
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16505
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16506
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16507
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16508
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16509
|
+
}
|
|
16510
|
+
[data-theme='dark'] [component-variant="checkbox-large-unselected-inverse"], [data-theme='light'] [component-variant="checkbox-large-unselected-inverse"] {
|
|
16511
|
+
--checkbox-icon-wrapper-height: 24px;
|
|
16512
|
+
--checkbox-icon-wrapper-width: 24px;
|
|
16513
|
+
--checkbox-icon-wrapper-border-top-left-radius: 2px;
|
|
16514
|
+
--checkbox-icon-wrapper-border-top-right-radius: 2px;
|
|
16515
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 2px;
|
|
16516
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 2px;
|
|
16517
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16518
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16519
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16520
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16521
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16522
|
+
}
|
|
16523
|
+
[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]) {
|
|
16524
|
+
--checkbox-icon-wrapper-height: 24px;
|
|
16525
|
+
--checkbox-icon-wrapper-width: 24px;
|
|
16526
|
+
--checkbox-icon-wrapper-border-top-left-radius: 2px;
|
|
16527
|
+
--checkbox-icon-wrapper-border-top-right-radius: 2px;
|
|
16528
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 2px;
|
|
16529
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 2px;
|
|
16530
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16531
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16532
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16533
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16534
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16535
|
+
}
|
|
16536
|
+
[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]) {
|
|
16537
|
+
--checkbox-icon-wrapper-height: 24px;
|
|
16538
|
+
--checkbox-icon-wrapper-width: 24px;
|
|
16539
|
+
--checkbox-icon-wrapper-border-top-left-radius: 2px;
|
|
16540
|
+
--checkbox-icon-wrapper-border-top-right-radius: 2px;
|
|
16541
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 2px;
|
|
16542
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 2px;
|
|
16543
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16544
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16545
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16546
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16547
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16548
|
+
}
|
|
16549
|
+
[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]) {
|
|
16550
|
+
--checkbox-icon-wrapper-height: 24px;
|
|
16551
|
+
--checkbox-icon-wrapper-width: 24px;
|
|
16552
|
+
--checkbox-icon-wrapper-border-top-left-radius: 2px;
|
|
16553
|
+
--checkbox-icon-wrapper-border-top-right-radius: 2px;
|
|
16554
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 2px;
|
|
16555
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 2px;
|
|
16556
|
+
--checkbox-icon-wrapper-border-color: var(--border-border-grey-1);
|
|
16557
|
+
--checkbox-icon-wrapper-border-top-width: 1px;
|
|
16558
|
+
--checkbox-icon-wrapper-border-right-width: 1px;
|
|
16559
|
+
--checkbox-icon-wrapper-border-bottom-width: 1px;
|
|
16560
|
+
--checkbox-icon-wrapper-border-left-width: 1px;
|
|
16561
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16562
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16563
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16564
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16565
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16566
|
+
}
|
|
16567
|
+
[data-theme='dark'] [component-variant="checkbox-large-selected-default"], [data-theme='light'] [component-variant="checkbox-large-selected-default"] {
|
|
16568
|
+
--checkbox-icon-wrapper-height: 24px;
|
|
16569
|
+
--checkbox-icon-wrapper-width: 24px;
|
|
16570
|
+
--checkbox-icon-wrapper-border-top-left-radius: 2px;
|
|
16571
|
+
--checkbox-icon-wrapper-border-top-right-radius: 2px;
|
|
16572
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 2px;
|
|
16573
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 2px;
|
|
16574
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16575
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16576
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16577
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16578
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16579
|
+
}
|
|
16580
|
+
[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]) {
|
|
16581
|
+
--checkbox-icon-wrapper-height: 24px;
|
|
16582
|
+
--checkbox-icon-wrapper-width: 24px;
|
|
16583
|
+
--checkbox-icon-wrapper-border-top-left-radius: 2px;
|
|
16584
|
+
--checkbox-icon-wrapper-border-top-right-radius: 2px;
|
|
16585
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 2px;
|
|
16586
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 2px;
|
|
16587
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16588
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16589
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16590
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16591
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16592
|
+
}
|
|
16593
|
+
[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]) {
|
|
16594
|
+
--checkbox-icon-wrapper-height: 24px;
|
|
16595
|
+
--checkbox-icon-wrapper-width: 24px;
|
|
16596
|
+
--checkbox-icon-wrapper-border-top-left-radius: 2px;
|
|
16597
|
+
--checkbox-icon-wrapper-border-top-right-radius: 2px;
|
|
16598
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 2px;
|
|
16599
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 2px;
|
|
16600
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16601
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16602
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16603
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16604
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16605
|
+
}
|
|
16606
|
+
[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]) {
|
|
16607
|
+
--checkbox-icon-wrapper-height: 24px;
|
|
16608
|
+
--checkbox-icon-wrapper-width: 24px;
|
|
16609
|
+
--checkbox-icon-wrapper-border-top-left-radius: 2px;
|
|
16610
|
+
--checkbox-icon-wrapper-border-top-right-radius: 2px;
|
|
16611
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 2px;
|
|
16612
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 2px;
|
|
16613
|
+
--checkbox-icon-wrapper-border-color: var(--border-border-grey-1);
|
|
16614
|
+
--checkbox-icon-wrapper-border-top-width: 1px;
|
|
16615
|
+
--checkbox-icon-wrapper-border-right-width: 1px;
|
|
16616
|
+
--checkbox-icon-wrapper-border-bottom-width: 1px;
|
|
16617
|
+
--checkbox-icon-wrapper-border-left-width: 1px;
|
|
16618
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16619
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16620
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16621
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16622
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16623
|
+
}
|
|
16624
|
+
[data-theme='dark'] [component-variant="checkbox-large-selected-inverse"], [data-theme='light'] [component-variant="checkbox-large-selected-inverse"] {
|
|
16625
|
+
--checkbox-icon-wrapper-height: 24px;
|
|
16626
|
+
--checkbox-icon-wrapper-width: 24px;
|
|
16627
|
+
--checkbox-icon-wrapper-border-top-left-radius: 2px;
|
|
16628
|
+
--checkbox-icon-wrapper-border-top-right-radius: 2px;
|
|
16629
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 2px;
|
|
16630
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 2px;
|
|
16631
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16632
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16633
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16634
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16635
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16636
|
+
}
|
|
16637
|
+
[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]) {
|
|
16638
|
+
--checkbox-icon-wrapper-height: 24px;
|
|
16639
|
+
--checkbox-icon-wrapper-width: 24px;
|
|
16640
|
+
--checkbox-icon-wrapper-border-top-left-radius: 2px;
|
|
16641
|
+
--checkbox-icon-wrapper-border-top-right-radius: 2px;
|
|
16642
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 2px;
|
|
16643
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 2px;
|
|
16644
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16645
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16646
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16647
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16648
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16649
|
+
}
|
|
16650
|
+
[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]) {
|
|
16651
|
+
--checkbox-icon-wrapper-height: 24px;
|
|
16652
|
+
--checkbox-icon-wrapper-width: 24px;
|
|
16653
|
+
--checkbox-icon-wrapper-border-top-left-radius: 2px;
|
|
16654
|
+
--checkbox-icon-wrapper-border-top-right-radius: 2px;
|
|
16655
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 2px;
|
|
16656
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 2px;
|
|
16657
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16658
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16659
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16660
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16661
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16662
|
+
}
|
|
16663
|
+
[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]) {
|
|
16664
|
+
--checkbox-icon-wrapper-height: 24px;
|
|
16665
|
+
--checkbox-icon-wrapper-width: 24px;
|
|
16666
|
+
--checkbox-icon-wrapper-border-top-left-radius: 2px;
|
|
16667
|
+
--checkbox-icon-wrapper-border-top-right-radius: 2px;
|
|
16668
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 2px;
|
|
16669
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 2px;
|
|
16670
|
+
--checkbox-icon-wrapper-border-color: var(--border-border-grey-1);
|
|
16671
|
+
--checkbox-icon-wrapper-border-top-width: 1px;
|
|
16672
|
+
--checkbox-icon-wrapper-border-right-width: 1px;
|
|
16673
|
+
--checkbox-icon-wrapper-border-bottom-width: 1px;
|
|
16674
|
+
--checkbox-icon-wrapper-border-left-width: 1px;
|
|
16675
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16676
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16677
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16678
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16679
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16680
|
+
}
|
|
16681
|
+
[data-theme='dark'] [component-variant="checkbox-medium-unselected-default"], [data-theme='light'] [component-variant="checkbox-medium-unselected-default"] {
|
|
16682
|
+
--checkbox-icon-wrapper-height: 20px;
|
|
16683
|
+
--checkbox-icon-wrapper-width: 20px;
|
|
16684
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.6666666269302368px;
|
|
16685
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.6666666269302368px;
|
|
16686
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.6666666269302368px;
|
|
16687
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.6666666269302368px;
|
|
16688
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16689
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16690
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16691
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16692
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16693
|
+
}
|
|
16694
|
+
[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]) {
|
|
16695
|
+
--checkbox-icon-wrapper-height: 20px;
|
|
16696
|
+
--checkbox-icon-wrapper-width: 20px;
|
|
16697
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.6666666269302368px;
|
|
16698
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.6666666269302368px;
|
|
16699
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.6666666269302368px;
|
|
16700
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.6666666269302368px;
|
|
16701
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16702
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16703
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16704
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16705
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16706
|
+
}
|
|
16707
|
+
[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]) {
|
|
16708
|
+
--checkbox-icon-wrapper-height: 20px;
|
|
16709
|
+
--checkbox-icon-wrapper-width: 20px;
|
|
16710
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.6666666269302368px;
|
|
16711
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.6666666269302368px;
|
|
16712
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.6666666269302368px;
|
|
16713
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.6666666269302368px;
|
|
16714
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16715
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16716
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16717
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16718
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16719
|
+
}
|
|
16720
|
+
[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]) {
|
|
16721
|
+
--checkbox-icon-wrapper-height: 20px;
|
|
16722
|
+
--checkbox-icon-wrapper-width: 20px;
|
|
16723
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.6666666269302368px;
|
|
16724
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.6666666269302368px;
|
|
16725
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.6666666269302368px;
|
|
16726
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.6666666269302368px;
|
|
16727
|
+
--checkbox-icon-wrapper-border-color: var(--border-border-grey-1);
|
|
16728
|
+
--checkbox-icon-wrapper-border-top-width: 0.8333333134651184px;
|
|
16729
|
+
--checkbox-icon-wrapper-border-right-width: 0.8333333134651184px;
|
|
16730
|
+
--checkbox-icon-wrapper-border-bottom-width: 0.8333333134651184px;
|
|
16731
|
+
--checkbox-icon-wrapper-border-left-width: 0.8333333134651184px;
|
|
16732
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16733
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16734
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16735
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16736
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16737
|
+
}
|
|
16738
|
+
[data-theme='dark'] [component-variant="checkbox-medium-unselected-inverse"], [data-theme='light'] [component-variant="checkbox-medium-unselected-inverse"] {
|
|
16739
|
+
--checkbox-icon-wrapper-height: 20px;
|
|
16740
|
+
--checkbox-icon-wrapper-width: 20px;
|
|
16741
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.6666666269302368px;
|
|
16742
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.6666666269302368px;
|
|
16743
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.6666666269302368px;
|
|
16744
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.6666666269302368px;
|
|
16745
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16746
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16747
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16748
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16749
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16750
|
+
}
|
|
16751
|
+
[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]) {
|
|
16752
|
+
--checkbox-icon-wrapper-height: 20px;
|
|
16753
|
+
--checkbox-icon-wrapper-width: 20px;
|
|
16754
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.6666666269302368px;
|
|
16755
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.6666666269302368px;
|
|
16756
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.6666666269302368px;
|
|
16757
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.6666666269302368px;
|
|
16758
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16759
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16760
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16761
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16762
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16763
|
+
}
|
|
16764
|
+
[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]) {
|
|
16765
|
+
--checkbox-icon-wrapper-height: 20px;
|
|
16766
|
+
--checkbox-icon-wrapper-width: 20px;
|
|
16767
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.6666666269302368px;
|
|
16768
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.6666666269302368px;
|
|
16769
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.6666666269302368px;
|
|
16770
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.6666666269302368px;
|
|
16771
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16772
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16773
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16774
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16775
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16776
|
+
}
|
|
16777
|
+
[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]) {
|
|
16778
|
+
--checkbox-icon-wrapper-height: 20px;
|
|
16779
|
+
--checkbox-icon-wrapper-width: 20px;
|
|
16780
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.6666666269302368px;
|
|
16781
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.6666666269302368px;
|
|
16782
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.6666666269302368px;
|
|
16783
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.6666666269302368px;
|
|
16784
|
+
--checkbox-icon-wrapper-border-color: var(--border-border-grey-1);
|
|
16785
|
+
--checkbox-icon-wrapper-border-top-width: 0.8333333134651184px;
|
|
16786
|
+
--checkbox-icon-wrapper-border-right-width: 0.8333333134651184px;
|
|
16787
|
+
--checkbox-icon-wrapper-border-bottom-width: 0.8333333134651184px;
|
|
16788
|
+
--checkbox-icon-wrapper-border-left-width: 0.8333333134651184px;
|
|
16789
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16790
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16791
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16792
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16793
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16794
|
+
}
|
|
16795
|
+
[data-theme='dark'] [component-variant="checkbox-medium-selected-default"], [data-theme='light'] [component-variant="checkbox-medium-selected-default"] {
|
|
16796
|
+
--checkbox-icon-wrapper-height: 20px;
|
|
16797
|
+
--checkbox-icon-wrapper-width: 20px;
|
|
16798
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.6666666269302368px;
|
|
16799
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.6666666269302368px;
|
|
16800
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.6666666269302368px;
|
|
16801
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.6666666269302368px;
|
|
16802
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16803
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16804
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16805
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16806
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16807
|
+
}
|
|
16808
|
+
[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]) {
|
|
16809
|
+
--checkbox-icon-wrapper-height: 20px;
|
|
16810
|
+
--checkbox-icon-wrapper-width: 20px;
|
|
16811
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.6666666269302368px;
|
|
16812
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.6666666269302368px;
|
|
16813
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.6666666269302368px;
|
|
16814
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.6666666269302368px;
|
|
16815
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16816
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16817
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16818
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16819
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16820
|
+
}
|
|
16821
|
+
[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]) {
|
|
16822
|
+
--checkbox-icon-wrapper-height: 20px;
|
|
16823
|
+
--checkbox-icon-wrapper-width: 20px;
|
|
16824
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.6666666269302368px;
|
|
16825
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.6666666269302368px;
|
|
16826
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.6666666269302368px;
|
|
16827
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.6666666269302368px;
|
|
16828
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16829
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16830
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16831
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16832
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16833
|
+
}
|
|
16834
|
+
[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]) {
|
|
16835
|
+
--checkbox-icon-wrapper-height: 20px;
|
|
16836
|
+
--checkbox-icon-wrapper-width: 20px;
|
|
16837
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.6666666269302368px;
|
|
16838
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.6666666269302368px;
|
|
16839
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.6666666269302368px;
|
|
16840
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.6666666269302368px;
|
|
16841
|
+
--checkbox-icon-wrapper-border-color: var(--border-border-grey-1);
|
|
16842
|
+
--checkbox-icon-wrapper-border-top-width: 0.8333333134651184px;
|
|
16843
|
+
--checkbox-icon-wrapper-border-right-width: 0.8333333134651184px;
|
|
16844
|
+
--checkbox-icon-wrapper-border-bottom-width: 0.8333333134651184px;
|
|
16845
|
+
--checkbox-icon-wrapper-border-left-width: 0.8333333134651184px;
|
|
16846
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16847
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16848
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16849
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16850
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16851
|
+
}
|
|
16852
|
+
[data-theme='dark'] [component-variant="checkbox-medium-selected-inverse"], [data-theme='light'] [component-variant="checkbox-medium-selected-inverse"] {
|
|
16853
|
+
--checkbox-icon-wrapper-height: 20px;
|
|
16854
|
+
--checkbox-icon-wrapper-width: 20px;
|
|
16855
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.6666666269302368px;
|
|
16856
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.6666666269302368px;
|
|
16857
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.6666666269302368px;
|
|
16858
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.6666666269302368px;
|
|
16859
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16860
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16861
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16862
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16863
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16864
|
+
}
|
|
16865
|
+
[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]) {
|
|
16866
|
+
--checkbox-icon-wrapper-height: 20px;
|
|
16867
|
+
--checkbox-icon-wrapper-width: 20px;
|
|
16868
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.6666666269302368px;
|
|
16869
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.6666666269302368px;
|
|
16870
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.6666666269302368px;
|
|
16871
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.6666666269302368px;
|
|
16872
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16873
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16874
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16875
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16876
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16877
|
+
}
|
|
16878
|
+
[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]) {
|
|
16879
|
+
--checkbox-icon-wrapper-height: 20px;
|
|
16880
|
+
--checkbox-icon-wrapper-width: 20px;
|
|
16881
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.6666666269302368px;
|
|
16882
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.6666666269302368px;
|
|
16883
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.6666666269302368px;
|
|
16884
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.6666666269302368px;
|
|
16885
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16886
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16887
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16888
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16889
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16890
|
+
}
|
|
16891
|
+
[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]) {
|
|
16892
|
+
--checkbox-icon-wrapper-height: 20px;
|
|
16893
|
+
--checkbox-icon-wrapper-width: 20px;
|
|
16894
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.6666666269302368px;
|
|
16895
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.6666666269302368px;
|
|
16896
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.6666666269302368px;
|
|
16897
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.6666666269302368px;
|
|
16898
|
+
--checkbox-icon-wrapper-border-color: var(--border-border-grey-1);
|
|
16899
|
+
--checkbox-icon-wrapper-border-top-width: 1px;
|
|
16900
|
+
--checkbox-icon-wrapper-border-right-width: 1px;
|
|
16901
|
+
--checkbox-icon-wrapper-border-bottom-width: 1px;
|
|
16902
|
+
--checkbox-icon-wrapper-border-left-width: 1px;
|
|
16903
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16904
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16905
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16906
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16907
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16908
|
+
}
|
|
16909
|
+
[data-theme='dark'] [component-variant="checkbox-small-unselected-default"], [data-theme='light'] [component-variant="checkbox-small-unselected-default"] {
|
|
16910
|
+
--checkbox-icon-wrapper-height: 16px;
|
|
16911
|
+
--checkbox-icon-wrapper-width: 16px;
|
|
16912
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.3333333730697632px;
|
|
16913
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.3333333730697632px;
|
|
16914
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.3333333730697632px;
|
|
16915
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.3333333730697632px;
|
|
16916
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16917
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16918
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16919
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16920
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16921
|
+
}
|
|
16922
|
+
[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]) {
|
|
16923
|
+
--checkbox-icon-wrapper-height: 16px;
|
|
16924
|
+
--checkbox-icon-wrapper-width: 16px;
|
|
16925
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.3333333730697632px;
|
|
16926
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.3333333730697632px;
|
|
16927
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.3333333730697632px;
|
|
16928
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.3333333730697632px;
|
|
16929
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16930
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16931
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16932
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16933
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16934
|
+
}
|
|
16935
|
+
[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]) {
|
|
16936
|
+
--checkbox-icon-wrapper-height: 16px;
|
|
16937
|
+
--checkbox-icon-wrapper-width: 16px;
|
|
16938
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.3333333730697632px;
|
|
16939
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.3333333730697632px;
|
|
16940
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.3333333730697632px;
|
|
16941
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.3333333730697632px;
|
|
16942
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16943
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16944
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16945
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16946
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16947
|
+
}
|
|
16948
|
+
[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]) {
|
|
16949
|
+
--checkbox-icon-wrapper-height: 16px;
|
|
16950
|
+
--checkbox-icon-wrapper-width: 16px;
|
|
16951
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.3333333730697632px;
|
|
16952
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.3333333730697632px;
|
|
16953
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.3333333730697632px;
|
|
16954
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.3333333730697632px;
|
|
16955
|
+
--checkbox-icon-wrapper-border-color: var(--border-border-grey-1);
|
|
16956
|
+
--checkbox-icon-wrapper-border-top-width: 0.6666666865348816px;
|
|
16957
|
+
--checkbox-icon-wrapper-border-right-width: 0.6666666865348816px;
|
|
16958
|
+
--checkbox-icon-wrapper-border-bottom-width: 0.6666666865348816px;
|
|
16959
|
+
--checkbox-icon-wrapper-border-left-width: 0.6666666865348816px;
|
|
16960
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16961
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16962
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16963
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16964
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16965
|
+
}
|
|
16966
|
+
[data-theme='dark'] [component-variant="checkbox-small-unselected-inverse"], [data-theme='light'] [component-variant="checkbox-small-unselected-inverse"] {
|
|
16967
|
+
--checkbox-icon-wrapper-height: 16px;
|
|
16968
|
+
--checkbox-icon-wrapper-width: 16px;
|
|
16969
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.3333333730697632px;
|
|
16970
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.3333333730697632px;
|
|
16971
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.3333333730697632px;
|
|
16972
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.3333333730697632px;
|
|
16973
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16974
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16975
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16976
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16977
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16978
|
+
}
|
|
16979
|
+
[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]) {
|
|
16980
|
+
--checkbox-icon-wrapper-height: 16px;
|
|
16981
|
+
--checkbox-icon-wrapper-width: 16px;
|
|
16982
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.3333333730697632px;
|
|
16983
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.3333333730697632px;
|
|
16984
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.3333333730697632px;
|
|
16985
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.3333333730697632px;
|
|
16986
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
16987
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
16988
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
16989
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
16990
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
16991
|
+
}
|
|
16992
|
+
[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]) {
|
|
16993
|
+
--checkbox-icon-wrapper-height: 16px;
|
|
16994
|
+
--checkbox-icon-wrapper-width: 16px;
|
|
16995
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.3333333730697632px;
|
|
16996
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.3333333730697632px;
|
|
16997
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.3333333730697632px;
|
|
16998
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.3333333730697632px;
|
|
16999
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
17000
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
17001
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
17002
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
17003
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
17004
|
+
}
|
|
17005
|
+
[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]) {
|
|
17006
|
+
--checkbox-icon-wrapper-height: 16px;
|
|
17007
|
+
--checkbox-icon-wrapper-width: 16px;
|
|
17008
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.3333333730697632px;
|
|
17009
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.3333333730697632px;
|
|
17010
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.3333333730697632px;
|
|
17011
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.3333333730697632px;
|
|
17012
|
+
--checkbox-icon-wrapper-border-color: var(--border-border-grey-1);
|
|
17013
|
+
--checkbox-icon-wrapper-border-top-width: 0.6666666865348816px;
|
|
17014
|
+
--checkbox-icon-wrapper-border-right-width: 0.6666666865348816px;
|
|
17015
|
+
--checkbox-icon-wrapper-border-bottom-width: 0.6666666865348816px;
|
|
17016
|
+
--checkbox-icon-wrapper-border-left-width: 0.6666666865348816px;
|
|
17017
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
17018
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
17019
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
17020
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
17021
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
17022
|
+
}
|
|
17023
|
+
[data-theme='dark'] [component-variant="checkbox-small-selected-default"], [data-theme='light'] [component-variant="checkbox-small-selected-default"] {
|
|
17024
|
+
--checkbox-icon-wrapper-height: 16px;
|
|
17025
|
+
--checkbox-icon-wrapper-width: 16px;
|
|
17026
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.3333333730697632px;
|
|
17027
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.3333333730697632px;
|
|
17028
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.3333333730697632px;
|
|
17029
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.3333333730697632px;
|
|
17030
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
17031
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
17032
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
17033
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
17034
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
17035
|
+
}
|
|
17036
|
+
[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]) {
|
|
17037
|
+
--checkbox-icon-wrapper-height: 16px;
|
|
17038
|
+
--checkbox-icon-wrapper-width: 16px;
|
|
17039
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.3333333730697632px;
|
|
17040
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.3333333730697632px;
|
|
17041
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.3333333730697632px;
|
|
17042
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.3333333730697632px;
|
|
17043
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
17044
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
17045
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
17046
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
17047
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
17048
|
+
}
|
|
17049
|
+
[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]) {
|
|
17050
|
+
--checkbox-icon-wrapper-height: 16px;
|
|
17051
|
+
--checkbox-icon-wrapper-width: 16px;
|
|
17052
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.3333333730697632px;
|
|
17053
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.3333333730697632px;
|
|
17054
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.3333333730697632px;
|
|
17055
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.3333333730697632px;
|
|
17056
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
17057
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
17058
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
17059
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
17060
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
17061
|
+
}
|
|
17062
|
+
[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]) {
|
|
17063
|
+
--checkbox-icon-wrapper-height: 16px;
|
|
17064
|
+
--checkbox-icon-wrapper-width: 16px;
|
|
17065
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.3333333730697632px;
|
|
17066
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.3333333730697632px;
|
|
17067
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.3333333730697632px;
|
|
17068
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.3333333730697632px;
|
|
17069
|
+
--checkbox-icon-wrapper-border-color: var(--border-border-grey-1);
|
|
17070
|
+
--checkbox-icon-wrapper-border-top-width: 0.6666666865348816px;
|
|
17071
|
+
--checkbox-icon-wrapper-border-right-width: 0.6666666865348816px;
|
|
17072
|
+
--checkbox-icon-wrapper-border-bottom-width: 0.6666666865348816px;
|
|
17073
|
+
--checkbox-icon-wrapper-border-left-width: 0.6666666865348816px;
|
|
17074
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
17075
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
17076
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
17077
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
17078
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
17079
|
+
}
|
|
17080
|
+
[data-theme='dark'] [component-variant="checkbox-small-selected-inverse"], [data-theme='light'] [component-variant="checkbox-small-selected-inverse"] {
|
|
17081
|
+
--checkbox-icon-wrapper-height: 16px;
|
|
17082
|
+
--checkbox-icon-wrapper-width: 16px;
|
|
17083
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.3333333730697632px;
|
|
17084
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.3333333730697632px;
|
|
17085
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.3333333730697632px;
|
|
17086
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.3333333730697632px;
|
|
17087
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
17088
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
17089
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
17090
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
17091
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
17092
|
+
}
|
|
17093
|
+
[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]) {
|
|
17094
|
+
--checkbox-icon-wrapper-height: 16px;
|
|
17095
|
+
--checkbox-icon-wrapper-width: 16px;
|
|
17096
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.3333333730697632px;
|
|
17097
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.3333333730697632px;
|
|
17098
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.3333333730697632px;
|
|
17099
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.3333333730697632px;
|
|
17100
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
17101
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
17102
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
17103
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
17104
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
17105
|
+
}
|
|
17106
|
+
[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]) {
|
|
17107
|
+
--checkbox-icon-wrapper-height: 16px;
|
|
17108
|
+
--checkbox-icon-wrapper-width: 16px;
|
|
17109
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.3333333730697632px;
|
|
17110
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.3333333730697632px;
|
|
17111
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.3333333730697632px;
|
|
17112
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.3333333730697632px;
|
|
17113
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
17114
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
17115
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
17116
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
17117
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
17118
|
+
}
|
|
17119
|
+
[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]) {
|
|
17120
|
+
--checkbox-icon-wrapper-height: 16px;
|
|
17121
|
+
--checkbox-icon-wrapper-width: 16px;
|
|
17122
|
+
--checkbox-icon-wrapper-border-top-left-radius: 1.3333333730697632px;
|
|
17123
|
+
--checkbox-icon-wrapper-border-top-right-radius: 1.3333333730697632px;
|
|
17124
|
+
--checkbox-icon-wrapper-border-bottom-left-radius: 1.3333333730697632px;
|
|
17125
|
+
--checkbox-icon-wrapper-border-bottom-right-radius: 1.3333333730697632px;
|
|
17126
|
+
--checkbox-icon-wrapper-border-color: var(--border-border-grey-1);
|
|
17127
|
+
--checkbox-icon-wrapper-border-top-width: 1px;
|
|
17128
|
+
--checkbox-icon-wrapper-border-right-width: 1px;
|
|
17129
|
+
--checkbox-icon-wrapper-border-bottom-width: 1px;
|
|
17130
|
+
--checkbox-icon-wrapper-border-left-width: 1px;
|
|
17131
|
+
--checkbox-icon-wrapper-font-family: sans-sarif;
|
|
17132
|
+
--checkbox-icon-wrapper-font-size: initial;
|
|
17133
|
+
--checkbox-icon-wrapper-font-weight: regular;
|
|
17134
|
+
--checkbox-icon-wrapper-paragraph-spacing: 0px;
|
|
17135
|
+
--checkbox-icon-wrapper-paragraph-indent: 0px
|
|
17136
|
+
}
|
|
17137
|
+
[data-theme='dark'] [component-variant="checkbox-large-unselected-default"], [data-theme='light'] [component-variant="checkbox-large-unselected-default"] {
|
|
17138
|
+
--checkbox-icon-container-height: 18px;
|
|
17139
|
+
--checkbox-icon-container-width: 18px;
|
|
17140
|
+
--checkbox-icon-container-border-top-left-radius: 2px;
|
|
17141
|
+
--checkbox-icon-container-border-top-right-radius: 2px;
|
|
17142
|
+
--checkbox-icon-container-border-bottom-left-radius: 2px;
|
|
17143
|
+
--checkbox-icon-container-border-bottom-right-radius: 2px;
|
|
17144
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17145
|
+
--checkbox-icon-container-border-top-width: 2px;
|
|
17146
|
+
--checkbox-icon-container-border-right-width: 2px;
|
|
17147
|
+
--checkbox-icon-container-border-bottom-width: 2px;
|
|
17148
|
+
--checkbox-icon-container-border-left-width: 2px;
|
|
17149
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17150
|
+
--checkbox-icon-container-font-size: initial;
|
|
17151
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17152
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17153
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17154
|
+
}
|
|
17155
|
+
[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]) {
|
|
17156
|
+
--checkbox-icon-container-height: 18px;
|
|
17157
|
+
--checkbox-icon-container-width: 18px;
|
|
17158
|
+
--checkbox-icon-container-border-top-left-radius: 2px;
|
|
17159
|
+
--checkbox-icon-container-border-top-right-radius: 2px;
|
|
17160
|
+
--checkbox-icon-container-border-bottom-left-radius: 2px;
|
|
17161
|
+
--checkbox-icon-container-border-bottom-right-radius: 2px;
|
|
17162
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17163
|
+
--checkbox-icon-container-border-top-width: 2px;
|
|
17164
|
+
--checkbox-icon-container-border-right-width: 2px;
|
|
17165
|
+
--checkbox-icon-container-border-bottom-width: 2px;
|
|
17166
|
+
--checkbox-icon-container-border-left-width: 2px;
|
|
17167
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17168
|
+
--checkbox-icon-container-font-size: initial;
|
|
17169
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17170
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17171
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17172
|
+
}
|
|
17173
|
+
[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]) {
|
|
17174
|
+
--checkbox-icon-container-height: 18px;
|
|
17175
|
+
--checkbox-icon-container-width: 18px;
|
|
17176
|
+
--checkbox-icon-container-border-top-left-radius: 2px;
|
|
17177
|
+
--checkbox-icon-container-border-top-right-radius: 2px;
|
|
17178
|
+
--checkbox-icon-container-border-bottom-left-radius: 2px;
|
|
17179
|
+
--checkbox-icon-container-border-bottom-right-radius: 2px;
|
|
17180
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17181
|
+
--checkbox-icon-container-border-top-width: 2px;
|
|
17182
|
+
--checkbox-icon-container-border-right-width: 2px;
|
|
17183
|
+
--checkbox-icon-container-border-bottom-width: 2px;
|
|
17184
|
+
--checkbox-icon-container-border-left-width: 2px;
|
|
17185
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17186
|
+
--checkbox-icon-container-font-size: initial;
|
|
17187
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17188
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17189
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17190
|
+
}
|
|
17191
|
+
[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]) {
|
|
17192
|
+
--checkbox-icon-container-height: 18px;
|
|
17193
|
+
--checkbox-icon-container-width: 18px;
|
|
17194
|
+
--checkbox-icon-container-border-top-left-radius: 2px;
|
|
17195
|
+
--checkbox-icon-container-border-top-right-radius: 2px;
|
|
17196
|
+
--checkbox-icon-container-border-bottom-left-radius: 2px;
|
|
17197
|
+
--checkbox-icon-container-border-bottom-right-radius: 2px;
|
|
17198
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17199
|
+
--checkbox-icon-container-border-top-width: 2px;
|
|
17200
|
+
--checkbox-icon-container-border-right-width: 2px;
|
|
17201
|
+
--checkbox-icon-container-border-bottom-width: 2px;
|
|
17202
|
+
--checkbox-icon-container-border-left-width: 2px;
|
|
17203
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17204
|
+
--checkbox-icon-container-font-size: initial;
|
|
17205
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17206
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17207
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17208
|
+
}
|
|
17209
|
+
[data-theme='dark'] [component-variant="checkbox-large-unselected-inverse"], [data-theme='light'] [component-variant="checkbox-large-unselected-inverse"] {
|
|
17210
|
+
--checkbox-icon-container-height: 18px;
|
|
17211
|
+
--checkbox-icon-container-width: 18px;
|
|
17212
|
+
--checkbox-icon-container-border-top-left-radius: 2px;
|
|
17213
|
+
--checkbox-icon-container-border-top-right-radius: 2px;
|
|
17214
|
+
--checkbox-icon-container-border-bottom-left-radius: 2px;
|
|
17215
|
+
--checkbox-icon-container-border-bottom-right-radius: 2px;
|
|
17216
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17217
|
+
--checkbox-icon-container-border-top-width: 2px;
|
|
17218
|
+
--checkbox-icon-container-border-right-width: 2px;
|
|
17219
|
+
--checkbox-icon-container-border-bottom-width: 2px;
|
|
17220
|
+
--checkbox-icon-container-border-left-width: 2px;
|
|
17221
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17222
|
+
--checkbox-icon-container-font-size: initial;
|
|
17223
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17224
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17225
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17226
|
+
}
|
|
17227
|
+
[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]) {
|
|
17228
|
+
--checkbox-icon-container-height: 18px;
|
|
17229
|
+
--checkbox-icon-container-width: 18px;
|
|
17230
|
+
--checkbox-icon-container-border-top-left-radius: 2px;
|
|
17231
|
+
--checkbox-icon-container-border-top-right-radius: 2px;
|
|
17232
|
+
--checkbox-icon-container-border-bottom-left-radius: 2px;
|
|
17233
|
+
--checkbox-icon-container-border-bottom-right-radius: 2px;
|
|
17234
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17235
|
+
--checkbox-icon-container-border-top-width: 2px;
|
|
17236
|
+
--checkbox-icon-container-border-right-width: 2px;
|
|
17237
|
+
--checkbox-icon-container-border-bottom-width: 2px;
|
|
17238
|
+
--checkbox-icon-container-border-left-width: 2px;
|
|
17239
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17240
|
+
--checkbox-icon-container-font-size: initial;
|
|
17241
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17242
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17243
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17244
|
+
}
|
|
17245
|
+
[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]) {
|
|
17246
|
+
--checkbox-icon-container-height: 18px;
|
|
17247
|
+
--checkbox-icon-container-width: 18px;
|
|
17248
|
+
--checkbox-icon-container-border-top-left-radius: 2px;
|
|
17249
|
+
--checkbox-icon-container-border-top-right-radius: 2px;
|
|
17250
|
+
--checkbox-icon-container-border-bottom-left-radius: 2px;
|
|
17251
|
+
--checkbox-icon-container-border-bottom-right-radius: 2px;
|
|
17252
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17253
|
+
--checkbox-icon-container-border-top-width: 2px;
|
|
17254
|
+
--checkbox-icon-container-border-right-width: 2px;
|
|
17255
|
+
--checkbox-icon-container-border-bottom-width: 2px;
|
|
17256
|
+
--checkbox-icon-container-border-left-width: 2px;
|
|
17257
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17258
|
+
--checkbox-icon-container-font-size: initial;
|
|
17259
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17260
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17261
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17262
|
+
}
|
|
17263
|
+
[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]) {
|
|
17264
|
+
--checkbox-icon-container-height: 18px;
|
|
17265
|
+
--checkbox-icon-container-width: 18px;
|
|
17266
|
+
--checkbox-icon-container-border-top-left-radius: 2px;
|
|
17267
|
+
--checkbox-icon-container-border-top-right-radius: 2px;
|
|
17268
|
+
--checkbox-icon-container-border-bottom-left-radius: 2px;
|
|
17269
|
+
--checkbox-icon-container-border-bottom-right-radius: 2px;
|
|
17270
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17271
|
+
--checkbox-icon-container-border-top-width: 2px;
|
|
17272
|
+
--checkbox-icon-container-border-right-width: 2px;
|
|
17273
|
+
--checkbox-icon-container-border-bottom-width: 2px;
|
|
17274
|
+
--checkbox-icon-container-border-left-width: 2px;
|
|
17275
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17276
|
+
--checkbox-icon-container-font-size: initial;
|
|
17277
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17278
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17279
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17280
|
+
}
|
|
17281
|
+
[data-theme='dark'] [component-variant="checkbox-large-selected-default"], [data-theme='light'] [component-variant="checkbox-large-selected-default"] {
|
|
17282
|
+
--checkbox-icon-container-height: 18px;
|
|
17283
|
+
--checkbox-icon-container-width: 18px;
|
|
17284
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17285
|
+
--checkbox-icon-container-border-top-left-radius: 2px;
|
|
17286
|
+
--checkbox-icon-container-border-top-right-radius: 2px;
|
|
17287
|
+
--checkbox-icon-container-border-bottom-left-radius: 2px;
|
|
17288
|
+
--checkbox-icon-container-border-bottom-right-radius: 2px;
|
|
17289
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17290
|
+
--checkbox-icon-container-font-size: initial;
|
|
17291
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17292
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17293
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17294
|
+
}
|
|
17295
|
+
[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]) {
|
|
17296
|
+
--checkbox-icon-container-height: 18px;
|
|
17297
|
+
--checkbox-icon-container-width: 18px;
|
|
17298
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17299
|
+
--checkbox-icon-container-border-top-left-radius: 2px;
|
|
17300
|
+
--checkbox-icon-container-border-top-right-radius: 2px;
|
|
17301
|
+
--checkbox-icon-container-border-bottom-left-radius: 2px;
|
|
17302
|
+
--checkbox-icon-container-border-bottom-right-radius: 2px;
|
|
17303
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17304
|
+
--checkbox-icon-container-font-size: initial;
|
|
17305
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17306
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17307
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17308
|
+
}
|
|
17309
|
+
[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]) {
|
|
17310
|
+
--checkbox-icon-container-height: 18px;
|
|
17311
|
+
--checkbox-icon-container-width: 18px;
|
|
17312
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17313
|
+
--checkbox-icon-container-border-top-left-radius: 2px;
|
|
17314
|
+
--checkbox-icon-container-border-top-right-radius: 2px;
|
|
17315
|
+
--checkbox-icon-container-border-bottom-left-radius: 2px;
|
|
17316
|
+
--checkbox-icon-container-border-bottom-right-radius: 2px;
|
|
17317
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17318
|
+
--checkbox-icon-container-font-size: initial;
|
|
17319
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17320
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17321
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17322
|
+
}
|
|
17323
|
+
[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]) {
|
|
17324
|
+
--checkbox-icon-container-height: 18px;
|
|
17325
|
+
--checkbox-icon-container-width: 18px;
|
|
17326
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17327
|
+
--checkbox-icon-container-border-top-left-radius: 2px;
|
|
17328
|
+
--checkbox-icon-container-border-top-right-radius: 2px;
|
|
17329
|
+
--checkbox-icon-container-border-bottom-left-radius: 2px;
|
|
17330
|
+
--checkbox-icon-container-border-bottom-right-radius: 2px;
|
|
17331
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17332
|
+
--checkbox-icon-container-font-size: initial;
|
|
17333
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17334
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17335
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17336
|
+
}
|
|
17337
|
+
[data-theme='dark'] [component-variant="checkbox-large-selected-inverse"], [data-theme='light'] [component-variant="checkbox-large-selected-inverse"] {
|
|
17338
|
+
--checkbox-icon-container-height: 18px;
|
|
17339
|
+
--checkbox-icon-container-width: 18px;
|
|
17340
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17341
|
+
--checkbox-icon-container-border-top-left-radius: 2px;
|
|
17342
|
+
--checkbox-icon-container-border-top-right-radius: 2px;
|
|
17343
|
+
--checkbox-icon-container-border-bottom-left-radius: 2px;
|
|
17344
|
+
--checkbox-icon-container-border-bottom-right-radius: 2px;
|
|
17345
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17346
|
+
--checkbox-icon-container-font-size: initial;
|
|
17347
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17348
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17349
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17350
|
+
}
|
|
17351
|
+
[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]) {
|
|
17352
|
+
--checkbox-icon-container-height: 18px;
|
|
17353
|
+
--checkbox-icon-container-width: 18px;
|
|
17354
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17355
|
+
--checkbox-icon-container-border-top-left-radius: 2px;
|
|
17356
|
+
--checkbox-icon-container-border-top-right-radius: 2px;
|
|
17357
|
+
--checkbox-icon-container-border-bottom-left-radius: 2px;
|
|
17358
|
+
--checkbox-icon-container-border-bottom-right-radius: 2px;
|
|
17359
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17360
|
+
--checkbox-icon-container-font-size: initial;
|
|
17361
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17362
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17363
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17364
|
+
}
|
|
17365
|
+
[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]) {
|
|
17366
|
+
--checkbox-icon-container-height: 18px;
|
|
17367
|
+
--checkbox-icon-container-width: 18px;
|
|
17368
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17369
|
+
--checkbox-icon-container-border-top-left-radius: 2px;
|
|
17370
|
+
--checkbox-icon-container-border-top-right-radius: 2px;
|
|
17371
|
+
--checkbox-icon-container-border-bottom-left-radius: 2px;
|
|
17372
|
+
--checkbox-icon-container-border-bottom-right-radius: 2px;
|
|
17373
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17374
|
+
--checkbox-icon-container-font-size: initial;
|
|
17375
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17376
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17377
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17378
|
+
}
|
|
17379
|
+
[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]) {
|
|
17380
|
+
--checkbox-icon-container-height: 18px;
|
|
17381
|
+
--checkbox-icon-container-width: 18px;
|
|
17382
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17383
|
+
--checkbox-icon-container-border-top-left-radius: 2px;
|
|
17384
|
+
--checkbox-icon-container-border-top-right-radius: 2px;
|
|
17385
|
+
--checkbox-icon-container-border-bottom-left-radius: 2px;
|
|
17386
|
+
--checkbox-icon-container-border-bottom-right-radius: 2px;
|
|
17387
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17388
|
+
--checkbox-icon-container-font-size: initial;
|
|
17389
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17390
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17391
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17392
|
+
}
|
|
17393
|
+
[data-theme='dark'] [component-variant="checkbox-medium-unselected-default"], [data-theme='light'] [component-variant="checkbox-medium-unselected-default"] {
|
|
17394
|
+
--checkbox-icon-container-height: 15px;
|
|
17395
|
+
--checkbox-icon-container-width: 15px;
|
|
17396
|
+
--checkbox-icon-container-border-top-left-radius: 1.6666666269302368px;
|
|
17397
|
+
--checkbox-icon-container-border-top-right-radius: 1.6666666269302368px;
|
|
17398
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.6666666269302368px;
|
|
17399
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.6666666269302368px;
|
|
17400
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17401
|
+
--checkbox-icon-container-border-top-width: 1.6666666269302368px;
|
|
17402
|
+
--checkbox-icon-container-border-right-width: 1.6666666269302368px;
|
|
17403
|
+
--checkbox-icon-container-border-bottom-width: 1.6666666269302368px;
|
|
17404
|
+
--checkbox-icon-container-border-left-width: 1.6666666269302368px;
|
|
17405
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17406
|
+
--checkbox-icon-container-font-size: initial;
|
|
17407
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17408
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17409
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17410
|
+
}
|
|
17411
|
+
[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]) {
|
|
17412
|
+
--checkbox-icon-container-height: 15px;
|
|
17413
|
+
--checkbox-icon-container-width: 15px;
|
|
17414
|
+
--checkbox-icon-container-border-top-left-radius: 1.6666666269302368px;
|
|
17415
|
+
--checkbox-icon-container-border-top-right-radius: 1.6666666269302368px;
|
|
17416
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.6666666269302368px;
|
|
17417
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.6666666269302368px;
|
|
17418
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17419
|
+
--checkbox-icon-container-border-top-width: 1.6666666269302368px;
|
|
17420
|
+
--checkbox-icon-container-border-right-width: 1.6666666269302368px;
|
|
17421
|
+
--checkbox-icon-container-border-bottom-width: 1.6666666269302368px;
|
|
17422
|
+
--checkbox-icon-container-border-left-width: 1.6666666269302368px;
|
|
17423
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17424
|
+
--checkbox-icon-container-font-size: initial;
|
|
17425
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17426
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17427
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17428
|
+
}
|
|
17429
|
+
[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]) {
|
|
17430
|
+
--checkbox-icon-container-height: 15px;
|
|
17431
|
+
--checkbox-icon-container-width: 15px;
|
|
17432
|
+
--checkbox-icon-container-border-top-left-radius: 1.6666666269302368px;
|
|
17433
|
+
--checkbox-icon-container-border-top-right-radius: 1.6666666269302368px;
|
|
17434
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.6666666269302368px;
|
|
17435
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.6666666269302368px;
|
|
17436
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17437
|
+
--checkbox-icon-container-border-top-width: 1.6666666269302368px;
|
|
17438
|
+
--checkbox-icon-container-border-right-width: 1.6666666269302368px;
|
|
17439
|
+
--checkbox-icon-container-border-bottom-width: 1.6666666269302368px;
|
|
17440
|
+
--checkbox-icon-container-border-left-width: 1.6666666269302368px;
|
|
17441
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17442
|
+
--checkbox-icon-container-font-size: initial;
|
|
17443
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17444
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17445
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17446
|
+
}
|
|
17447
|
+
[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]) {
|
|
17448
|
+
--checkbox-icon-container-height: 15px;
|
|
17449
|
+
--checkbox-icon-container-width: 15px;
|
|
17450
|
+
--checkbox-icon-container-border-top-left-radius: 1.6666666269302368px;
|
|
17451
|
+
--checkbox-icon-container-border-top-right-radius: 1.6666666269302368px;
|
|
17452
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.6666666269302368px;
|
|
17453
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.6666666269302368px;
|
|
17454
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17455
|
+
--checkbox-icon-container-border-top-width: 1.6666666269302368px;
|
|
17456
|
+
--checkbox-icon-container-border-right-width: 1.6666666269302368px;
|
|
17457
|
+
--checkbox-icon-container-border-bottom-width: 1.6666666269302368px;
|
|
17458
|
+
--checkbox-icon-container-border-left-width: 1.6666666269302368px;
|
|
17459
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17460
|
+
--checkbox-icon-container-font-size: initial;
|
|
17461
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17462
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17463
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17464
|
+
}
|
|
17465
|
+
[data-theme='dark'] [component-variant="checkbox-medium-unselected-inverse"], [data-theme='light'] [component-variant="checkbox-medium-unselected-inverse"] {
|
|
17466
|
+
--checkbox-icon-container-height: 15px;
|
|
17467
|
+
--checkbox-icon-container-width: 15px;
|
|
17468
|
+
--checkbox-icon-container-border-top-left-radius: 1.6666666269302368px;
|
|
17469
|
+
--checkbox-icon-container-border-top-right-radius: 1.6666666269302368px;
|
|
17470
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.6666666269302368px;
|
|
17471
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.6666666269302368px;
|
|
17472
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17473
|
+
--checkbox-icon-container-border-top-width: 1.6666666269302368px;
|
|
17474
|
+
--checkbox-icon-container-border-right-width: 1.6666666269302368px;
|
|
17475
|
+
--checkbox-icon-container-border-bottom-width: 1.6666666269302368px;
|
|
17476
|
+
--checkbox-icon-container-border-left-width: 1.6666666269302368px;
|
|
17477
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17478
|
+
--checkbox-icon-container-font-size: initial;
|
|
17479
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17480
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17481
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17482
|
+
}
|
|
17483
|
+
[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]) {
|
|
17484
|
+
--checkbox-icon-container-height: 15px;
|
|
17485
|
+
--checkbox-icon-container-width: 15px;
|
|
17486
|
+
--checkbox-icon-container-border-top-left-radius: 1.6666666269302368px;
|
|
17487
|
+
--checkbox-icon-container-border-top-right-radius: 1.6666666269302368px;
|
|
17488
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.6666666269302368px;
|
|
17489
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.6666666269302368px;
|
|
17490
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17491
|
+
--checkbox-icon-container-border-top-width: 1.6666666269302368px;
|
|
17492
|
+
--checkbox-icon-container-border-right-width: 1.6666666269302368px;
|
|
17493
|
+
--checkbox-icon-container-border-bottom-width: 1.6666666269302368px;
|
|
17494
|
+
--checkbox-icon-container-border-left-width: 1.6666666269302368px;
|
|
17495
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17496
|
+
--checkbox-icon-container-font-size: initial;
|
|
17497
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17498
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17499
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17500
|
+
}
|
|
17501
|
+
[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]) {
|
|
17502
|
+
--checkbox-icon-container-height: 15px;
|
|
17503
|
+
--checkbox-icon-container-width: 15px;
|
|
17504
|
+
--checkbox-icon-container-border-top-left-radius: 1.6666666269302368px;
|
|
17505
|
+
--checkbox-icon-container-border-top-right-radius: 1.6666666269302368px;
|
|
17506
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.6666666269302368px;
|
|
17507
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.6666666269302368px;
|
|
17508
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17509
|
+
--checkbox-icon-container-border-top-width: 1.6666666269302368px;
|
|
17510
|
+
--checkbox-icon-container-border-right-width: 1.6666666269302368px;
|
|
17511
|
+
--checkbox-icon-container-border-bottom-width: 1.6666666269302368px;
|
|
17512
|
+
--checkbox-icon-container-border-left-width: 1.6666666269302368px;
|
|
17513
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17514
|
+
--checkbox-icon-container-font-size: initial;
|
|
17515
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17516
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17517
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17518
|
+
}
|
|
17519
|
+
[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]) {
|
|
17520
|
+
--checkbox-icon-container-height: 15px;
|
|
17521
|
+
--checkbox-icon-container-width: 15px;
|
|
17522
|
+
--checkbox-icon-container-border-top-left-radius: 1.6666666269302368px;
|
|
17523
|
+
--checkbox-icon-container-border-top-right-radius: 1.6666666269302368px;
|
|
17524
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.6666666269302368px;
|
|
17525
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.6666666269302368px;
|
|
17526
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17527
|
+
--checkbox-icon-container-border-top-width: 1.6666666269302368px;
|
|
17528
|
+
--checkbox-icon-container-border-right-width: 1.6666666269302368px;
|
|
17529
|
+
--checkbox-icon-container-border-bottom-width: 1.6666666269302368px;
|
|
17530
|
+
--checkbox-icon-container-border-left-width: 1.6666666269302368px;
|
|
17531
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17532
|
+
--checkbox-icon-container-font-size: initial;
|
|
17533
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17534
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17535
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17536
|
+
}
|
|
17537
|
+
[data-theme='dark'] [component-variant="checkbox-medium-selected-default"], [data-theme='light'] [component-variant="checkbox-medium-selected-default"] {
|
|
17538
|
+
--checkbox-icon-container-height: 15px;
|
|
17539
|
+
--checkbox-icon-container-width: 15px;
|
|
17540
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17541
|
+
--checkbox-icon-container-border-top-left-radius: 1.6666666269302368px;
|
|
17542
|
+
--checkbox-icon-container-border-top-right-radius: 1.6666666269302368px;
|
|
17543
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.6666666269302368px;
|
|
17544
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.6666666269302368px;
|
|
17545
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17546
|
+
--checkbox-icon-container-font-size: initial;
|
|
17547
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17548
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17549
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17550
|
+
}
|
|
17551
|
+
[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]) {
|
|
17552
|
+
--checkbox-icon-container-height: 15px;
|
|
17553
|
+
--checkbox-icon-container-width: 15px;
|
|
17554
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17555
|
+
--checkbox-icon-container-border-top-left-radius: 1.6666666269302368px;
|
|
17556
|
+
--checkbox-icon-container-border-top-right-radius: 1.6666666269302368px;
|
|
17557
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.6666666269302368px;
|
|
17558
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.6666666269302368px;
|
|
17559
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17560
|
+
--checkbox-icon-container-font-size: initial;
|
|
17561
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17562
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17563
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17564
|
+
}
|
|
17565
|
+
[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]) {
|
|
17566
|
+
--checkbox-icon-container-height: 15px;
|
|
17567
|
+
--checkbox-icon-container-width: 15px;
|
|
17568
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17569
|
+
--checkbox-icon-container-border-top-left-radius: 1.6666666269302368px;
|
|
17570
|
+
--checkbox-icon-container-border-top-right-radius: 1.6666666269302368px;
|
|
17571
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.6666666269302368px;
|
|
17572
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.6666666269302368px;
|
|
17573
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17574
|
+
--checkbox-icon-container-font-size: initial;
|
|
17575
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17576
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17577
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17578
|
+
}
|
|
17579
|
+
[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]) {
|
|
17580
|
+
--checkbox-icon-container-height: 15px;
|
|
17581
|
+
--checkbox-icon-container-width: 15px;
|
|
17582
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17583
|
+
--checkbox-icon-container-border-top-left-radius: 1.6666666269302368px;
|
|
17584
|
+
--checkbox-icon-container-border-top-right-radius: 1.6666666269302368px;
|
|
17585
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.6666666269302368px;
|
|
17586
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.6666666269302368px;
|
|
17587
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17588
|
+
--checkbox-icon-container-font-size: initial;
|
|
17589
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17590
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17591
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17592
|
+
}
|
|
17593
|
+
[data-theme='dark'] [component-variant="checkbox-medium-selected-inverse"], [data-theme='light'] [component-variant="checkbox-medium-selected-inverse"] {
|
|
17594
|
+
--checkbox-icon-container-height: 15px;
|
|
17595
|
+
--checkbox-icon-container-width: 15px;
|
|
17596
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17597
|
+
--checkbox-icon-container-border-top-left-radius: 1.6666666269302368px;
|
|
17598
|
+
--checkbox-icon-container-border-top-right-radius: 1.6666666269302368px;
|
|
17599
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.6666666269302368px;
|
|
17600
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.6666666269302368px;
|
|
17601
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17602
|
+
--checkbox-icon-container-font-size: initial;
|
|
17603
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17604
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17605
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17606
|
+
}
|
|
17607
|
+
[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]) {
|
|
17608
|
+
--checkbox-icon-container-height: 15px;
|
|
17609
|
+
--checkbox-icon-container-width: 15px;
|
|
17610
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17611
|
+
--checkbox-icon-container-border-top-left-radius: 1.6666666269302368px;
|
|
17612
|
+
--checkbox-icon-container-border-top-right-radius: 1.6666666269302368px;
|
|
17613
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.6666666269302368px;
|
|
17614
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.6666666269302368px;
|
|
17615
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17616
|
+
--checkbox-icon-container-font-size: initial;
|
|
17617
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17618
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17619
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17620
|
+
}
|
|
17621
|
+
[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]) {
|
|
17622
|
+
--checkbox-icon-container-height: 15px;
|
|
17623
|
+
--checkbox-icon-container-width: 15px;
|
|
17624
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17625
|
+
--checkbox-icon-container-border-top-left-radius: 1.6666666269302368px;
|
|
17626
|
+
--checkbox-icon-container-border-top-right-radius: 1.6666666269302368px;
|
|
17627
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.6666666269302368px;
|
|
17628
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.6666666269302368px;
|
|
17629
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17630
|
+
--checkbox-icon-container-font-size: initial;
|
|
17631
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17632
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17633
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17634
|
+
}
|
|
17635
|
+
[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]) {
|
|
17636
|
+
--checkbox-icon-container-height: 15px;
|
|
17637
|
+
--checkbox-icon-container-width: 15px;
|
|
17638
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17639
|
+
--checkbox-icon-container-border-top-left-radius: 1.6666666269302368px;
|
|
17640
|
+
--checkbox-icon-container-border-top-right-radius: 1.6666666269302368px;
|
|
17641
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.6666666269302368px;
|
|
17642
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.6666666269302368px;
|
|
17643
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17644
|
+
--checkbox-icon-container-font-size: initial;
|
|
17645
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17646
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17647
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17648
|
+
}
|
|
17649
|
+
[data-theme='dark'] [component-variant="checkbox-small-unselected-default"], [data-theme='light'] [component-variant="checkbox-small-unselected-default"] {
|
|
17650
|
+
--checkbox-icon-container-height: 12px;
|
|
17651
|
+
--checkbox-icon-container-width: 12px;
|
|
17652
|
+
--checkbox-icon-container-border-top-left-radius: 1.3333333730697632px;
|
|
17653
|
+
--checkbox-icon-container-border-top-right-radius: 1.3333333730697632px;
|
|
17654
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.3333333730697632px;
|
|
17655
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.3333333730697632px;
|
|
17656
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17657
|
+
--checkbox-icon-container-border-top-width: 1.3333333730697632px;
|
|
17658
|
+
--checkbox-icon-container-border-right-width: 1.3333333730697632px;
|
|
17659
|
+
--checkbox-icon-container-border-bottom-width: 1.3333333730697632px;
|
|
17660
|
+
--checkbox-icon-container-border-left-width: 1.3333333730697632px;
|
|
17661
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17662
|
+
--checkbox-icon-container-font-size: initial;
|
|
17663
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17664
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17665
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17666
|
+
}
|
|
17667
|
+
[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]) {
|
|
17668
|
+
--checkbox-icon-container-height: 12px;
|
|
17669
|
+
--checkbox-icon-container-width: 12px;
|
|
17670
|
+
--checkbox-icon-container-border-top-left-radius: 1.3333333730697632px;
|
|
17671
|
+
--checkbox-icon-container-border-top-right-radius: 1.3333333730697632px;
|
|
17672
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.3333333730697632px;
|
|
17673
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.3333333730697632px;
|
|
17674
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17675
|
+
--checkbox-icon-container-border-top-width: 1.3333333730697632px;
|
|
17676
|
+
--checkbox-icon-container-border-right-width: 1.3333333730697632px;
|
|
17677
|
+
--checkbox-icon-container-border-bottom-width: 1.3333333730697632px;
|
|
17678
|
+
--checkbox-icon-container-border-left-width: 1.3333333730697632px;
|
|
17679
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17680
|
+
--checkbox-icon-container-font-size: initial;
|
|
17681
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17682
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17683
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17684
|
+
}
|
|
17685
|
+
[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]) {
|
|
17686
|
+
--checkbox-icon-container-height: 12px;
|
|
17687
|
+
--checkbox-icon-container-width: 12px;
|
|
17688
|
+
--checkbox-icon-container-border-top-left-radius: 1.3333333730697632px;
|
|
17689
|
+
--checkbox-icon-container-border-top-right-radius: 1.3333333730697632px;
|
|
17690
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.3333333730697632px;
|
|
17691
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.3333333730697632px;
|
|
17692
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17693
|
+
--checkbox-icon-container-border-top-width: 1.3333333730697632px;
|
|
17694
|
+
--checkbox-icon-container-border-right-width: 1.3333333730697632px;
|
|
17695
|
+
--checkbox-icon-container-border-bottom-width: 1.3333333730697632px;
|
|
17696
|
+
--checkbox-icon-container-border-left-width: 1.3333333730697632px;
|
|
17697
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17698
|
+
--checkbox-icon-container-font-size: initial;
|
|
17699
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17700
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17701
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17702
|
+
}
|
|
17703
|
+
[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]) {
|
|
17704
|
+
--checkbox-icon-container-height: 12px;
|
|
17705
|
+
--checkbox-icon-container-width: 12px;
|
|
17706
|
+
--checkbox-icon-container-border-top-left-radius: 1.3333333730697632px;
|
|
17707
|
+
--checkbox-icon-container-border-top-right-radius: 1.3333333730697632px;
|
|
17708
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.3333333730697632px;
|
|
17709
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.3333333730697632px;
|
|
17710
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17711
|
+
--checkbox-icon-container-border-top-width: 1.3333333730697632px;
|
|
17712
|
+
--checkbox-icon-container-border-right-width: 1.3333333730697632px;
|
|
17713
|
+
--checkbox-icon-container-border-bottom-width: 1.3333333730697632px;
|
|
17714
|
+
--checkbox-icon-container-border-left-width: 1.3333333730697632px;
|
|
17715
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17716
|
+
--checkbox-icon-container-font-size: initial;
|
|
17717
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17718
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17719
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17720
|
+
}
|
|
17721
|
+
[data-theme='dark'] [component-variant="checkbox-small-unselected-inverse"], [data-theme='light'] [component-variant="checkbox-small-unselected-inverse"] {
|
|
17722
|
+
--checkbox-icon-container-height: 12px;
|
|
17723
|
+
--checkbox-icon-container-width: 12px;
|
|
17724
|
+
--checkbox-icon-container-border-top-left-radius: 1.3333333730697632px;
|
|
17725
|
+
--checkbox-icon-container-border-top-right-radius: 1.3333333730697632px;
|
|
17726
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.3333333730697632px;
|
|
17727
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.3333333730697632px;
|
|
17728
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17729
|
+
--checkbox-icon-container-border-top-width: 1.3333333730697632px;
|
|
17730
|
+
--checkbox-icon-container-border-right-width: 1.3333333730697632px;
|
|
17731
|
+
--checkbox-icon-container-border-bottom-width: 1.3333333730697632px;
|
|
17732
|
+
--checkbox-icon-container-border-left-width: 1.3333333730697632px;
|
|
17733
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17734
|
+
--checkbox-icon-container-font-size: initial;
|
|
17735
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17736
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17737
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17738
|
+
}
|
|
17739
|
+
[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]) {
|
|
17740
|
+
--checkbox-icon-container-height: 12px;
|
|
17741
|
+
--checkbox-icon-container-width: 12px;
|
|
17742
|
+
--checkbox-icon-container-border-top-left-radius: 1.3333333730697632px;
|
|
17743
|
+
--checkbox-icon-container-border-top-right-radius: 1.3333333730697632px;
|
|
17744
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.3333333730697632px;
|
|
17745
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.3333333730697632px;
|
|
17746
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17747
|
+
--checkbox-icon-container-border-top-width: 1.3333333730697632px;
|
|
17748
|
+
--checkbox-icon-container-border-right-width: 1.3333333730697632px;
|
|
17749
|
+
--checkbox-icon-container-border-bottom-width: 1.3333333730697632px;
|
|
17750
|
+
--checkbox-icon-container-border-left-width: 1.3333333730697632px;
|
|
17751
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17752
|
+
--checkbox-icon-container-font-size: initial;
|
|
17753
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17754
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17755
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17756
|
+
}
|
|
17757
|
+
[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]) {
|
|
17758
|
+
--checkbox-icon-container-height: 12px;
|
|
17759
|
+
--checkbox-icon-container-width: 12px;
|
|
17760
|
+
--checkbox-icon-container-border-top-left-radius: 1.3333333730697632px;
|
|
17761
|
+
--checkbox-icon-container-border-top-right-radius: 1.3333333730697632px;
|
|
17762
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.3333333730697632px;
|
|
17763
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.3333333730697632px;
|
|
17764
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17765
|
+
--checkbox-icon-container-border-top-width: 1.3333333730697632px;
|
|
17766
|
+
--checkbox-icon-container-border-right-width: 1.3333333730697632px;
|
|
17767
|
+
--checkbox-icon-container-border-bottom-width: 1.3333333730697632px;
|
|
17768
|
+
--checkbox-icon-container-border-left-width: 1.3333333730697632px;
|
|
17769
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17770
|
+
--checkbox-icon-container-font-size: initial;
|
|
17771
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17772
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17773
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17774
|
+
}
|
|
17775
|
+
[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]) {
|
|
17776
|
+
--checkbox-icon-container-height: 12px;
|
|
17777
|
+
--checkbox-icon-container-width: 12px;
|
|
17778
|
+
--checkbox-icon-container-border-top-left-radius: 1.3333333730697632px;
|
|
17779
|
+
--checkbox-icon-container-border-top-right-radius: 1.3333333730697632px;
|
|
17780
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.3333333730697632px;
|
|
17781
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.3333333730697632px;
|
|
17782
|
+
--checkbox-icon-container-border-color: var(--interactive-surface-tertiary-default);
|
|
17783
|
+
--checkbox-icon-container-border-top-width: 1.3333333730697632px;
|
|
17784
|
+
--checkbox-icon-container-border-right-width: 1.3333333730697632px;
|
|
17785
|
+
--checkbox-icon-container-border-bottom-width: 1.3333333730697632px;
|
|
17786
|
+
--checkbox-icon-container-border-left-width: 1.3333333730697632px;
|
|
17787
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17788
|
+
--checkbox-icon-container-font-size: initial;
|
|
17789
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17790
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17791
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17792
|
+
}
|
|
17793
|
+
[data-theme='dark'] [component-variant="checkbox-small-selected-default"], [data-theme='light'] [component-variant="checkbox-small-selected-default"] {
|
|
17794
|
+
--checkbox-icon-container-height: 12px;
|
|
17795
|
+
--checkbox-icon-container-width: 12px;
|
|
17796
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17797
|
+
--checkbox-icon-container-border-top-left-radius: 1.3333333730697632px;
|
|
17798
|
+
--checkbox-icon-container-border-top-right-radius: 1.3333333730697632px;
|
|
17799
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.3333333730697632px;
|
|
17800
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.3333333730697632px;
|
|
17801
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17802
|
+
--checkbox-icon-container-font-size: initial;
|
|
17803
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17804
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17805
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17806
|
+
}
|
|
17807
|
+
[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]) {
|
|
17808
|
+
--checkbox-icon-container-height: 12px;
|
|
17809
|
+
--checkbox-icon-container-width: 12px;
|
|
17810
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17811
|
+
--checkbox-icon-container-border-top-left-radius: 1.3333333730697632px;
|
|
17812
|
+
--checkbox-icon-container-border-top-right-radius: 1.3333333730697632px;
|
|
17813
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.3333333730697632px;
|
|
17814
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.3333333730697632px;
|
|
17815
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17816
|
+
--checkbox-icon-container-font-size: initial;
|
|
17817
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17818
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17819
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17820
|
+
}
|
|
17821
|
+
[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]) {
|
|
17822
|
+
--checkbox-icon-container-height: 12px;
|
|
17823
|
+
--checkbox-icon-container-width: 12px;
|
|
17824
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17825
|
+
--checkbox-icon-container-border-top-left-radius: 1.3333333730697632px;
|
|
17826
|
+
--checkbox-icon-container-border-top-right-radius: 1.3333333730697632px;
|
|
17827
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.3333333730697632px;
|
|
17828
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.3333333730697632px;
|
|
17829
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17830
|
+
--checkbox-icon-container-font-size: initial;
|
|
17831
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17832
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17833
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17834
|
+
}
|
|
17835
|
+
[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]) {
|
|
17836
|
+
--checkbox-icon-container-height: 12px;
|
|
17837
|
+
--checkbox-icon-container-width: 12px;
|
|
17838
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17839
|
+
--checkbox-icon-container-border-top-left-radius: 1.3333333730697632px;
|
|
17840
|
+
--checkbox-icon-container-border-top-right-radius: 1.3333333730697632px;
|
|
17841
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.3333333730697632px;
|
|
17842
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.3333333730697632px;
|
|
17843
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17844
|
+
--checkbox-icon-container-font-size: initial;
|
|
17845
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17846
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17847
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17848
|
+
}
|
|
17849
|
+
[data-theme='dark'] [component-variant="checkbox-small-selected-inverse"], [data-theme='light'] [component-variant="checkbox-small-selected-inverse"] {
|
|
17850
|
+
--checkbox-icon-container-height: 12px;
|
|
17851
|
+
--checkbox-icon-container-width: 12px;
|
|
17852
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17853
|
+
--checkbox-icon-container-border-top-left-radius: 1.3333333730697632px;
|
|
17854
|
+
--checkbox-icon-container-border-top-right-radius: 1.3333333730697632px;
|
|
17855
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.3333333730697632px;
|
|
17856
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.3333333730697632px;
|
|
17857
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17858
|
+
--checkbox-icon-container-font-size: initial;
|
|
17859
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17860
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17861
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17862
|
+
}
|
|
17863
|
+
[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]) {
|
|
17864
|
+
--checkbox-icon-container-height: 12px;
|
|
17865
|
+
--checkbox-icon-container-width: 12px;
|
|
17866
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17867
|
+
--checkbox-icon-container-border-top-left-radius: 1.3333333730697632px;
|
|
17868
|
+
--checkbox-icon-container-border-top-right-radius: 1.3333333730697632px;
|
|
17869
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.3333333730697632px;
|
|
17870
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.3333333730697632px;
|
|
17871
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17872
|
+
--checkbox-icon-container-font-size: initial;
|
|
17873
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17874
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17875
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17876
|
+
}
|
|
17877
|
+
[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]) {
|
|
17878
|
+
--checkbox-icon-container-height: 12px;
|
|
17879
|
+
--checkbox-icon-container-width: 12px;
|
|
17880
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17881
|
+
--checkbox-icon-container-border-top-left-radius: 1.3333333730697632px;
|
|
17882
|
+
--checkbox-icon-container-border-top-right-radius: 1.3333333730697632px;
|
|
17883
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.3333333730697632px;
|
|
17884
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.3333333730697632px;
|
|
17885
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17886
|
+
--checkbox-icon-container-font-size: initial;
|
|
17887
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17888
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17889
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17890
|
+
}
|
|
17891
|
+
[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]) {
|
|
17892
|
+
--checkbox-icon-container-height: 12px;
|
|
17893
|
+
--checkbox-icon-container-width: 12px;
|
|
17894
|
+
--checkbox-icon-container-background-color: var(--interactive-surface-primary-default);
|
|
17895
|
+
--checkbox-icon-container-border-top-left-radius: 1.3333333730697632px;
|
|
17896
|
+
--checkbox-icon-container-border-top-right-radius: 1.3333333730697632px;
|
|
17897
|
+
--checkbox-icon-container-border-bottom-left-radius: 1.3333333730697632px;
|
|
17898
|
+
--checkbox-icon-container-border-bottom-right-radius: 1.3333333730697632px;
|
|
17899
|
+
--checkbox-icon-container-font-family: sans-sarif;
|
|
17900
|
+
--checkbox-icon-container-font-size: initial;
|
|
17901
|
+
--checkbox-icon-container-font-weight: regular;
|
|
17902
|
+
--checkbox-icon-container-paragraph-spacing: 0px;
|
|
17903
|
+
--checkbox-icon-container-paragraph-indent: 0px
|
|
17904
|
+
}
|
|
17905
|
+
[data-theme='dark'] [component-variant="checkbox-large-selected-default"], [data-theme='light'] [component-variant="checkbox-large-selected-default"] {
|
|
17906
|
+
--checkbox-icon-height: 16px;
|
|
17907
|
+
--checkbox-icon-width: 16px;
|
|
17908
|
+
--checkbox-icon-background-color: rgb(233, 233, 234);
|
|
17909
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
17910
|
+
--checkbox-icon-font-size: initial;
|
|
17911
|
+
--checkbox-icon-font-weight: regular;
|
|
17912
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
17913
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
17914
|
+
}
|
|
17915
|
+
[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]) {
|
|
17916
|
+
--checkbox-icon-height: 16px;
|
|
17917
|
+
--checkbox-icon-width: 16px;
|
|
17918
|
+
--checkbox-icon-background-color: rgb(233, 233, 234);
|
|
17919
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
17920
|
+
--checkbox-icon-font-size: initial;
|
|
17921
|
+
--checkbox-icon-font-weight: regular;
|
|
17922
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
17923
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
17924
|
+
}
|
|
17925
|
+
[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]) {
|
|
17926
|
+
--checkbox-icon-height: 16px;
|
|
17927
|
+
--checkbox-icon-width: 16px;
|
|
17928
|
+
--checkbox-icon-background-color: rgb(233, 233, 234);
|
|
17929
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
17930
|
+
--checkbox-icon-font-size: initial;
|
|
17931
|
+
--checkbox-icon-font-weight: regular;
|
|
17932
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
17933
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
17934
|
+
}
|
|
17935
|
+
[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]) {
|
|
17936
|
+
--checkbox-icon-height: 16px;
|
|
17937
|
+
--checkbox-icon-width: 16px;
|
|
17938
|
+
--checkbox-icon-background-color: rgb(233, 233, 234);
|
|
17939
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
17940
|
+
--checkbox-icon-font-size: initial;
|
|
17941
|
+
--checkbox-icon-font-weight: regular;
|
|
17942
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
17943
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
17944
|
+
}
|
|
17945
|
+
[data-theme='dark'] [component-variant="checkbox-large-selected-inverse"], [data-theme='light'] [component-variant="checkbox-large-selected-inverse"] {
|
|
17946
|
+
--checkbox-icon-height: 16px;
|
|
17947
|
+
--checkbox-icon-width: 16px;
|
|
17948
|
+
--checkbox-icon-background-color: rgb(14, 15, 20);
|
|
17949
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
17950
|
+
--checkbox-icon-font-size: initial;
|
|
17951
|
+
--checkbox-icon-font-weight: regular;
|
|
17952
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
17953
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
17954
|
+
}
|
|
17955
|
+
[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]) {
|
|
17956
|
+
--checkbox-icon-height: 16px;
|
|
17957
|
+
--checkbox-icon-width: 16px;
|
|
17958
|
+
--checkbox-icon-background-color: rgb(14, 15, 20);
|
|
17959
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
17960
|
+
--checkbox-icon-font-size: initial;
|
|
17961
|
+
--checkbox-icon-font-weight: regular;
|
|
17962
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
17963
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
17964
|
+
}
|
|
17965
|
+
[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]) {
|
|
17966
|
+
--checkbox-icon-height: 16px;
|
|
17967
|
+
--checkbox-icon-width: 16px;
|
|
17968
|
+
--checkbox-icon-background-color: rgb(14, 15, 20);
|
|
17969
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
17970
|
+
--checkbox-icon-font-size: initial;
|
|
17971
|
+
--checkbox-icon-font-weight: regular;
|
|
17972
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
17973
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
17974
|
+
}
|
|
17975
|
+
[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]) {
|
|
17976
|
+
--checkbox-icon-height: 16px;
|
|
17977
|
+
--checkbox-icon-width: 16px;
|
|
17978
|
+
--checkbox-icon-background-color: rgb(14, 15, 20);
|
|
17979
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
17980
|
+
--checkbox-icon-font-size: initial;
|
|
17981
|
+
--checkbox-icon-font-weight: regular;
|
|
17982
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
17983
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
17984
|
+
}
|
|
17985
|
+
[data-theme='dark'] [component-variant="checkbox-medium-selected-default"], [data-theme='light'] [component-variant="checkbox-medium-selected-default"] {
|
|
17986
|
+
--checkbox-icon-height: 13.333333015441895px;
|
|
17987
|
+
--checkbox-icon-width: 13.333333015441895px;
|
|
17988
|
+
--checkbox-icon-background-color: rgb(233, 233, 234);
|
|
17989
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
17990
|
+
--checkbox-icon-font-size: initial;
|
|
17991
|
+
--checkbox-icon-font-weight: regular;
|
|
17992
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
17993
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
17994
|
+
}
|
|
17995
|
+
[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]) {
|
|
17996
|
+
--checkbox-icon-height: 13.333333015441895px;
|
|
17997
|
+
--checkbox-icon-width: 13.333333015441895px;
|
|
17998
|
+
--checkbox-icon-background-color: rgb(233, 233, 234);
|
|
17999
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
18000
|
+
--checkbox-icon-font-size: initial;
|
|
18001
|
+
--checkbox-icon-font-weight: regular;
|
|
18002
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
18003
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
18004
|
+
}
|
|
18005
|
+
[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]) {
|
|
18006
|
+
--checkbox-icon-height: 13.333333015441895px;
|
|
18007
|
+
--checkbox-icon-width: 13.333333015441895px;
|
|
18008
|
+
--checkbox-icon-background-color: rgb(233, 233, 234);
|
|
18009
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
18010
|
+
--checkbox-icon-font-size: initial;
|
|
18011
|
+
--checkbox-icon-font-weight: regular;
|
|
18012
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
18013
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
18014
|
+
}
|
|
18015
|
+
[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]) {
|
|
18016
|
+
--checkbox-icon-height: 13.333333015441895px;
|
|
18017
|
+
--checkbox-icon-width: 13.333333015441895px;
|
|
18018
|
+
--checkbox-icon-background-color: rgb(233, 233, 234);
|
|
18019
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
18020
|
+
--checkbox-icon-font-size: initial;
|
|
18021
|
+
--checkbox-icon-font-weight: regular;
|
|
18022
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
18023
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
18024
|
+
}
|
|
18025
|
+
[data-theme='dark'] [component-variant="checkbox-medium-selected-inverse"], [data-theme='light'] [component-variant="checkbox-medium-selected-inverse"] {
|
|
18026
|
+
--checkbox-icon-height: 13.333333015441895px;
|
|
18027
|
+
--checkbox-icon-width: 13.333333015441895px;
|
|
18028
|
+
--checkbox-icon-background-color: rgb(14, 15, 20);
|
|
18029
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
18030
|
+
--checkbox-icon-font-size: initial;
|
|
18031
|
+
--checkbox-icon-font-weight: regular;
|
|
18032
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
18033
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
18034
|
+
}
|
|
18035
|
+
[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]) {
|
|
18036
|
+
--checkbox-icon-height: 13.333333015441895px;
|
|
18037
|
+
--checkbox-icon-width: 13.333333015441895px;
|
|
18038
|
+
--checkbox-icon-background-color: rgb(14, 15, 20);
|
|
18039
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
18040
|
+
--checkbox-icon-font-size: initial;
|
|
18041
|
+
--checkbox-icon-font-weight: regular;
|
|
18042
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
18043
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
18044
|
+
}
|
|
18045
|
+
[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]) {
|
|
18046
|
+
--checkbox-icon-height: 13.333333015441895px;
|
|
18047
|
+
--checkbox-icon-width: 13.333333015441895px;
|
|
18048
|
+
--checkbox-icon-background-color: rgb(14, 15, 20);
|
|
18049
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
18050
|
+
--checkbox-icon-font-size: initial;
|
|
18051
|
+
--checkbox-icon-font-weight: regular;
|
|
18052
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
18053
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
18054
|
+
}
|
|
18055
|
+
[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]) {
|
|
18056
|
+
--checkbox-icon-height: 13.333333015441895px;
|
|
18057
|
+
--checkbox-icon-width: 13.333333015441895px;
|
|
18058
|
+
--checkbox-icon-background-color: rgb(14, 15, 20);
|
|
18059
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
18060
|
+
--checkbox-icon-font-size: initial;
|
|
18061
|
+
--checkbox-icon-font-weight: regular;
|
|
18062
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
18063
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
18064
|
+
}
|
|
18065
|
+
[data-theme='dark'] [component-variant="checkbox-small-selected-default"], [data-theme='light'] [component-variant="checkbox-small-selected-default"] {
|
|
18066
|
+
--checkbox-icon-height: 10.666666984558105px;
|
|
18067
|
+
--checkbox-icon-width: 10.666666984558105px;
|
|
18068
|
+
--checkbox-icon-background-color: rgb(233, 233, 234);
|
|
18069
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
18070
|
+
--checkbox-icon-font-size: initial;
|
|
18071
|
+
--checkbox-icon-font-weight: regular;
|
|
18072
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
18073
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
18074
|
+
}
|
|
18075
|
+
[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]) {
|
|
18076
|
+
--checkbox-icon-height: 10.666666984558105px;
|
|
18077
|
+
--checkbox-icon-width: 10.666666984558105px;
|
|
18078
|
+
--checkbox-icon-background-color: rgb(233, 233, 234);
|
|
18079
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
18080
|
+
--checkbox-icon-font-size: initial;
|
|
18081
|
+
--checkbox-icon-font-weight: regular;
|
|
18082
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
18083
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
18084
|
+
}
|
|
18085
|
+
[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]) {
|
|
18086
|
+
--checkbox-icon-height: 10.666666984558105px;
|
|
18087
|
+
--checkbox-icon-width: 10.666666984558105px;
|
|
18088
|
+
--checkbox-icon-background-color: rgb(233, 233, 234);
|
|
18089
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
18090
|
+
--checkbox-icon-font-size: initial;
|
|
18091
|
+
--checkbox-icon-font-weight: regular;
|
|
18092
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
18093
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
18094
|
+
}
|
|
18095
|
+
[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]) {
|
|
18096
|
+
--checkbox-icon-height: 10.666666984558105px;
|
|
18097
|
+
--checkbox-icon-width: 10.666666984558105px;
|
|
18098
|
+
--checkbox-icon-background-color: rgb(233, 233, 234);
|
|
18099
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
18100
|
+
--checkbox-icon-font-size: initial;
|
|
18101
|
+
--checkbox-icon-font-weight: regular;
|
|
18102
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
18103
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
18104
|
+
}
|
|
18105
|
+
[data-theme='dark'] [component-variant="checkbox-small-selected-inverse"], [data-theme='light'] [component-variant="checkbox-small-selected-inverse"] {
|
|
18106
|
+
--checkbox-icon-height: 10.666666984558105px;
|
|
18107
|
+
--checkbox-icon-width: 10.666666984558105px;
|
|
18108
|
+
--checkbox-icon-background-color: rgb(14, 15, 20);
|
|
18109
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
18110
|
+
--checkbox-icon-font-size: initial;
|
|
18111
|
+
--checkbox-icon-font-weight: regular;
|
|
18112
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
18113
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
18114
|
+
}
|
|
18115
|
+
[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]) {
|
|
18116
|
+
--checkbox-icon-height: 10.666666984558105px;
|
|
18117
|
+
--checkbox-icon-width: 10.666666984558105px;
|
|
18118
|
+
--checkbox-icon-background-color: rgb(14, 15, 20);
|
|
18119
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
18120
|
+
--checkbox-icon-font-size: initial;
|
|
18121
|
+
--checkbox-icon-font-weight: regular;
|
|
18122
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
18123
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
18124
|
+
}
|
|
18125
|
+
[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]) {
|
|
18126
|
+
--checkbox-icon-height: 10.666666984558105px;
|
|
18127
|
+
--checkbox-icon-width: 10.666666984558105px;
|
|
18128
|
+
--checkbox-icon-background-color: rgb(14, 15, 20);
|
|
18129
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
18130
|
+
--checkbox-icon-font-size: initial;
|
|
18131
|
+
--checkbox-icon-font-weight: regular;
|
|
18132
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
18133
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
18134
|
+
}
|
|
18135
|
+
[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]) {
|
|
18136
|
+
--checkbox-icon-height: 10.666666984558105px;
|
|
18137
|
+
--checkbox-icon-width: 10.666666984558105px;
|
|
18138
|
+
--checkbox-icon-background-color: rgb(14, 15, 20);
|
|
18139
|
+
--checkbox-icon-font-family: sans-sarif;
|
|
18140
|
+
--checkbox-icon-font-size: initial;
|
|
18141
|
+
--checkbox-icon-font-weight: regular;
|
|
18142
|
+
--checkbox-icon-paragraph-spacing: 0px;
|
|
18143
|
+
--checkbox-icon-paragraph-indent: 0px
|
|
18144
|
+
}
|
|
16126
18145
|
[data-theme='dark'] [component-variant^="radio-button-"], [data-theme='light'] [component-variant^="radio-button-"] {
|
|
16127
18146
|
--radio-button-opacity: 1;
|
|
16128
18147
|
--radio-button-height: auto;
|
|
@@ -24574,7 +26593,7 @@ span.flatpickr-weekday {
|
|
|
24574
26593
|
--dropzone-content-paragraph-spacing: 0px;
|
|
24575
26594
|
--dropzone-content-paragraph-indent: 0px
|
|
24576
26595
|
}
|
|
24577
|
-
[data-theme='dark'] [component-variant^="tab-item-"], [data-theme='light'] [component-variant^="tab-item-"] {
|
|
26596
|
+
[data-theme='custom'] [component-variant^="tab-item-"], [data-theme='dark'] [component-variant^="tab-item-"], [data-theme='light'] [component-variant^="tab-item-"] {
|
|
24578
26597
|
--tab-item-opacity: 1;
|
|
24579
26598
|
--tab-item-height: auto;
|
|
24580
26599
|
--tab-item-min-height: auto;
|
|
@@ -24613,7 +26632,7 @@ span.flatpickr-weekday {
|
|
|
24613
26632
|
--tab-item-paragraph-spacing: ;
|
|
24614
26633
|
--tab-item-paragraph-indent:
|
|
24615
26634
|
}
|
|
24616
|
-
[data-theme='dark'] [component-variant="tab-item-filled-selected"], [data-theme='light'] [component-variant="tab-item-filled-selected"] {
|
|
26635
|
+
[data-theme='custom'] [component-variant="tab-item-filled-selected"], [data-theme='dark'] [component-variant="tab-item-filled-selected"], [data-theme='light'] [component-variant="tab-item-filled-selected"] {
|
|
24617
26636
|
--tab-item-width: 100%;
|
|
24618
26637
|
--tab-item-background-color: var(--interactive-surface-secondary-hover);
|
|
24619
26638
|
--tab-item-color: var(--text-primary);
|
|
@@ -24634,7 +26653,7 @@ span.flatpickr-weekday {
|
|
|
24634
26653
|
--tab-item-paragraph-spacing: 0px;
|
|
24635
26654
|
--tab-item-paragraph-indent: 0px
|
|
24636
26655
|
}
|
|
24637
|
-
[data-theme='dark'] [component-variant="tab-item-filled-selected"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-filled-selected"]:hover:not(:disabled):not([disabled]) {
|
|
26656
|
+
[data-theme='custom'] [component-variant="tab-item-filled-selected"]:hover:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-filled-selected"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-filled-selected"]:hover:not(:disabled):not([disabled]) {
|
|
24638
26657
|
--tab-item-width: 100%;
|
|
24639
26658
|
--tab-item-background-color: var(--interactive-surface-secondary-hover);
|
|
24640
26659
|
--tab-item-color: var(--text-primary);
|
|
@@ -24655,7 +26674,7 @@ span.flatpickr-weekday {
|
|
|
24655
26674
|
--tab-item-paragraph-spacing: 0px;
|
|
24656
26675
|
--tab-item-paragraph-indent: 0px
|
|
24657
26676
|
}
|
|
24658
|
-
[data-theme='dark'] [component-variant="tab-item-filled-selected"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-filled-selected"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-filled-selected"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-filled-selected"]:active:not(:disabled):not([disabled]) {
|
|
26677
|
+
[data-theme='custom'] [component-variant="tab-item-filled-selected"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-filled-selected"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-filled-selected"][active]:not(:disabled):not([disabled]), [data-theme='custom'] [component-variant="tab-item-filled-selected"]:active:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-filled-selected"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-filled-selected"]:active:not(:disabled):not([disabled]) {
|
|
24659
26678
|
--tab-item-width: 100%;
|
|
24660
26679
|
--tab-item-background-color: var(--interactive-surface-secondary-hover);
|
|
24661
26680
|
--tab-item-color: var(--text-primary);
|
|
@@ -24676,7 +26695,7 @@ span.flatpickr-weekday {
|
|
|
24676
26695
|
--tab-item-paragraph-spacing: 0px;
|
|
24677
26696
|
--tab-item-paragraph-indent: 0px
|
|
24678
26697
|
}
|
|
24679
|
-
[data-theme='dark'] [component-variant="tab-item-filled-selected"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-filled-selected"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-filled-selected"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-filled-selected"]:focus-visible:not(:disabled):not([disabled]) {
|
|
26698
|
+
[data-theme='custom'] [component-variant="tab-item-filled-selected"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-filled-selected"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-filled-selected"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='custom'] [component-variant="tab-item-filled-selected"]:focus-visible:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-filled-selected"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-filled-selected"]:focus-visible:not(:disabled):not([disabled]) {
|
|
24680
26699
|
--tab-item-width: 100%;
|
|
24681
26700
|
--tab-item-background-color: var(--interactive-surface-secondary-hover);
|
|
24682
26701
|
--tab-item-color: var(--text-primary);
|
|
@@ -24702,7 +26721,7 @@ span.flatpickr-weekday {
|
|
|
24702
26721
|
--tab-item-paragraph-spacing: 0px;
|
|
24703
26722
|
--tab-item-paragraph-indent: 0px
|
|
24704
26723
|
}
|
|
24705
|
-
[data-theme='dark'] [component-variant="tab-item-filled-unselected"], [data-theme='light'] [component-variant="tab-item-filled-unselected"] {
|
|
26724
|
+
[data-theme='custom'] [component-variant="tab-item-filled-unselected"], [data-theme='dark'] [component-variant="tab-item-filled-unselected"], [data-theme='light'] [component-variant="tab-item-filled-unselected"] {
|
|
24706
26725
|
--tab-item-width: 100%;
|
|
24707
26726
|
--tab-item-background-color: var(--colours-grey-900);
|
|
24708
26727
|
--tab-item-color: var(--text-primary);
|
|
@@ -24723,7 +26742,7 @@ span.flatpickr-weekday {
|
|
|
24723
26742
|
--tab-item-paragraph-spacing: 0px;
|
|
24724
26743
|
--tab-item-paragraph-indent: 0px
|
|
24725
26744
|
}
|
|
24726
|
-
[data-theme='dark'] [component-variant="tab-item-filled-unselected"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-filled-unselected"]:hover:not(:disabled):not([disabled]) {
|
|
26745
|
+
[data-theme='custom'] [component-variant="tab-item-filled-unselected"]:hover:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-filled-unselected"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-filled-unselected"]:hover:not(:disabled):not([disabled]) {
|
|
24727
26746
|
--tab-item-width: 100%;
|
|
24728
26747
|
--tab-item-background-color: var(--colours-grey-700);
|
|
24729
26748
|
--tab-item-color: var(--text-primary);
|
|
@@ -24744,7 +26763,7 @@ span.flatpickr-weekday {
|
|
|
24744
26763
|
--tab-item-paragraph-spacing: 0px;
|
|
24745
26764
|
--tab-item-paragraph-indent: 0px
|
|
24746
26765
|
}
|
|
24747
|
-
[data-theme='dark'] [component-variant="tab-item-filled-unselected"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-filled-unselected"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-filled-unselected"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-filled-unselected"]:active:not(:disabled):not([disabled]) {
|
|
26766
|
+
[data-theme='custom'] [component-variant="tab-item-filled-unselected"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-filled-unselected"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-filled-unselected"][active]:not(:disabled):not([disabled]), [data-theme='custom'] [component-variant="tab-item-filled-unselected"]:active:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-filled-unselected"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-filled-unselected"]:active:not(:disabled):not([disabled]) {
|
|
24748
26767
|
--tab-item-width: 100%;
|
|
24749
26768
|
--tab-item-background-color: var(--colours-grey-700);
|
|
24750
26769
|
--tab-item-color: var(--text-primary);
|
|
@@ -24765,7 +26784,7 @@ span.flatpickr-weekday {
|
|
|
24765
26784
|
--tab-item-paragraph-spacing: 0px;
|
|
24766
26785
|
--tab-item-paragraph-indent: 0px
|
|
24767
26786
|
}
|
|
24768
|
-
[data-theme='dark'] [component-variant="tab-item-filled-unselected"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-filled-unselected"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-filled-unselected"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-filled-unselected"]:focus-visible:not(:disabled):not([disabled]) {
|
|
26787
|
+
[data-theme='custom'] [component-variant="tab-item-filled-unselected"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-filled-unselected"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-filled-unselected"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='custom'] [component-variant="tab-item-filled-unselected"]:focus-visible:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-filled-unselected"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-filled-unselected"]:focus-visible:not(:disabled):not([disabled]) {
|
|
24769
26788
|
--tab-item-width: 100%;
|
|
24770
26789
|
--tab-item-background-color: var(--colours-grey-700);
|
|
24771
26790
|
--tab-item-color: var(--text-primary);
|
|
@@ -24791,13 +26810,11 @@ span.flatpickr-weekday {
|
|
|
24791
26810
|
--tab-item-paragraph-spacing: 0px;
|
|
24792
26811
|
--tab-item-paragraph-indent: 0px
|
|
24793
26812
|
}
|
|
24794
|
-
[data-theme='dark'] [component-variant="tab-item-underlined-selected"], [data-theme='light'] [component-variant="tab-item-underlined-selected"] {
|
|
26813
|
+
[data-theme='custom'] [component-variant="tab-item-underlined-selected"], [data-theme='dark'] [component-variant="tab-item-underlined-selected"], [data-theme='light'] [component-variant="tab-item-underlined-selected"] {
|
|
24795
26814
|
--tab-item-color: var(--text-primary);
|
|
24796
|
-
--tab-item-border-color: var(--colours-purple-500);
|
|
24797
|
-
--tab-item-border-bottom-width: 2px;
|
|
24798
26815
|
--tab-item-padding-top: var(--spacing-space-5);
|
|
24799
|
-
--tab-item-row-gap: var(--spacing-space-
|
|
24800
|
-
--tab-item-column-gap: var(--spacing-space-
|
|
26816
|
+
--tab-item-row-gap: var(--spacing-space-4);
|
|
26817
|
+
--tab-item-column-gap: var(--spacing-space-4);
|
|
24801
26818
|
--tab-item-font-family: var(--font-family-body);
|
|
24802
26819
|
--tab-item-font-size: var(--font-size-body-small);
|
|
24803
26820
|
--tab-item-font-weight: var(--font-weight-medium);
|
|
@@ -24806,11 +26823,11 @@ span.flatpickr-weekday {
|
|
|
24806
26823
|
--tab-item-paragraph-indent: 0px;
|
|
24807
26824
|
--tab-item-width: 100%
|
|
24808
26825
|
}
|
|
24809
|
-
[data-theme='dark'] [component-variant="tab-item-underlined-selected"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-underlined-selected"]:hover:not(:disabled):not([disabled]) {
|
|
26826
|
+
[data-theme='custom'] [component-variant="tab-item-underlined-selected"]:hover:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-underlined-selected"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-underlined-selected"]:hover:not(:disabled):not([disabled]) {
|
|
24810
26827
|
--tab-item-color: var(--text-primary);
|
|
24811
26828
|
--tab-item-padding-top: var(--spacing-space-5);
|
|
24812
|
-
--tab-item-row-gap: var(--spacing-space-
|
|
24813
|
-
--tab-item-column-gap: var(--spacing-space-
|
|
26829
|
+
--tab-item-row-gap: var(--spacing-space-4);
|
|
26830
|
+
--tab-item-column-gap: var(--spacing-space-4);
|
|
24814
26831
|
--tab-item-font-family: var(--font-family-body);
|
|
24815
26832
|
--tab-item-font-size: var(--font-size-body-small);
|
|
24816
26833
|
--tab-item-font-weight: var(--font-weight-medium);
|
|
@@ -24819,11 +26836,11 @@ span.flatpickr-weekday {
|
|
|
24819
26836
|
--tab-item-paragraph-indent: 0px;
|
|
24820
26837
|
--tab-item-width: 100%
|
|
24821
26838
|
}
|
|
24822
|
-
[data-theme='dark'] [component-variant="tab-item-underlined-selected"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-underlined-selected"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-underlined-selected"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-underlined-selected"]:active:not(:disabled):not([disabled]) {
|
|
26839
|
+
[data-theme='custom'] [component-variant="tab-item-underlined-selected"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-underlined-selected"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-underlined-selected"][active]:not(:disabled):not([disabled]), [data-theme='custom'] [component-variant="tab-item-underlined-selected"]:active:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-underlined-selected"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-underlined-selected"]:active:not(:disabled):not([disabled]) {
|
|
24823
26840
|
--tab-item-color: var(--text-primary);
|
|
24824
26841
|
--tab-item-padding-top: var(--spacing-space-5);
|
|
24825
|
-
--tab-item-row-gap: var(--spacing-space-
|
|
24826
|
-
--tab-item-column-gap: var(--spacing-space-
|
|
26842
|
+
--tab-item-row-gap: var(--spacing-space-4);
|
|
26843
|
+
--tab-item-column-gap: var(--spacing-space-4);
|
|
24827
26844
|
--tab-item-font-family: var(--font-family-body);
|
|
24828
26845
|
--tab-item-font-size: var(--font-size-body-small);
|
|
24829
26846
|
--tab-item-font-weight: var(--font-weight-medium);
|
|
@@ -24832,31 +26849,29 @@ span.flatpickr-weekday {
|
|
|
24832
26849
|
--tab-item-paragraph-indent: 0px;
|
|
24833
26850
|
--tab-item-width: 100%
|
|
24834
26851
|
}
|
|
24835
|
-
[data-theme='dark'] [component-variant="tab-item-underlined-selected"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-underlined-selected"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-underlined-selected"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-underlined-selected"]:focus-visible:not(:disabled):not([disabled]) {
|
|
26852
|
+
[data-theme='custom'] [component-variant="tab-item-underlined-selected"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-underlined-selected"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-underlined-selected"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='custom'] [component-variant="tab-item-underlined-selected"]:focus-visible:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-underlined-selected"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-underlined-selected"]:focus-visible:not(:disabled):not([disabled]) {
|
|
24836
26853
|
--tab-item-color: var(--text-primary);
|
|
24837
26854
|
--tab-item-border-color: var(--border-border-grey-1);
|
|
24838
26855
|
--tab-item-border-top-width: 2px;
|
|
24839
26856
|
--tab-item-border-right-width: 2px;
|
|
24840
26857
|
--tab-item-border-bottom-width: 2px;
|
|
24841
26858
|
--tab-item-border-left-width: 2px;
|
|
24842
|
-
--tab-item-padding-
|
|
24843
|
-
--tab-item-padding-
|
|
24844
|
-
--tab-item-row-gap: var(--spacing-space-
|
|
24845
|
-
--tab-item-column-gap: var(--spacing-space-
|
|
26859
|
+
--tab-item-padding-top: var(--spacing-space-5);
|
|
26860
|
+
--tab-item-padding-bottom: var(--spacing-space-5);
|
|
26861
|
+
--tab-item-row-gap: var(--spacing-space-4);
|
|
26862
|
+
--tab-item-column-gap: var(--spacing-space-4);
|
|
24846
26863
|
--tab-item-font-family: var(--font-family-body);
|
|
24847
26864
|
--tab-item-font-size: var(--font-size-body-small);
|
|
24848
26865
|
--tab-item-font-weight: var(--font-weight-medium);
|
|
24849
26866
|
--tab-item-line-height: var(--line-height-body-small);
|
|
24850
26867
|
--tab-item-paragraph-spacing: 0px;
|
|
24851
26868
|
--tab-item-paragraph-indent: 0px;
|
|
24852
|
-
--tab-item-height: 34px;
|
|
24853
26869
|
--tab-item-width: 100%
|
|
24854
26870
|
}
|
|
24855
|
-
[data-theme='dark'] [component-variant="tab-item-underlined-unselected"], [data-theme='light'] [component-variant="tab-item-underlined-unselected"] {
|
|
24856
|
-
--tab-item-height: 34px;
|
|
26871
|
+
[data-theme='custom'] [component-variant="tab-item-underlined-unselected"], [data-theme='dark'] [component-variant="tab-item-underlined-unselected"], [data-theme='light'] [component-variant="tab-item-underlined-unselected"] {
|
|
24857
26872
|
--tab-item-color: var(--text-secondary);
|
|
24858
|
-
--tab-item-padding-
|
|
24859
|
-
--tab-item-padding-
|
|
26873
|
+
--tab-item-padding-top: var(--spacing-space-5);
|
|
26874
|
+
--tab-item-padding-bottom: var(--spacing-space-5);
|
|
24860
26875
|
--tab-item-row-gap: var(--spacing-space-5);
|
|
24861
26876
|
--tab-item-column-gap: var(--spacing-space-5);
|
|
24862
26877
|
--tab-item-font-family: var(--font-family-body);
|
|
@@ -24867,11 +26882,10 @@ span.flatpickr-weekday {
|
|
|
24867
26882
|
--tab-item-paragraph-indent: 0px;
|
|
24868
26883
|
--tab-item-width: 100%
|
|
24869
26884
|
}
|
|
24870
|
-
[data-theme='dark'] [component-variant="tab-item-underlined-unselected"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-underlined-unselected"]:hover:not(:disabled):not([disabled]) {
|
|
24871
|
-
--tab-item-height: 34px;
|
|
26885
|
+
[data-theme='custom'] [component-variant="tab-item-underlined-unselected"]:hover:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-underlined-unselected"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-underlined-unselected"]:hover:not(:disabled):not([disabled]) {
|
|
24872
26886
|
--tab-item-color: var(--text-primary);
|
|
24873
|
-
--tab-item-padding-
|
|
24874
|
-
--tab-item-padding-
|
|
26887
|
+
--tab-item-padding-top: var(--spacing-space-5);
|
|
26888
|
+
--tab-item-padding-bottom: var(--spacing-space-5);
|
|
24875
26889
|
--tab-item-row-gap: var(--spacing-space-5);
|
|
24876
26890
|
--tab-item-column-gap: var(--spacing-space-5);
|
|
24877
26891
|
--tab-item-font-family: var(--font-family-body);
|
|
@@ -24882,11 +26896,10 @@ span.flatpickr-weekday {
|
|
|
24882
26896
|
--tab-item-paragraph-indent: 0px;
|
|
24883
26897
|
--tab-item-width: 100%
|
|
24884
26898
|
}
|
|
24885
|
-
[data-theme='dark'] [component-variant="tab-item-underlined-unselected"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-underlined-unselected"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-underlined-unselected"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-underlined-unselected"]:active:not(:disabled):not([disabled]) {
|
|
24886
|
-
--tab-item-height: 34px;
|
|
26899
|
+
[data-theme='custom'] [component-variant="tab-item-underlined-unselected"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-underlined-unselected"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-underlined-unselected"][active]:not(:disabled):not([disabled]), [data-theme='custom'] [component-variant="tab-item-underlined-unselected"]:active:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-underlined-unselected"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-underlined-unselected"]:active:not(:disabled):not([disabled]) {
|
|
24887
26900
|
--tab-item-color: var(--text-primary);
|
|
24888
|
-
--tab-item-padding-
|
|
24889
|
-
--tab-item-padding-
|
|
26901
|
+
--tab-item-padding-top: var(--spacing-space-5);
|
|
26902
|
+
--tab-item-padding-bottom: var(--spacing-space-5);
|
|
24890
26903
|
--tab-item-row-gap: var(--spacing-space-5);
|
|
24891
26904
|
--tab-item-column-gap: var(--spacing-space-5);
|
|
24892
26905
|
--tab-item-font-family: var(--font-family-body);
|
|
@@ -24897,16 +26910,15 @@ span.flatpickr-weekday {
|
|
|
24897
26910
|
--tab-item-paragraph-indent: 0px;
|
|
24898
26911
|
--tab-item-width: 100%
|
|
24899
26912
|
}
|
|
24900
|
-
[data-theme='dark'] [component-variant="tab-item-underlined-unselected"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-underlined-unselected"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-underlined-unselected"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-underlined-unselected"]:focus-visible:not(:disabled):not([disabled]) {
|
|
24901
|
-
--tab-item-height: 34px;
|
|
26913
|
+
[data-theme='custom'] [component-variant="tab-item-underlined-unselected"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-underlined-unselected"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-underlined-unselected"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='custom'] [component-variant="tab-item-underlined-unselected"]:focus-visible:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-underlined-unselected"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-underlined-unselected"]:focus-visible:not(:disabled):not([disabled]) {
|
|
24902
26914
|
--tab-item-color: var(--text-primary);
|
|
24903
26915
|
--tab-item-border-color: var(--border-border-grey-1);
|
|
24904
26916
|
--tab-item-border-top-width: 1px;
|
|
24905
26917
|
--tab-item-border-right-width: 1px;
|
|
24906
26918
|
--tab-item-border-bottom-width: 1px;
|
|
24907
26919
|
--tab-item-border-left-width: 1px;
|
|
24908
|
-
--tab-item-padding-
|
|
24909
|
-
--tab-item-padding-
|
|
26920
|
+
--tab-item-padding-top: var(--spacing-space-5);
|
|
26921
|
+
--tab-item-padding-bottom: var(--spacing-space-5);
|
|
24910
26922
|
--tab-item-row-gap: var(--spacing-space-5);
|
|
24911
26923
|
--tab-item-column-gap: var(--spacing-space-5);
|
|
24912
26924
|
--tab-item-font-family: var(--font-family-body);
|
|
@@ -24917,6 +26929,206 @@ span.flatpickr-weekday {
|
|
|
24917
26929
|
--tab-item-paragraph-indent: 0px;
|
|
24918
26930
|
--tab-item-width: 100%
|
|
24919
26931
|
}
|
|
26932
|
+
[data-theme='custom'] [component-variant="tab-item-filled-selected"], [data-theme='dark'] [component-variant="tab-item-filled-selected"], [data-theme='light'] [component-variant="tab-item-filled-selected"] {
|
|
26933
|
+
--tab-item-wrapper-row-gap: 8px;
|
|
26934
|
+
--tab-item-wrapper-column-gap: 8px;
|
|
26935
|
+
--tab-item-wrapper-font-family: sans-sarif;
|
|
26936
|
+
--tab-item-wrapper-font-size: initial;
|
|
26937
|
+
--tab-item-wrapper-font-weight: regular;
|
|
26938
|
+
--tab-item-wrapper-paragraph-spacing: 0px;
|
|
26939
|
+
--tab-item-wrapper-paragraph-indent: 0px
|
|
26940
|
+
}
|
|
26941
|
+
[data-theme='custom'] [component-variant="tab-item-filled-selected"]:hover:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-filled-selected"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-filled-selected"]:hover:not(:disabled):not([disabled]) {
|
|
26942
|
+
--tab-item-wrapper-row-gap: 8px;
|
|
26943
|
+
--tab-item-wrapper-column-gap: 8px;
|
|
26944
|
+
--tab-item-wrapper-font-family: sans-sarif;
|
|
26945
|
+
--tab-item-wrapper-font-size: initial;
|
|
26946
|
+
--tab-item-wrapper-font-weight: regular;
|
|
26947
|
+
--tab-item-wrapper-paragraph-spacing: 0px;
|
|
26948
|
+
--tab-item-wrapper-paragraph-indent: 0px
|
|
26949
|
+
}
|
|
26950
|
+
[data-theme='custom'] [component-variant="tab-item-filled-selected"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-filled-selected"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-filled-selected"][active]:not(:disabled):not([disabled]), [data-theme='custom'] [component-variant="tab-item-filled-selected"]:active:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-filled-selected"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-filled-selected"]:active:not(:disabled):not([disabled]) {
|
|
26951
|
+
--tab-item-wrapper-row-gap: 8px;
|
|
26952
|
+
--tab-item-wrapper-column-gap: 8px;
|
|
26953
|
+
--tab-item-wrapper-font-family: sans-sarif;
|
|
26954
|
+
--tab-item-wrapper-font-size: initial;
|
|
26955
|
+
--tab-item-wrapper-font-weight: regular;
|
|
26956
|
+
--tab-item-wrapper-paragraph-spacing: 0px;
|
|
26957
|
+
--tab-item-wrapper-paragraph-indent: 0px
|
|
26958
|
+
}
|
|
26959
|
+
[data-theme='custom'] [component-variant="tab-item-filled-selected"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-filled-selected"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-filled-selected"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='custom'] [component-variant="tab-item-filled-selected"]:focus-visible:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-filled-selected"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-filled-selected"]:focus-visible:not(:disabled):not([disabled]) {
|
|
26960
|
+
--tab-item-wrapper-row-gap: 8px;
|
|
26961
|
+
--tab-item-wrapper-column-gap: 8px;
|
|
26962
|
+
--tab-item-wrapper-font-family: sans-sarif;
|
|
26963
|
+
--tab-item-wrapper-font-size: initial;
|
|
26964
|
+
--tab-item-wrapper-font-weight: regular;
|
|
26965
|
+
--tab-item-wrapper-paragraph-spacing: 0px;
|
|
26966
|
+
--tab-item-wrapper-paragraph-indent: 0px
|
|
26967
|
+
}
|
|
26968
|
+
[data-theme='custom'] [component-variant="tab-item-filled-unselected"], [data-theme='dark'] [component-variant="tab-item-filled-unselected"], [data-theme='light'] [component-variant="tab-item-filled-unselected"] {
|
|
26969
|
+
--tab-item-wrapper-row-gap: 8px;
|
|
26970
|
+
--tab-item-wrapper-column-gap: 8px;
|
|
26971
|
+
--tab-item-wrapper-font-family: sans-sarif;
|
|
26972
|
+
--tab-item-wrapper-font-size: initial;
|
|
26973
|
+
--tab-item-wrapper-font-weight: regular;
|
|
26974
|
+
--tab-item-wrapper-paragraph-spacing: 0px;
|
|
26975
|
+
--tab-item-wrapper-paragraph-indent: 0px
|
|
26976
|
+
}
|
|
26977
|
+
[data-theme='custom'] [component-variant="tab-item-filled-unselected"]:hover:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-filled-unselected"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-filled-unselected"]:hover:not(:disabled):not([disabled]) {
|
|
26978
|
+
--tab-item-wrapper-row-gap: 8px;
|
|
26979
|
+
--tab-item-wrapper-column-gap: 8px;
|
|
26980
|
+
--tab-item-wrapper-font-family: sans-sarif;
|
|
26981
|
+
--tab-item-wrapper-font-size: initial;
|
|
26982
|
+
--tab-item-wrapper-font-weight: regular;
|
|
26983
|
+
--tab-item-wrapper-paragraph-spacing: 0px;
|
|
26984
|
+
--tab-item-wrapper-paragraph-indent: 0px
|
|
26985
|
+
}
|
|
26986
|
+
[data-theme='custom'] [component-variant="tab-item-filled-unselected"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-filled-unselected"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-filled-unselected"][active]:not(:disabled):not([disabled]), [data-theme='custom'] [component-variant="tab-item-filled-unselected"]:active:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-filled-unselected"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-filled-unselected"]:active:not(:disabled):not([disabled]) {
|
|
26987
|
+
--tab-item-wrapper-row-gap: 8px;
|
|
26988
|
+
--tab-item-wrapper-column-gap: 8px;
|
|
26989
|
+
--tab-item-wrapper-font-family: sans-sarif;
|
|
26990
|
+
--tab-item-wrapper-font-size: initial;
|
|
26991
|
+
--tab-item-wrapper-font-weight: regular;
|
|
26992
|
+
--tab-item-wrapper-paragraph-spacing: 0px;
|
|
26993
|
+
--tab-item-wrapper-paragraph-indent: 0px
|
|
26994
|
+
}
|
|
26995
|
+
[data-theme='custom'] [component-variant="tab-item-filled-unselected"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-filled-unselected"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-filled-unselected"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='custom'] [component-variant="tab-item-filled-unselected"]:focus-visible:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-filled-unselected"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-filled-unselected"]:focus-visible:not(:disabled):not([disabled]) {
|
|
26996
|
+
--tab-item-wrapper-row-gap: 8px;
|
|
26997
|
+
--tab-item-wrapper-column-gap: 8px;
|
|
26998
|
+
--tab-item-wrapper-font-family: sans-sarif;
|
|
26999
|
+
--tab-item-wrapper-font-size: initial;
|
|
27000
|
+
--tab-item-wrapper-font-weight: regular;
|
|
27001
|
+
--tab-item-wrapper-paragraph-spacing: 0px;
|
|
27002
|
+
--tab-item-wrapper-paragraph-indent: 0px
|
|
27003
|
+
}
|
|
27004
|
+
[data-theme='custom'] [component-variant="tab-item-underlined-selected"], [data-theme='dark'] [component-variant="tab-item-underlined-selected"], [data-theme='light'] [component-variant="tab-item-underlined-selected"] {
|
|
27005
|
+
--tab-item-wrapper-padding-left: var(--spacing-space-3);
|
|
27006
|
+
--tab-item-wrapper-padding-right: var(--spacing-space-3);
|
|
27007
|
+
--tab-item-wrapper-row-gap: 8px;
|
|
27008
|
+
--tab-item-wrapper-column-gap: 8px;
|
|
27009
|
+
--tab-item-wrapper-font-family: sans-sarif;
|
|
27010
|
+
--tab-item-wrapper-font-size: initial;
|
|
27011
|
+
--tab-item-wrapper-font-weight: regular;
|
|
27012
|
+
--tab-item-wrapper-paragraph-spacing: 0px;
|
|
27013
|
+
--tab-item-wrapper-paragraph-indent: 0px
|
|
27014
|
+
}
|
|
27015
|
+
[data-theme='custom'] [component-variant="tab-item-underlined-selected"]:hover:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-underlined-selected"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-underlined-selected"]:hover:not(:disabled):not([disabled]) {
|
|
27016
|
+
--tab-item-wrapper-padding-left: var(--spacing-space-3);
|
|
27017
|
+
--tab-item-wrapper-padding-right: var(--spacing-space-3);
|
|
27018
|
+
--tab-item-wrapper-row-gap: 8px;
|
|
27019
|
+
--tab-item-wrapper-column-gap: 8px;
|
|
27020
|
+
--tab-item-wrapper-font-family: sans-sarif;
|
|
27021
|
+
--tab-item-wrapper-font-size: initial;
|
|
27022
|
+
--tab-item-wrapper-font-weight: regular;
|
|
27023
|
+
--tab-item-wrapper-paragraph-spacing: 0px;
|
|
27024
|
+
--tab-item-wrapper-paragraph-indent: 0px
|
|
27025
|
+
}
|
|
27026
|
+
[data-theme='custom'] [component-variant="tab-item-underlined-selected"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-underlined-selected"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-underlined-selected"][active]:not(:disabled):not([disabled]), [data-theme='custom'] [component-variant="tab-item-underlined-selected"]:active:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-underlined-selected"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-underlined-selected"]:active:not(:disabled):not([disabled]) {
|
|
27027
|
+
--tab-item-wrapper-padding-left: var(--spacing-space-3);
|
|
27028
|
+
--tab-item-wrapper-padding-right: var(--spacing-space-3);
|
|
27029
|
+
--tab-item-wrapper-row-gap: 8px;
|
|
27030
|
+
--tab-item-wrapper-column-gap: 8px;
|
|
27031
|
+
--tab-item-wrapper-font-family: sans-sarif;
|
|
27032
|
+
--tab-item-wrapper-font-size: initial;
|
|
27033
|
+
--tab-item-wrapper-font-weight: regular;
|
|
27034
|
+
--tab-item-wrapper-paragraph-spacing: 0px;
|
|
27035
|
+
--tab-item-wrapper-paragraph-indent: 0px
|
|
27036
|
+
}
|
|
27037
|
+
[data-theme='custom'] [component-variant="tab-item-underlined-selected"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-underlined-selected"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-underlined-selected"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='custom'] [component-variant="tab-item-underlined-selected"]:focus-visible:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-underlined-selected"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-underlined-selected"]:focus-visible:not(:disabled):not([disabled]) {
|
|
27038
|
+
--tab-item-wrapper-padding-left: var(--spacing-space-3);
|
|
27039
|
+
--tab-item-wrapper-padding-right: var(--spacing-space-3);
|
|
27040
|
+
--tab-item-wrapper-row-gap: 8px;
|
|
27041
|
+
--tab-item-wrapper-column-gap: 8px;
|
|
27042
|
+
--tab-item-wrapper-font-family: sans-sarif;
|
|
27043
|
+
--tab-item-wrapper-font-size: initial;
|
|
27044
|
+
--tab-item-wrapper-font-weight: regular;
|
|
27045
|
+
--tab-item-wrapper-paragraph-spacing: 0px;
|
|
27046
|
+
--tab-item-wrapper-paragraph-indent: 0px
|
|
27047
|
+
}
|
|
27048
|
+
[data-theme='custom'] [component-variant="tab-item-underlined-unselected"], [data-theme='dark'] [component-variant="tab-item-underlined-unselected"], [data-theme='light'] [component-variant="tab-item-underlined-unselected"] {
|
|
27049
|
+
--tab-item-wrapper-row-gap: 8px;
|
|
27050
|
+
--tab-item-wrapper-column-gap: 8px;
|
|
27051
|
+
--tab-item-wrapper-font-family: sans-sarif;
|
|
27052
|
+
--tab-item-wrapper-font-size: initial;
|
|
27053
|
+
--tab-item-wrapper-font-weight: regular;
|
|
27054
|
+
--tab-item-wrapper-paragraph-spacing: 0px;
|
|
27055
|
+
--tab-item-wrapper-paragraph-indent: 0px
|
|
27056
|
+
}
|
|
27057
|
+
[data-theme='custom'] [component-variant="tab-item-underlined-unselected"]:hover:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-underlined-unselected"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-underlined-unselected"]:hover:not(:disabled):not([disabled]) {
|
|
27058
|
+
--tab-item-wrapper-row-gap: 8px;
|
|
27059
|
+
--tab-item-wrapper-column-gap: 8px;
|
|
27060
|
+
--tab-item-wrapper-font-family: sans-sarif;
|
|
27061
|
+
--tab-item-wrapper-font-size: initial;
|
|
27062
|
+
--tab-item-wrapper-font-weight: regular;
|
|
27063
|
+
--tab-item-wrapper-paragraph-spacing: 0px;
|
|
27064
|
+
--tab-item-wrapper-paragraph-indent: 0px
|
|
27065
|
+
}
|
|
27066
|
+
[data-theme='custom'] [component-variant="tab-item-underlined-unselected"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-underlined-unselected"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-underlined-unselected"][active]:not(:disabled):not([disabled]), [data-theme='custom'] [component-variant="tab-item-underlined-unselected"]:active:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-underlined-unselected"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-underlined-unselected"]:active:not(:disabled):not([disabled]) {
|
|
27067
|
+
--tab-item-wrapper-row-gap: 8px;
|
|
27068
|
+
--tab-item-wrapper-column-gap: 8px;
|
|
27069
|
+
--tab-item-wrapper-font-family: sans-sarif;
|
|
27070
|
+
--tab-item-wrapper-font-size: initial;
|
|
27071
|
+
--tab-item-wrapper-font-weight: regular;
|
|
27072
|
+
--tab-item-wrapper-paragraph-spacing: 0px;
|
|
27073
|
+
--tab-item-wrapper-paragraph-indent: 0px
|
|
27074
|
+
}
|
|
27075
|
+
[data-theme='custom'] [component-variant="tab-item-underlined-unselected"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-underlined-unselected"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-underlined-unselected"]:has(:focus-visible):not(:disabled):not([disabled]), [data-theme='custom'] [component-variant="tab-item-underlined-unselected"]:focus-visible:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-underlined-unselected"]:focus-visible:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-underlined-unselected"]:focus-visible:not(:disabled):not([disabled]) {
|
|
27076
|
+
--tab-item-wrapper-row-gap: 8px;
|
|
27077
|
+
--tab-item-wrapper-column-gap: 8px;
|
|
27078
|
+
--tab-item-wrapper-font-family: sans-sarif;
|
|
27079
|
+
--tab-item-wrapper-font-size: initial;
|
|
27080
|
+
--tab-item-wrapper-font-weight: regular;
|
|
27081
|
+
--tab-item-wrapper-paragraph-spacing: 0px;
|
|
27082
|
+
--tab-item-wrapper-paragraph-indent: 0px
|
|
27083
|
+
}
|
|
27084
|
+
[data-theme='custom'] [component-variant="tab-item-underlined-selected"], [data-theme='dark'] [component-variant="tab-item-underlined-selected"], [data-theme='light'] [component-variant="tab-item-underlined-selected"] {
|
|
27085
|
+
--tab-item-underline-height: 2px;
|
|
27086
|
+
--tab-item-underline-width: 100%;
|
|
27087
|
+
--tab-item-underline-background-color: var(--border-primary);
|
|
27088
|
+
--tab-item-underline-padding-left: 10px;
|
|
27089
|
+
--tab-item-underline-padding-right: 10px;
|
|
27090
|
+
--tab-item-underline-padding-top: 10px;
|
|
27091
|
+
--tab-item-underline-padding-bottom: 10px;
|
|
27092
|
+
--tab-item-underline-row-gap: 10px;
|
|
27093
|
+
--tab-item-underline-column-gap: 10px;
|
|
27094
|
+
--tab-item-underline-font-family: sans-sarif;
|
|
27095
|
+
--tab-item-underline-font-size: initial;
|
|
27096
|
+
--tab-item-underline-font-weight: regular;
|
|
27097
|
+
--tab-item-underline-paragraph-spacing: 0px;
|
|
27098
|
+
--tab-item-underline-paragraph-indent: 0px
|
|
27099
|
+
}
|
|
27100
|
+
[data-theme='custom'] [component-variant="tab-item-underlined-selected"]:hover:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-underlined-selected"]:hover:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-underlined-selected"]:hover:not(:disabled):not([disabled]) {
|
|
27101
|
+
--tab-item-underline-height: 2px;
|
|
27102
|
+
--tab-item-underline-width: 100%;
|
|
27103
|
+
--tab-item-underline-background-color: var(--border-primary);
|
|
27104
|
+
--tab-item-underline-padding-left: 10px;
|
|
27105
|
+
--tab-item-underline-padding-right: 10px;
|
|
27106
|
+
--tab-item-underline-padding-top: 10px;
|
|
27107
|
+
--tab-item-underline-padding-bottom: 10px;
|
|
27108
|
+
--tab-item-underline-row-gap: 10px;
|
|
27109
|
+
--tab-item-underline-column-gap: 10px;
|
|
27110
|
+
--tab-item-underline-font-family: sans-sarif;
|
|
27111
|
+
--tab-item-underline-font-size: initial;
|
|
27112
|
+
--tab-item-underline-font-weight: regular;
|
|
27113
|
+
--tab-item-underline-paragraph-spacing: 0px;
|
|
27114
|
+
--tab-item-underline-paragraph-indent: 0px
|
|
27115
|
+
}
|
|
27116
|
+
[data-theme='custom'] [component-variant="tab-item-underlined-selected"][active]:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-underlined-selected"][active]:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-underlined-selected"][active]:not(:disabled):not([disabled]), [data-theme='custom'] [component-variant="tab-item-underlined-selected"]:active:not(:disabled):not([disabled]), [data-theme='dark'] [component-variant="tab-item-underlined-selected"]:active:not(:disabled):not([disabled]), [data-theme='light'] [component-variant="tab-item-underlined-selected"]:active:not(:disabled):not([disabled]) {
|
|
27117
|
+
--tab-item-underline-width: 100%;
|
|
27118
|
+
--tab-item-underline-background-color: var(--border-primary);
|
|
27119
|
+
--tab-item-underline-padding-left: 10px;
|
|
27120
|
+
--tab-item-underline-padding-right: 10px;
|
|
27121
|
+
--tab-item-underline-padding-top: 10px;
|
|
27122
|
+
--tab-item-underline-padding-bottom: 10px;
|
|
27123
|
+
--tab-item-underline-row-gap: 10px;
|
|
27124
|
+
--tab-item-underline-column-gap: 10px;
|
|
27125
|
+
--tab-item-underline-font-family: sans-sarif;
|
|
27126
|
+
--tab-item-underline-font-size: initial;
|
|
27127
|
+
--tab-item-underline-font-weight: regular;
|
|
27128
|
+
--tab-item-underline-paragraph-spacing: 0px;
|
|
27129
|
+
--tab-item-underline-paragraph-indent: 0px;
|
|
27130
|
+
--tab-item-underline-height: 2px
|
|
27131
|
+
}
|
|
24920
27132
|
[data-theme='dark'] [component-variant^="tabs-header-"], [data-theme='light'] [component-variant^="tabs-header-"] {
|
|
24921
27133
|
--tabs-header-opacity: 1;
|
|
24922
27134
|
--tabs-header-height: auto;
|