@rovula/ui 0.0.30 → 0.0.31
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/bundle.css +99 -69
- package/dist/cjs/bundle.js +2 -2
- package/dist/cjs/bundle.js.map +1 -1
- package/dist/cjs/types/components/Dropdown/Dropdown.d.ts +12 -2
- package/dist/cjs/types/components/Dropdown/Dropdown.stories.d.ts +12 -2
- package/dist/cjs/types/components/InputFilter/InputFilter.d.ts +63 -4
- package/dist/cjs/types/components/InputFilter/InputFilter.stories.d.ts +54 -18
- package/dist/cjs/types/components/InputFilter/InputFilter.styles.d.ts +1 -0
- package/dist/cjs/types/components/Search/Search.stories.d.ts +7 -1
- package/dist/components/ActionButton/ActionButton.stories.js +1 -1
- package/dist/components/Checkbox/Checkbox.js +3 -3
- package/dist/components/Checkbox/Checkbox.stories.js +1 -1
- package/dist/components/Dropdown/Dropdown.js +12 -8
- package/dist/components/Dropdown/Dropdown.styles.js +1 -1
- package/dist/components/InputFilter/InputFilter.js +118 -12
- package/dist/components/InputFilter/InputFilter.stories.js +5 -4
- package/dist/components/InputFilter/InputFilter.styles.js +9 -4
- package/dist/components/RadioGroup/RadioGroup.js +5 -2
- package/dist/components/RadioGroup/RadioGroup.stories.js +1 -1
- package/dist/components/Search/Search.stories.js +2 -1
- package/dist/components/TextInput/TextInput.js +2 -1
- package/dist/components/TextInput/TextInput.styles.js +10 -9
- package/dist/esm/bundle.css +99 -69
- package/dist/esm/bundle.js +2 -2
- package/dist/esm/bundle.js.map +1 -1
- package/dist/esm/types/components/Dropdown/Dropdown.d.ts +12 -2
- package/dist/esm/types/components/Dropdown/Dropdown.stories.d.ts +12 -2
- package/dist/esm/types/components/InputFilter/InputFilter.d.ts +63 -4
- package/dist/esm/types/components/InputFilter/InputFilter.stories.d.ts +54 -18
- package/dist/esm/types/components/InputFilter/InputFilter.styles.d.ts +1 -0
- package/dist/esm/types/components/Search/Search.stories.d.ts +7 -1
- package/dist/index.d.ts +83 -14
- package/dist/src/theme/global.css +225 -173
- package/dist/theme/presets/colors.js +21 -0
- package/dist/theme/themes/xspector/color.css +13 -0
- package/dist/theme/themes/xspector/components/action-button.css +44 -42
- package/dist/theme/themes/xspector/state.css +1 -1
- package/dist/theme/tokens/color.css +13 -0
- package/dist/theme/tokens/components/action-button.css +42 -55
- package/package.json +1 -1
- package/src/components/ActionButton/ActionButton.stories.tsx +1 -1
- package/src/components/Checkbox/Checkbox.stories.tsx +1 -1
- package/src/components/Checkbox/Checkbox.tsx +4 -4
- package/src/components/Dropdown/Dropdown.styles.ts +1 -1
- package/src/components/Dropdown/Dropdown.tsx +22 -8
- package/src/components/InputFilter/InputFilter.stories.tsx +9 -8
- package/src/components/InputFilter/InputFilter.styles.ts +9 -4
- package/src/components/InputFilter/InputFilter.tsx +301 -42
- package/src/components/RadioGroup/RadioGroup.stories.tsx +1 -1
- package/src/components/RadioGroup/RadioGroup.tsx +7 -9
- package/src/components/Search/Search.stories.tsx +2 -1
- package/src/components/TextInput/TextInput.styles.ts +10 -9
- package/src/components/TextInput/TextInput.tsx +11 -10
- package/src/theme/presets/colors.js +21 -0
- package/src/theme/themes/xspector/color.css +13 -0
- package/src/theme/themes/xspector/components/action-button.css +44 -42
- package/src/theme/themes/xspector/state.css +1 -1
- package/src/theme/tokens/color.css +13 -0
- package/src/theme/tokens/components/action-button.css +42 -55
|
@@ -206,6 +206,18 @@
|
|
|
206
206
|
--input-color-label-bg: #ffffff;
|
|
207
207
|
/* #2d2e30; */
|
|
208
208
|
--input-color-error: #ed2f15;
|
|
209
|
+
/* Function button */
|
|
210
|
+
--function-default-solid: #1e3249;
|
|
211
|
+
--function-default-hover: #35475b;
|
|
212
|
+
--function-default-hover-bg: rgba(30 50 73 / 0.08);
|
|
213
|
+
--function-default-stroke: rgba(30 50 73 / 0.48);
|
|
214
|
+
--function-default-icon: #ffffff;
|
|
215
|
+
--function-default-outline-icon: #1e3249;
|
|
216
|
+
--function-active-solid: #9b8f00;
|
|
217
|
+
--function-active-hover: #b1a400;
|
|
218
|
+
--function-active-hover-bg: rgba(221 205 0 / 0.08);
|
|
219
|
+
--function-active-stroke: rgba(177 164 0 / 0.48);
|
|
220
|
+
--function-active-icon: #ffffff;
|
|
209
221
|
--text-dark: #18283a;
|
|
210
222
|
--text-medium: #4b5b6d;
|
|
211
223
|
--text-light: #8e98a4;
|
|
@@ -953,42 +965,30 @@
|
|
|
953
965
|
/* ------------------------------------------------------------------ */
|
|
954
966
|
/* Solid Mode Tokens */
|
|
955
967
|
/* ------------------------------------------------------------------ */
|
|
956
|
-
/* TODO */
|
|
957
|
-
--function-default-solid: #ececec;
|
|
958
|
-
--function-default-hover: #fafafa;
|
|
959
|
-
--function-default-hover-bg: rgba(250 250 250 / 0.08);
|
|
960
|
-
--function-default-stroke: rgba(158 158 158 / 0.24);
|
|
961
|
-
--function-default-icon: #212b36;
|
|
962
|
-
--function-default-outline-icon: #9e9e9e;
|
|
963
|
-
--function-active-solid: #b1a400;
|
|
964
|
-
--function-active-hover: #ddcd00;
|
|
965
|
-
--function-active-hover-bg: rgba(221 205 0 / 0.08);
|
|
966
|
-
--function-active-stroke: rgba(177 164 0 / 0.48);
|
|
967
|
-
--function-active-icon: #212b36;
|
|
968
968
|
/* Default State */
|
|
969
|
-
--action-button-solid-default-bg: var(--
|
|
970
|
-
--action-button-solid-default-border: var(--
|
|
971
|
-
--action-button-solid-default-text: var(--
|
|
969
|
+
--action-button-solid-default-bg: var(--function-default-solid);
|
|
970
|
+
--action-button-solid-default-border: var(--function-default-solid);
|
|
971
|
+
--action-button-solid-default-text: var(--function-default-icon);
|
|
972
972
|
/* Hover State */
|
|
973
|
-
--action-button-solid-hover-bg: var(--
|
|
974
|
-
--action-button-solid-hover-border: var(--
|
|
975
|
-
--action-button-solid-hover-text: var(--
|
|
973
|
+
--action-button-solid-hover-bg: var(--function-default-hover);
|
|
974
|
+
--action-button-solid-hover-border: var(--function-default-hover);
|
|
975
|
+
--action-button-solid-hover-text: var(--function-default-icon);
|
|
976
976
|
/* Pressed State */
|
|
977
|
-
--action-button-solid-pressed-bg: var(--
|
|
978
|
-
--action-button-solid-pressed-border: var(--
|
|
979
|
-
--action-button-solid-pressed-text: var(--
|
|
977
|
+
--action-button-solid-pressed-bg: var(--function-default-solid);
|
|
978
|
+
--action-button-solid-pressed-border: var(--function-default-solid);
|
|
979
|
+
--action-button-solid-pressed-text: var(--function-default-icon);
|
|
980
980
|
/* Active State */
|
|
981
|
-
--action-button-solid-active-bg: var(--
|
|
982
|
-
--action-button-solid-active-border: var(--
|
|
983
|
-
--action-button-solid-active-text: var(--
|
|
981
|
+
--action-button-solid-active-bg: var(--function-active-solid);
|
|
982
|
+
--action-button-solid-active-border: var(--function-active-solid);
|
|
983
|
+
--action-button-solid-active-text: var(--function-active-icon);
|
|
984
984
|
/* Active Hover State */
|
|
985
|
-
--action-button-solid-active-hover-bg: var(--
|
|
986
|
-
--action-button-solid-active-hover-border: var(--
|
|
987
|
-
--action-button-solid-active-hover-text: var(--
|
|
985
|
+
--action-button-solid-active-hover-bg: var(--function-active-hover);
|
|
986
|
+
--action-button-solid-active-hover-border: var(--function-active-hover);
|
|
987
|
+
--action-button-solid-active-hover-text: var(--function-active-icon);
|
|
988
988
|
/* Active Pressed State */
|
|
989
|
-
--action-button-solid-active-pressed-bg: var(--
|
|
990
|
-
--action-button-solid-active-pressed-border: var(--
|
|
991
|
-
--action-button-solid-active-pressed-text: var(--
|
|
989
|
+
--action-button-solid-active-pressed-bg: var(--function-active-solid);
|
|
990
|
+
--action-button-solid-active-pressed-border: var(--function-active-solid);
|
|
991
|
+
--action-button-solid-active-pressed-text: var(--function-active-icon);
|
|
992
992
|
/* Disabled State */
|
|
993
993
|
--action-button-solid-disabled-bg: var(--state-color-disable-solid);
|
|
994
994
|
--action-button-solid-disabled-border: var(--state-color-disable-solid);
|
|
@@ -998,28 +998,28 @@
|
|
|
998
998
|
/* ------------------------------------------------------------------ */
|
|
999
999
|
/* Default State */
|
|
1000
1000
|
--action-button-outline-default-bg: transparent;
|
|
1001
|
-
--action-button-outline-default-border: var(--
|
|
1002
|
-
--action-button-outline-default-text: var(--
|
|
1001
|
+
--action-button-outline-default-border: var(--function-default-stroke);
|
|
1002
|
+
--action-button-outline-default-text: var(--function-default-outline-icon);
|
|
1003
1003
|
/* Hover State */
|
|
1004
|
-
--action-button-outline-hover-bg:
|
|
1005
|
-
--action-button-outline-hover-border: var(--
|
|
1006
|
-
--action-button-outline-hover-text: var(--
|
|
1004
|
+
--action-button-outline-hover-bg: var(--function-default-hover-bg);
|
|
1005
|
+
--action-button-outline-hover-border: var(--function-default-hover);
|
|
1006
|
+
--action-button-outline-hover-text: var(--function-default-hover);
|
|
1007
1007
|
/* Pressed State */
|
|
1008
|
-
--action-button-outline-pressed-bg: var(--
|
|
1009
|
-
--action-button-outline-pressed-border: var(--
|
|
1010
|
-
--action-button-outline-pressed-text: var(--
|
|
1008
|
+
--action-button-outline-pressed-bg: var(--function-default-hover-bg);
|
|
1009
|
+
--action-button-outline-pressed-border: var(--function-default-stroke);
|
|
1010
|
+
--action-button-outline-pressed-text: var(--function-default-outline-icon);
|
|
1011
1011
|
/* Active State */
|
|
1012
1012
|
--action-button-outline-active-bg: transparent;
|
|
1013
|
-
--action-button-outline-active-border: var(--
|
|
1014
|
-
--action-button-outline-active-text: var(--
|
|
1013
|
+
--action-button-outline-active-border: var(--function-active-stroke);
|
|
1014
|
+
--action-button-outline-active-text: var(--function-active-solid);
|
|
1015
1015
|
/* Active Hover State */
|
|
1016
|
-
--action-button-outline-active-hover-bg: var(--
|
|
1017
|
-
--action-button-outline-active-hover-border: var(--
|
|
1018
|
-
--action-button-outline-active-hover-text: var(--
|
|
1016
|
+
--action-button-outline-active-hover-bg: var(--function-active-hover-bg);
|
|
1017
|
+
--action-button-outline-active-hover-border: var(--function-active-hover);
|
|
1018
|
+
--action-button-outline-active-hover-text: var(--function-active-hover);
|
|
1019
1019
|
/* Active Pressed State */
|
|
1020
|
-
--action-button-outline-active-pressed-bg: var(--
|
|
1021
|
-
--action-button-outline-active-pressed-border: var(--
|
|
1022
|
-
--action-button-outline-active-pressed-text: var(--
|
|
1020
|
+
--action-button-outline-active-pressed-bg: var(--function-active-hover-bg);
|
|
1021
|
+
--action-button-outline-active-pressed-border: var(--function-active-stroke);
|
|
1022
|
+
--action-button-outline-active-pressed-text: var(--function-active-solid);
|
|
1023
1023
|
/* Disabled State */
|
|
1024
1024
|
--action-button-outline-disabled-bg: transparent;
|
|
1025
1025
|
--action-button-outline-disabled-border: var(--state-color-disable-outline);
|
|
@@ -1030,27 +1030,27 @@
|
|
|
1030
1030
|
/* Default State */
|
|
1031
1031
|
--action-button-icon-default-bg: transparent;
|
|
1032
1032
|
--action-button-icon-default-border: transparent;
|
|
1033
|
-
--action-button-icon-default-text: var(--
|
|
1033
|
+
--action-button-icon-default-text: var(--function-default-outline-icon);
|
|
1034
1034
|
/* Hover State */
|
|
1035
|
-
--action-button-icon-hover-bg: var(--
|
|
1035
|
+
--action-button-icon-hover-bg: var(--function-default-hover-bg);
|
|
1036
1036
|
--action-button-icon-hover-border: transparent;
|
|
1037
|
-
--action-button-icon-hover-text: var(--
|
|
1037
|
+
--action-button-icon-hover-text: var(--function-default-hover);
|
|
1038
1038
|
/* Pressed State */
|
|
1039
1039
|
--action-button-icon-pressed-bg: transparent;
|
|
1040
1040
|
--action-button-icon-pressed-border: transparent;
|
|
1041
|
-
--action-button-icon-pressed-text: var(--
|
|
1041
|
+
--action-button-icon-pressed-text: var(--function-default-outline-icon);
|
|
1042
1042
|
/* Active State */
|
|
1043
1043
|
--action-button-icon-active-bg: transparent;
|
|
1044
1044
|
--action-button-icon-active-border: transparent;
|
|
1045
|
-
--action-button-icon-active-text: var(--
|
|
1045
|
+
--action-button-icon-active-text: var(--function-active-solid);
|
|
1046
1046
|
/* Active Hover State */
|
|
1047
|
-
--action-button-icon-active-hover-bg:
|
|
1047
|
+
--action-button-icon-active-hover-bg: var(--function-active-hover-bg);
|
|
1048
1048
|
--action-button-icon-active-hover-border: transparent;
|
|
1049
|
-
--action-button-icon-active-hover-text: var(--
|
|
1049
|
+
--action-button-icon-active-hover-text: var(--function-active-hover);
|
|
1050
1050
|
/* Active Pressed State */
|
|
1051
1051
|
--action-button-icon-active-pressed-bg: transparent;
|
|
1052
1052
|
--action-button-icon-active-pressed-border: transparent;
|
|
1053
|
-
--action-button-icon-active-pressed-text: var(--
|
|
1053
|
+
--action-button-icon-active-pressed-text: var(--function-active-solid);
|
|
1054
1054
|
/* Disabled State */
|
|
1055
1055
|
--action-button-icon-disabled-bg: transparent;
|
|
1056
1056
|
--action-button-icon-disabled-border: transparent;
|
|
@@ -1287,7 +1287,7 @@
|
|
|
1287
1287
|
--state-color-error-text-hover: #ff4d35;
|
|
1288
1288
|
--state-color-error-text-pressed: #a5210f;
|
|
1289
1289
|
--state-color-disable-solid: #454f5b;
|
|
1290
|
-
--state-color-disable-outline: #
|
|
1290
|
+
--state-color-disable-outline: #637381;
|
|
1291
1291
|
/* Base from design */
|
|
1292
1292
|
--input-color-default-text: #9e9e9e;
|
|
1293
1293
|
--input-color-default-stroke: rgba(158 158 158 / 0.24);
|
|
@@ -1298,6 +1298,18 @@
|
|
|
1298
1298
|
--input-color-disable-bg: rgba(145 158 171 / 0.04);
|
|
1299
1299
|
--input-color-label-bg: #2d2e30;
|
|
1300
1300
|
--input-color-error: #ff4d35;
|
|
1301
|
+
/* Function button */
|
|
1302
|
+
--function-default-solid: #ececec;
|
|
1303
|
+
--function-default-hover: #fafafa;
|
|
1304
|
+
--function-default-hover-bg: rgba(250 250 250 / 0.08);
|
|
1305
|
+
--function-default-stroke: rgba(158 158 158 / 0.24);
|
|
1306
|
+
--function-default-icon: #212b36;
|
|
1307
|
+
--function-default-outline-icon: #9e9e9e;
|
|
1308
|
+
--function-active-solid: #b1a400;
|
|
1309
|
+
--function-active-hover: #ddcd00;
|
|
1310
|
+
--function-active-hover-bg: rgba(221 205 0 / 0.08);
|
|
1311
|
+
--function-active-stroke: rgba(177 164 0 / 0.48);
|
|
1312
|
+
--function-active-icon: #212b36;
|
|
1301
1313
|
--text-dark: #212b36;
|
|
1302
1314
|
--text-medium: #637381;
|
|
1303
1315
|
--text-light: #919eab;
|
|
@@ -1446,70 +1458,71 @@
|
|
|
1446
1458
|
/* Solid Mode Tokens */
|
|
1447
1459
|
/* ------------------------------------------------------------------ */
|
|
1448
1460
|
/* Default State */
|
|
1449
|
-
--action-button-solid-default-bg: var(--
|
|
1450
|
-
--action-button-solid-default-border: var(--
|
|
1451
|
-
--action-button-solid-default-text: var(--
|
|
1461
|
+
--action-button-solid-default-bg: var(--function-default-solid);
|
|
1462
|
+
--action-button-solid-default-border: var(--function-default-solid);
|
|
1463
|
+
--action-button-solid-default-text: var(--function-default-icon);
|
|
1452
1464
|
/* Hover State */
|
|
1453
|
-
--action-button-solid-hover-bg: var(--
|
|
1454
|
-
--action-button-solid-hover-border: var(--
|
|
1455
|
-
--action-button-solid-hover-text: var(--
|
|
1465
|
+
--action-button-solid-hover-bg: var(--function-default-hover);
|
|
1466
|
+
--action-button-solid-hover-border: var(--function-default-hover);
|
|
1467
|
+
--action-button-solid-hover-text: var(--function-default-icon);
|
|
1456
1468
|
/* Pressed State */
|
|
1457
|
-
--action-button-solid-pressed-bg: var(--
|
|
1458
|
-
--action-button-solid-pressed-border: var(--
|
|
1459
|
-
--action-button-solid-pressed-text: var(--
|
|
1469
|
+
--action-button-solid-pressed-bg: var(--function-default-solid);
|
|
1470
|
+
--action-button-solid-pressed-border: var(--function-default-solid);
|
|
1471
|
+
--action-button-solid-pressed-text: var(--function-default-icon);
|
|
1460
1472
|
/* Active State */
|
|
1461
|
-
--action-button-solid-active-bg: var(--
|
|
1462
|
-
--action-button-solid-active-border: var(--
|
|
1463
|
-
--action-button-solid-active-text: var(--
|
|
1473
|
+
--action-button-solid-active-bg: var(--function-active-solid);
|
|
1474
|
+
--action-button-solid-active-border: var(--function-active-solid);
|
|
1475
|
+
--action-button-solid-active-text: var(--function-active-icon);
|
|
1464
1476
|
/* Active Hover State */
|
|
1465
|
-
--action-button-solid-active-hover-bg: var(--
|
|
1466
|
-
--action-button-solid-active-hover-border: var(--
|
|
1467
|
-
--action-button-solid-active-hover-text: var(--
|
|
1477
|
+
--action-button-solid-active-hover-bg: var(--function-active-hover);
|
|
1478
|
+
--action-button-solid-active-hover-border: var(--function-active-hover);
|
|
1479
|
+
--action-button-solid-active-hover-text: var(--function-active-icon);
|
|
1468
1480
|
/* Active Pressed State */
|
|
1469
|
-
--action-button-solid-active-pressed-bg: var(--
|
|
1470
|
-
--action-button-solid-active-pressed-border: var(--
|
|
1471
|
-
--action-button-solid-active-pressed-text: var(--
|
|
1481
|
+
--action-button-solid-active-pressed-bg: var(--function-active-solid);
|
|
1482
|
+
--action-button-solid-active-pressed-border: var(--function-active-solid);
|
|
1483
|
+
--action-button-solid-active-pressed-text: var(--function-active-icon);
|
|
1472
1484
|
/* ------------------------------------------------------------------ */
|
|
1473
1485
|
/* Outline Mode Tokens */
|
|
1474
1486
|
/* ------------------------------------------------------------------ */
|
|
1475
1487
|
/* Default State */
|
|
1476
|
-
--action-button-outline-default-border: var(--
|
|
1477
|
-
--action-button-outline-default-text: var(--
|
|
1488
|
+
--action-button-outline-default-border: var(--function-default-stroke);
|
|
1489
|
+
--action-button-outline-default-text: var(--function-default-outline-icon);
|
|
1478
1490
|
/* Hover State */
|
|
1479
|
-
--action-button-outline-hover-bg:
|
|
1480
|
-
--action-button-outline-hover-border: var(--
|
|
1481
|
-
--action-button-outline-hover-text: var(--
|
|
1491
|
+
--action-button-outline-hover-bg: var(--function-default-hover-bg);
|
|
1492
|
+
--action-button-outline-hover-border: var(--function-default-hover);
|
|
1493
|
+
--action-button-outline-hover-text: var(--function-default-hover);
|
|
1482
1494
|
/* Pressed State */
|
|
1483
|
-
--action-button-outline-pressed-bg: var(--
|
|
1484
|
-
--action-button-outline-pressed-border: var(--
|
|
1485
|
-
--action-button-outline-pressed-text: var(--
|
|
1495
|
+
--action-button-outline-pressed-bg: var(--function-default-hover-bg);
|
|
1496
|
+
--action-button-outline-pressed-border: var(--function-default-stroke);
|
|
1497
|
+
--action-button-outline-pressed-text: var(--function-default-outline-icon);
|
|
1486
1498
|
/* Active State */
|
|
1487
|
-
--action-button-outline-active-border: var(--
|
|
1488
|
-
--action-button-outline-active-text: var(--
|
|
1499
|
+
--action-button-outline-active-border: var(--function-active-stroke);
|
|
1500
|
+
--action-button-outline-active-text: var(--function-active-solid);
|
|
1489
1501
|
/* Active Hover State */
|
|
1490
|
-
--action-button-outline-active-hover-bg: var(--
|
|
1491
|
-
--action-button-outline-active-hover-border: var(--
|
|
1492
|
-
--action-button-outline-active-hover-text: var(--
|
|
1502
|
+
--action-button-outline-active-hover-bg: var(--function-active-hover-bg);
|
|
1503
|
+
--action-button-outline-active-hover-border: var(--function-active-hover);
|
|
1504
|
+
--action-button-outline-active-hover-text: var(--function-active-hover);
|
|
1493
1505
|
/* Active Pressed State */
|
|
1494
|
-
--action-button-outline-active-pressed-bg: var(--
|
|
1495
|
-
--action-button-outline-active-pressed-border: var(--
|
|
1496
|
-
--action-button-outline-active-pressed-text: var(--
|
|
1506
|
+
--action-button-outline-active-pressed-bg: var(--function-active-hover-bg);
|
|
1507
|
+
--action-button-outline-active-pressed-border: var(--function-active-stroke);
|
|
1508
|
+
--action-button-outline-active-pressed-text: var(--function-active-solid);
|
|
1497
1509
|
/* ------------------------------------------------------------------ */
|
|
1498
1510
|
/* Icon Mode Tokens */
|
|
1499
1511
|
/* ------------------------------------------------------------------ */
|
|
1500
1512
|
/* Default State */
|
|
1501
|
-
--action-button-icon-default-text: var(--
|
|
1513
|
+
--action-button-icon-default-text: var(--function-default-outline-icon);
|
|
1502
1514
|
/* Hover State */
|
|
1503
|
-
--action-button-icon-hover-bg: var(--
|
|
1504
|
-
--action-button-icon-hover-text: var(--
|
|
1515
|
+
--action-button-icon-hover-bg: var(--function-default-hover-bg);
|
|
1516
|
+
--action-button-icon-hover-text: var(--function-default-hover);
|
|
1505
1517
|
/* Pressed State */
|
|
1506
|
-
--action-button-icon-pressed-text: var(--
|
|
1518
|
+
--action-button-icon-pressed-text: var(--function-default-outline-icon);
|
|
1507
1519
|
/* Active State */
|
|
1508
|
-
--action-button-icon-active-text: var(--
|
|
1520
|
+
--action-button-icon-active-text: var(--function-active-solid);
|
|
1509
1521
|
/* Active Hover State */
|
|
1510
|
-
--action-button-icon-active-hover-bg:
|
|
1511
|
-
--action-button-icon-active-hover-text: var(--
|
|
1512
|
-
|
|
1522
|
+
--action-button-icon-active-hover-bg: var(--function-active-hover-bg);
|
|
1523
|
+
--action-button-icon-active-hover-text: var(--function-active-hover);
|
|
1524
|
+
/* Active Pressed State */
|
|
1525
|
+
--action-button-icon-active-pressed-text: var(--function-active-solid);
|
|
1513
1526
|
/* ------------------------------------------------------------------ */
|
|
1514
1527
|
/* Loading Component Tokens */
|
|
1515
1528
|
/* ------------------------------------------------------------------ */
|
|
@@ -2349,6 +2362,10 @@ body {
|
|
|
2349
2362
|
display: grid;
|
|
2350
2363
|
}
|
|
2351
2364
|
|
|
2365
|
+
.contents {
|
|
2366
|
+
display: contents;
|
|
2367
|
+
}
|
|
2368
|
+
|
|
2352
2369
|
.hidden {
|
|
2353
2370
|
display: none;
|
|
2354
2371
|
}
|
|
@@ -2362,16 +2379,6 @@ body {
|
|
|
2362
2379
|
height: 3.5rem;
|
|
2363
2380
|
}
|
|
2364
2381
|
|
|
2365
|
-
.size-2 {
|
|
2366
|
-
width: 0.5rem;
|
|
2367
|
-
height: 0.5rem;
|
|
2368
|
-
}
|
|
2369
|
-
|
|
2370
|
-
.size-2\.5 {
|
|
2371
|
-
width: 0.625rem;
|
|
2372
|
-
height: 0.625rem;
|
|
2373
|
-
}
|
|
2374
|
-
|
|
2375
2382
|
.size-3 {
|
|
2376
2383
|
width: 0.75rem;
|
|
2377
2384
|
height: 0.75rem;
|
|
@@ -2479,6 +2486,10 @@ body {
|
|
|
2479
2486
|
height: 32px;
|
|
2480
2487
|
}
|
|
2481
2488
|
|
|
2489
|
+
.h-\[400px\] {
|
|
2490
|
+
height: 400px;
|
|
2491
|
+
}
|
|
2492
|
+
|
|
2482
2493
|
.h-\[40px\] {
|
|
2483
2494
|
height: 40px;
|
|
2484
2495
|
}
|
|
@@ -3094,6 +3105,11 @@ body {
|
|
|
3094
3105
|
border-color: color-mix(in srgb, var(--state-color-error-stroke) calc(100% * var(--tw-border-opacity)), transparent);
|
|
3095
3106
|
}
|
|
3096
3107
|
|
|
3108
|
+
.border-function-default-solid {
|
|
3109
|
+
--tw-border-opacity: 1;
|
|
3110
|
+
border-color: color-mix(in srgb, var(--function-default-solid) calc(100% * var(--tw-border-opacity)), transparent);
|
|
3111
|
+
}
|
|
3112
|
+
|
|
3097
3113
|
.border-info-stroke {
|
|
3098
3114
|
--tw-border-opacity: 1;
|
|
3099
3115
|
border-color: color-mix(in srgb, var(--state-color-info-stroke) calc(100% * var(--tw-border-opacity)), transparent);
|
|
@@ -3147,6 +3163,11 @@ body {
|
|
|
3147
3163
|
border-left-color: color-mix(in srgb, var(--input-color-default-stroke) calc(100% * var(--tw-border-opacity)), transparent);
|
|
3148
3164
|
}
|
|
3149
3165
|
|
|
3166
|
+
.border-l-input-disable-stroke {
|
|
3167
|
+
--tw-border-opacity: 1;
|
|
3168
|
+
border-left-color: color-mix(in srgb, var(--input-color-disable-stroke) calc(100% * var(--tw-border-opacity)), transparent);
|
|
3169
|
+
}
|
|
3170
|
+
|
|
3150
3171
|
.border-l-input-error {
|
|
3151
3172
|
--tw-border-opacity: 1;
|
|
3152
3173
|
border-left-color: color-mix(in srgb, var(--input-color-error) calc(100% * var(--tw-border-opacity)), transparent);
|
|
@@ -3242,6 +3263,11 @@ body {
|
|
|
3242
3263
|
background-color: color-mix(in srgb, var(--base-color-popup-curtain) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3243
3264
|
}
|
|
3244
3265
|
|
|
3266
|
+
.bg-base-popup-highlight {
|
|
3267
|
+
--tw-bg-opacity: 1;
|
|
3268
|
+
background-color: color-mix(in srgb, var(--base-color-popup-hightlight) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3269
|
+
}
|
|
3270
|
+
|
|
3245
3271
|
.bg-black {
|
|
3246
3272
|
--tw-bg-opacity: 1;
|
|
3247
3273
|
background-color: rgb(0 0 0 / var(--tw-bg-opacity));
|
|
@@ -3362,6 +3388,11 @@ body {
|
|
|
3362
3388
|
background-color: color-mix(in srgb, var(--other-transparency-error-8) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3363
3389
|
}
|
|
3364
3390
|
|
|
3391
|
+
.bg-function-active-hover {
|
|
3392
|
+
--tw-bg-opacity: 1;
|
|
3393
|
+
background-color: color-mix(in srgb, var(--function-active-hover) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3394
|
+
}
|
|
3395
|
+
|
|
3365
3396
|
.bg-gray-200 {
|
|
3366
3397
|
--tw-bg-opacity: 1;
|
|
3367
3398
|
background-color: rgb(229 231 235 / var(--tw-bg-opacity));
|
|
@@ -3422,11 +3453,6 @@ body {
|
|
|
3422
3453
|
background-color: color-mix(in srgb, var(--state-color-secondary-default) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3423
3454
|
}
|
|
3424
3455
|
|
|
3425
|
-
.bg-secondary-hover {
|
|
3426
|
-
--tw-bg-opacity: 1;
|
|
3427
|
-
background-color: color-mix(in srgb, var(--state-color-secondary-hover) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3428
|
-
}
|
|
3429
|
-
|
|
3430
3456
|
.bg-state-disable-solid {
|
|
3431
3457
|
--tw-bg-opacity: 1;
|
|
3432
3458
|
background-color: color-mix(in srgb, var(--state-color-disable-solid) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
@@ -3596,6 +3622,10 @@ body {
|
|
|
3596
3622
|
fill: color-mix(in srgb, var(--input-color-default-text) calc(100% * 1), transparent);
|
|
3597
3623
|
}
|
|
3598
3624
|
|
|
3625
|
+
.fill-input-disable-stroke {
|
|
3626
|
+
fill: color-mix(in srgb, var(--input-color-disable-stroke) calc(100% * 1), transparent);
|
|
3627
|
+
}
|
|
3628
|
+
|
|
3599
3629
|
.fill-primary {
|
|
3600
3630
|
fill: color-mix(in srgb, var(--state-color-primary-default) calc(100% * 1), transparent);
|
|
3601
3631
|
}
|
|
@@ -3608,6 +3638,10 @@ body {
|
|
|
3608
3638
|
stroke: color-mix(in srgb, var(--input-color-default-stroke) calc(100% * 1), transparent);
|
|
3609
3639
|
}
|
|
3610
3640
|
|
|
3641
|
+
.stroke-input-disable-stroke {
|
|
3642
|
+
stroke: color-mix(in srgb, var(--input-color-disable-stroke) calc(100% * 1), transparent);
|
|
3643
|
+
}
|
|
3644
|
+
|
|
3611
3645
|
.stroke-primary-default {
|
|
3612
3646
|
stroke: color-mix(in srgb, var(--state-color-primary-default) calc(100% * 1), transparent);
|
|
3613
3647
|
}
|
|
@@ -3778,68 +3812,68 @@ body {
|
|
|
3778
3812
|
padding-bottom: var(--spacing-spacing-xxs);
|
|
3779
3813
|
}
|
|
3780
3814
|
|
|
3781
|
-
|
|
3782
|
-
padding-inline-end:
|
|
3815
|
+
.\!pe-\[38px\] {
|
|
3816
|
+
padding-inline-end: 38px !important;
|
|
3783
3817
|
}
|
|
3784
3818
|
|
|
3785
|
-
|
|
3786
|
-
padding-inline-end:
|
|
3819
|
+
.\!pe-\[46px\] {
|
|
3820
|
+
padding-inline-end: 46px !important;
|
|
3787
3821
|
}
|
|
3788
3822
|
|
|
3789
|
-
|
|
3790
|
-
padding-inline-end:
|
|
3823
|
+
.\!pe-\[72px\] {
|
|
3824
|
+
padding-inline-end: 72px !important;
|
|
3791
3825
|
}
|
|
3792
3826
|
|
|
3793
|
-
|
|
3794
|
-
padding-inline-
|
|
3827
|
+
.\!ps-11 {
|
|
3828
|
+
padding-inline-start: 2.75rem !important;
|
|
3795
3829
|
}
|
|
3796
3830
|
|
|
3797
|
-
|
|
3798
|
-
padding-inline-
|
|
3831
|
+
.\!ps-6 {
|
|
3832
|
+
padding-inline-start: 1.5rem !important;
|
|
3799
3833
|
}
|
|
3800
3834
|
|
|
3801
|
-
|
|
3802
|
-
padding-inline-
|
|
3835
|
+
.\!ps-9 {
|
|
3836
|
+
padding-inline-start: 2.25rem !important;
|
|
3803
3837
|
}
|
|
3804
3838
|
|
|
3805
|
-
|
|
3806
|
-
padding-
|
|
3839
|
+
.\!ps-\[38px\] {
|
|
3840
|
+
padding-inline-start: 38px !important;
|
|
3807
3841
|
}
|
|
3808
3842
|
|
|
3809
|
-
|
|
3810
|
-
padding-
|
|
3843
|
+
.\!ps-\[46px\] {
|
|
3844
|
+
padding-inline-start: 46px !important;
|
|
3811
3845
|
}
|
|
3812
3846
|
|
|
3813
|
-
|
|
3814
|
-
padding-
|
|
3847
|
+
.\!ps-\[72px\] {
|
|
3848
|
+
padding-inline-start: 72px !important;
|
|
3815
3849
|
}
|
|
3816
3850
|
|
|
3817
|
-
.
|
|
3818
|
-
padding-
|
|
3851
|
+
.pe-\[30px\] {
|
|
3852
|
+
padding-inline-end: 30px;
|
|
3819
3853
|
}
|
|
3820
3854
|
|
|
3821
|
-
.
|
|
3822
|
-
padding-inline-
|
|
3855
|
+
.pe-\[40px\] {
|
|
3856
|
+
padding-inline-end: 40px;
|
|
3823
3857
|
}
|
|
3824
3858
|
|
|
3825
|
-
.
|
|
3826
|
-
padding-inline-
|
|
3859
|
+
.pe-\[68px\] {
|
|
3860
|
+
padding-inline-end: 68px;
|
|
3827
3861
|
}
|
|
3828
3862
|
|
|
3829
|
-
.
|
|
3830
|
-
padding-
|
|
3863
|
+
.pl-8 {
|
|
3864
|
+
padding-left: 2rem;
|
|
3831
3865
|
}
|
|
3832
3866
|
|
|
3833
|
-
.
|
|
3834
|
-
padding-
|
|
3867
|
+
.pl-9 {
|
|
3868
|
+
padding-left: 2.25rem;
|
|
3835
3869
|
}
|
|
3836
3870
|
|
|
3837
|
-
.
|
|
3838
|
-
padding-
|
|
3871
|
+
.pr-4 {
|
|
3872
|
+
padding-right: 1rem;
|
|
3839
3873
|
}
|
|
3840
3874
|
|
|
3841
|
-
.
|
|
3842
|
-
padding-
|
|
3875
|
+
.pr-xxl {
|
|
3876
|
+
padding-right: var(--spacing-spacing-xxl);
|
|
3843
3877
|
}
|
|
3844
3878
|
|
|
3845
3879
|
.text-left {
|
|
@@ -4277,6 +4311,16 @@ body {
|
|
|
4277
4311
|
color: color-mix(in srgb, var(--foreground) calc(100% * var(--tw-text-opacity)), transparent);
|
|
4278
4312
|
}
|
|
4279
4313
|
|
|
4314
|
+
.text-function-active-icon {
|
|
4315
|
+
--tw-text-opacity: 1;
|
|
4316
|
+
color: color-mix(in srgb, var(--function-active-icon) calc(100% * var(--tw-text-opacity)), transparent);
|
|
4317
|
+
}
|
|
4318
|
+
|
|
4319
|
+
.text-function-default-solid {
|
|
4320
|
+
--tw-text-opacity: 1;
|
|
4321
|
+
color: color-mix(in srgb, var(--function-default-solid) calc(100% * var(--tw-text-opacity)), transparent);
|
|
4322
|
+
}
|
|
4323
|
+
|
|
4280
4324
|
.text-gray-400 {
|
|
4281
4325
|
--tw-text-opacity: 1;
|
|
4282
4326
|
color: rgb(156 163 175 / var(--tw-text-opacity));
|
|
@@ -4870,14 +4914,14 @@ body {
|
|
|
4870
4914
|
border-color: color-mix(in srgb, var(--button-warning-solid-hover-border) calc(100% * var(--tw-border-opacity)), transparent);
|
|
4871
4915
|
}
|
|
4872
4916
|
|
|
4873
|
-
.hover\:border-
|
|
4917
|
+
.hover\:border-function-default-hover:hover {
|
|
4874
4918
|
--tw-border-opacity: 1;
|
|
4875
|
-
border-color: color-mix(in srgb, var(--
|
|
4919
|
+
border-color: color-mix(in srgb, var(--function-default-hover) calc(100% * var(--tw-border-opacity)), transparent);
|
|
4876
4920
|
}
|
|
4877
4921
|
|
|
4878
|
-
.hover\:border-
|
|
4922
|
+
.hover\:border-input-active-stroke:hover {
|
|
4879
4923
|
--tw-border-opacity: 1;
|
|
4880
|
-
border-color: color-mix(in srgb, var(--
|
|
4924
|
+
border-color: color-mix(in srgb, var(--input-color-active-stroke) calc(100% * var(--tw-border-opacity)), transparent);
|
|
4881
4925
|
}
|
|
4882
4926
|
|
|
4883
4927
|
.hover\:bg-action-button-icon-active-hover:hover {
|
|
@@ -6575,6 +6619,10 @@ body {
|
|
|
6575
6619
|
opacity: 0.7;
|
|
6576
6620
|
}
|
|
6577
6621
|
|
|
6622
|
+
.data-\[disabled\]\:\!pointer-events-none[data-disabled] {
|
|
6623
|
+
pointer-events: none !important;
|
|
6624
|
+
}
|
|
6625
|
+
|
|
6578
6626
|
.data-\[disabled\]\:pointer-events-none[data-disabled] {
|
|
6579
6627
|
pointer-events: none;
|
|
6580
6628
|
}
|
|
@@ -6604,13 +6652,17 @@ body {
|
|
|
6604
6652
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
6605
6653
|
}
|
|
6606
6654
|
|
|
6655
|
+
.data-\[disabled\]\:\!cursor-not-allowed[data-disabled] {
|
|
6656
|
+
cursor: not-allowed !important;
|
|
6657
|
+
}
|
|
6658
|
+
|
|
6607
6659
|
.data-\[disabled\]\:cursor-not-allowed[data-disabled] {
|
|
6608
6660
|
cursor: not-allowed;
|
|
6609
6661
|
}
|
|
6610
6662
|
|
|
6611
|
-
.data-\[disabled\]
|
|
6612
|
-
--tw-border-opacity: 1;
|
|
6613
|
-
border-color: color-mix(in srgb, var(--state-color-disable-solid) calc(100% * var(--tw-border-opacity)), transparent);
|
|
6663
|
+
.data-\[disabled\]\:\!border-state-disable-solid[data-disabled] {
|
|
6664
|
+
--tw-border-opacity: 1 !important;
|
|
6665
|
+
border-color: color-mix(in srgb, var(--state-color-disable-solid) calc(100% * var(--tw-border-opacity)), transparent) !important;
|
|
6614
6666
|
}
|
|
6615
6667
|
|
|
6616
6668
|
.data-\[loading\=true\]\:border-button-error-flat-active[data-loading=true] {
|
|
@@ -6718,9 +6770,9 @@ body {
|
|
|
6718
6770
|
border-color: color-mix(in srgb, var(--button-warning-solid-active-border) calc(100% * var(--tw-border-opacity)), transparent);
|
|
6719
6771
|
}
|
|
6720
6772
|
|
|
6721
|
-
.data-\[state\=checked\]\:border-
|
|
6773
|
+
.data-\[state\=checked\]\:border-function-active-solid[data-state=checked] {
|
|
6722
6774
|
--tw-border-opacity: 1;
|
|
6723
|
-
border-color: color-mix(in srgb, var(--
|
|
6775
|
+
border-color: color-mix(in srgb, var(--function-active-solid) calc(100% * var(--tw-border-opacity)), transparent);
|
|
6724
6776
|
}
|
|
6725
6777
|
|
|
6726
6778
|
.data-\[disabled\]\:\!bg-\[var\(--dropdown-menu-disabled-bg\)\][data-disabled] {
|
|
@@ -6840,9 +6892,9 @@ body {
|
|
|
6840
6892
|
background-color: var(--dropdown-menu-selected-bg);
|
|
6841
6893
|
}
|
|
6842
6894
|
|
|
6843
|
-
.data-\[state\=checked\]\:bg-
|
|
6895
|
+
.data-\[state\=checked\]\:bg-function-active-solid[data-state=checked] {
|
|
6844
6896
|
--tw-bg-opacity: 1;
|
|
6845
|
-
background-color: color-mix(in srgb, var(--
|
|
6897
|
+
background-color: color-mix(in srgb, var(--function-active-solid) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
6846
6898
|
}
|
|
6847
6899
|
|
|
6848
6900
|
.data-\[state\=checked\]\:bg-secondary-active\/\[0\.32\][data-state=checked] {
|
|
@@ -6868,8 +6920,8 @@ body {
|
|
|
6868
6920
|
background-color: color-mix(in srgb, var(--state-color-tertiary-active) calc(100% * 0.32), transparent);
|
|
6869
6921
|
}
|
|
6870
6922
|
|
|
6871
|
-
.data-\[disabled\]
|
|
6872
|
-
fill: color-mix(in srgb, var(--state-color-disable-solid) calc(100% * 1), transparent);
|
|
6923
|
+
.data-\[disabled\]\:\!fill-state-disable-solid[data-disabled] {
|
|
6924
|
+
fill: color-mix(in srgb, var(--state-color-disable-solid) calc(100% * 1), transparent) !important;
|
|
6873
6925
|
}
|
|
6874
6926
|
|
|
6875
6927
|
.data-\[loading\=true\]\:fill-button-error-flat-active[data-loading=true] {
|
|
@@ -6960,9 +7012,9 @@ body {
|
|
|
6960
7012
|
color: var(--dropdown-menu-disabled-text) !important;
|
|
6961
7013
|
}
|
|
6962
7014
|
|
|
6963
|
-
.data-\[disabled\]
|
|
6964
|
-
--tw-text-opacity: 1;
|
|
6965
|
-
color: color-mix(in srgb, var(--state-color-disable-solid) calc(100% * var(--tw-text-opacity)), transparent);
|
|
7015
|
+
.data-\[disabled\]\:\!text-state-disable-solid[data-disabled] {
|
|
7016
|
+
--tw-text-opacity: 1 !important;
|
|
7017
|
+
color: color-mix(in srgb, var(--state-color-disable-solid) calc(100% * var(--tw-text-opacity)), transparent) !important;
|
|
6966
7018
|
}
|
|
6967
7019
|
|
|
6968
7020
|
.data-\[loading\=true\]\:text-button-error-flat-active[data-loading=true] {
|
|
@@ -7074,14 +7126,14 @@ body {
|
|
|
7074
7126
|
color: var(--dropdown-menu-selected-text);
|
|
7075
7127
|
}
|
|
7076
7128
|
|
|
7077
|
-
.data-\[state\=checked\]\:text-
|
|
7129
|
+
.data-\[state\=checked\]\:text-function-active-icon[data-state=checked] {
|
|
7078
7130
|
--tw-text-opacity: 1;
|
|
7079
|
-
color: color-mix(in srgb, var(--
|
|
7131
|
+
color: color-mix(in srgb, var(--function-active-icon) calc(100% * var(--tw-text-opacity)), transparent);
|
|
7080
7132
|
}
|
|
7081
7133
|
|
|
7082
|
-
.data-\[state\=checked\]\:text-
|
|
7134
|
+
.data-\[state\=checked\]\:text-function-active-solid[data-state=checked] {
|
|
7083
7135
|
--tw-text-opacity: 1;
|
|
7084
|
-
color: color-mix(in srgb, var(--
|
|
7136
|
+
color: color-mix(in srgb, var(--function-active-solid) calc(100% * var(--tw-text-opacity)), transparent);
|
|
7085
7137
|
}
|
|
7086
7138
|
|
|
7087
7139
|
.data-\[state\=open\]\:text-primary-foreground[data-state=open] {
|
|
@@ -7099,27 +7151,27 @@ body {
|
|
|
7099
7151
|
font-weight: var(--subtitle5-weight, 500);
|
|
7100
7152
|
}
|
|
7101
7153
|
|
|
7102
|
-
.hover\:data-\[state\=checked\]\:border-
|
|
7154
|
+
.hover\:data-\[state\=checked\]\:border-function-active-hover[data-state=checked]:hover {
|
|
7103
7155
|
--tw-border-opacity: 1;
|
|
7104
|
-
border-color: color-mix(in srgb, var(--
|
|
7156
|
+
border-color: color-mix(in srgb, var(--function-active-hover) calc(100% * var(--tw-border-opacity)), transparent);
|
|
7105
7157
|
}
|
|
7106
7158
|
|
|
7107
|
-
.hover\:data-\[state\=checked\]\:bg-
|
|
7108
|
-
|
|
7159
|
+
.hover\:data-\[state\=checked\]\:bg-function-active-hover[data-state=checked]:hover {
|
|
7160
|
+
--tw-bg-opacity: 1;
|
|
7161
|
+
background-color: color-mix(in srgb, var(--function-active-hover) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
7109
7162
|
}
|
|
7110
7163
|
|
|
7111
|
-
.hover\:data-\[state\=checked\]\:bg-secondary-
|
|
7112
|
-
--
|
|
7113
|
-
background-color: color-mix(in srgb, var(--state-color-secondary-hover) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
7164
|
+
.hover\:data-\[state\=checked\]\:bg-secondary-active\/\[0\.48\][data-state=checked]:hover {
|
|
7165
|
+
background-color: color-mix(in srgb, var(--state-color-secondary-active) calc(100% * 0.48), transparent);
|
|
7114
7166
|
}
|
|
7115
7167
|
|
|
7116
7168
|
.hover\:data-\[state\=unchecked\]\:bg-tertiary-active\/\[0\.48\][data-state=unchecked]:hover {
|
|
7117
7169
|
background-color: color-mix(in srgb, var(--state-color-tertiary-active) calc(100% * 0.48), transparent);
|
|
7118
7170
|
}
|
|
7119
7171
|
|
|
7120
|
-
.hover\:data-\[state\=checked\]\:text-
|
|
7172
|
+
.hover\:data-\[state\=checked\]\:text-function-active-hover[data-state=checked]:hover {
|
|
7121
7173
|
--tw-text-opacity: 1;
|
|
7122
|
-
color: color-mix(in srgb, var(--
|
|
7174
|
+
color: color-mix(in srgb, var(--function-active-hover) calc(100% * var(--tw-text-opacity)), transparent);
|
|
7123
7175
|
}
|
|
7124
7176
|
|
|
7125
7177
|
.group:hover .group-hover\:data-\[state\=checked\]\:ring-secondary-hover-bg[data-state=checked] {
|