unifyedx-storybook-new 0.1.33 → 0.1.34
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.
|
@@ -81,6 +81,15 @@
|
|
|
81
81
|
--color-indigo-600: oklch(51.1% .262 276.966);
|
|
82
82
|
--color-purple-500: oklch(62.7% .265 303.9);
|
|
83
83
|
--color-gray-50: oklch(98.5% .002 247.839);
|
|
84
|
+
--color-gray-100: oklch(96.7% .003 264.542);
|
|
85
|
+
--color-gray-200: oklch(92.8% .006 264.531);
|
|
86
|
+
--color-gray-300: oklch(87.2% .01 258.338);
|
|
87
|
+
--color-gray-400: oklch(70.7% .022 261.325);
|
|
88
|
+
--color-gray-500: oklch(55.1% .027 264.364);
|
|
89
|
+
--color-gray-600: oklch(44.6% .03 256.802);
|
|
90
|
+
--color-gray-700: oklch(37.3% .034 259.733);
|
|
91
|
+
--color-gray-800: oklch(27.8% .033 256.848);
|
|
92
|
+
--color-gray-900: oklch(21% .034 264.665);
|
|
84
93
|
--color-black: #000;
|
|
85
94
|
--color-white: #fff;
|
|
86
95
|
--spacing: .25rem;
|
|
@@ -95,10 +104,12 @@
|
|
|
95
104
|
--font-weight-normal: 400;
|
|
96
105
|
--font-weight-medium: 500;
|
|
97
106
|
--font-weight-semibold: 600;
|
|
107
|
+
--font-weight-bold: 700;
|
|
98
108
|
--radius-sm: .25rem;
|
|
99
109
|
--radius-md: .375rem;
|
|
100
110
|
--radius-lg: .5rem;
|
|
101
111
|
--radius-xl: .75rem;
|
|
112
|
+
--radius-2xl: 1rem;
|
|
102
113
|
--ease-in: cubic-bezier(.4, 0, 1, 1);
|
|
103
114
|
--ease-out: cubic-bezier(0, 0, .2, 1);
|
|
104
115
|
--ease-in-out: cubic-bezier(.4, 0, .2, 1);
|
|
@@ -394,6 +405,10 @@
|
|
|
394
405
|
position: sticky;
|
|
395
406
|
}
|
|
396
407
|
|
|
408
|
+
.inset-0 {
|
|
409
|
+
inset: calc(var(--spacing) * 0);
|
|
410
|
+
}
|
|
411
|
+
|
|
397
412
|
.inset-y-0 {
|
|
398
413
|
inset-block: calc(var(--spacing) * 0);
|
|
399
414
|
}
|
|
@@ -438,6 +453,44 @@
|
|
|
438
453
|
grid-column: span 3 / span 3;
|
|
439
454
|
}
|
|
440
455
|
|
|
456
|
+
.container {
|
|
457
|
+
width: 100%;
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
@media (min-width: 40rem) {
|
|
461
|
+
.container {
|
|
462
|
+
max-width: 40rem;
|
|
463
|
+
}
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
@media (min-width: 48rem) {
|
|
467
|
+
.container {
|
|
468
|
+
max-width: 48rem;
|
|
469
|
+
}
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
@media (min-width: 64rem) {
|
|
473
|
+
.container {
|
|
474
|
+
max-width: 64rem;
|
|
475
|
+
}
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
@media (min-width: 80rem) {
|
|
479
|
+
.container {
|
|
480
|
+
max-width: 80rem;
|
|
481
|
+
}
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
@media (min-width: 96rem) {
|
|
485
|
+
.container {
|
|
486
|
+
max-width: 96rem;
|
|
487
|
+
}
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
.mx-5 {
|
|
491
|
+
margin-inline: calc(var(--spacing) * 5);
|
|
492
|
+
}
|
|
493
|
+
|
|
441
494
|
.mt-1 {
|
|
442
495
|
margin-top: calc(var(--spacing) * 1);
|
|
443
496
|
}
|
|
@@ -458,10 +511,18 @@
|
|
|
458
511
|
margin-right: calc(var(--spacing) * 2);
|
|
459
512
|
}
|
|
460
513
|
|
|
514
|
+
.mr-3 {
|
|
515
|
+
margin-right: calc(var(--spacing) * 3);
|
|
516
|
+
}
|
|
517
|
+
|
|
461
518
|
.\!mb-0 {
|
|
462
519
|
margin-bottom: calc(var(--spacing) * 0) !important;
|
|
463
520
|
}
|
|
464
521
|
|
|
522
|
+
.mb-5 {
|
|
523
|
+
margin-bottom: calc(var(--spacing) * 5);
|
|
524
|
+
}
|
|
525
|
+
|
|
465
526
|
.-ml-4 {
|
|
466
527
|
margin-left: calc(var(--spacing) * -4);
|
|
467
528
|
}
|
|
@@ -542,6 +603,14 @@
|
|
|
542
603
|
min-height: 38px;
|
|
543
604
|
}
|
|
544
605
|
|
|
606
|
+
.min-h-full {
|
|
607
|
+
min-height: 100%;
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
.\!w-\[70px\] {
|
|
611
|
+
width: 70px !important;
|
|
612
|
+
}
|
|
613
|
+
|
|
545
614
|
.w-3\/5 {
|
|
546
615
|
width: 60%;
|
|
547
616
|
}
|
|
@@ -729,7 +798,7 @@
|
|
|
729
798
|
}
|
|
730
799
|
|
|
731
800
|
:where(.divide-gray-200 > :not(:last-child)) {
|
|
732
|
-
border-color: var(--
|
|
801
|
+
border-color: var(--color-gray-200);
|
|
733
802
|
}
|
|
734
803
|
|
|
735
804
|
.truncate {
|
|
@@ -754,6 +823,10 @@
|
|
|
754
823
|
border-radius: .25rem;
|
|
755
824
|
}
|
|
756
825
|
|
|
826
|
+
.rounded-2xl {
|
|
827
|
+
border-radius: var(--radius-2xl);
|
|
828
|
+
}
|
|
829
|
+
|
|
757
830
|
.rounded-full {
|
|
758
831
|
border-radius: 3.40282e38px;
|
|
759
832
|
}
|
|
@@ -800,15 +873,15 @@
|
|
|
800
873
|
}
|
|
801
874
|
|
|
802
875
|
.border-gray-200 {
|
|
803
|
-
border-color: var(--
|
|
876
|
+
border-color: var(--color-gray-200);
|
|
804
877
|
}
|
|
805
878
|
|
|
806
879
|
.border-gray-300 {
|
|
807
|
-
border-color: var(--
|
|
880
|
+
border-color: var(--color-gray-300);
|
|
808
881
|
}
|
|
809
882
|
|
|
810
883
|
.border-gray-400 {
|
|
811
|
-
border-color: var(--
|
|
884
|
+
border-color: var(--color-gray-400);
|
|
812
885
|
}
|
|
813
886
|
|
|
814
887
|
.border-transparent {
|
|
@@ -819,6 +892,16 @@
|
|
|
819
892
|
border-color: var(--color-white);
|
|
820
893
|
}
|
|
821
894
|
|
|
895
|
+
.bg-black\/30 {
|
|
896
|
+
background-color: #0000004d;
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
900
|
+
.bg-black\/30 {
|
|
901
|
+
background-color: color-mix(in oklab, var(--color-black) 30%, transparent);
|
|
902
|
+
}
|
|
903
|
+
}
|
|
904
|
+
|
|
822
905
|
.bg-blue-100 {
|
|
823
906
|
background-color: var(--color-blue-100);
|
|
824
907
|
}
|
|
@@ -832,15 +915,11 @@
|
|
|
832
915
|
}
|
|
833
916
|
|
|
834
917
|
.bg-gray-100 {
|
|
835
|
-
background-color: var(--
|
|
918
|
+
background-color: var(--color-gray-100);
|
|
836
919
|
}
|
|
837
920
|
|
|
838
921
|
.bg-gray-200 {
|
|
839
|
-
background-color: var(--
|
|
840
|
-
}
|
|
841
|
-
|
|
842
|
-
.bg-indigo-600 {
|
|
843
|
-
background-color: var(--color-indigo-600);
|
|
922
|
+
background-color: var(--color-gray-200);
|
|
844
923
|
}
|
|
845
924
|
|
|
846
925
|
.bg-red-100 {
|
|
@@ -871,6 +950,10 @@
|
|
|
871
950
|
padding: calc(var(--spacing) * 4);
|
|
872
951
|
}
|
|
873
952
|
|
|
953
|
+
.p-6 {
|
|
954
|
+
padding: calc(var(--spacing) * 6);
|
|
955
|
+
}
|
|
956
|
+
|
|
874
957
|
.p-8 {
|
|
875
958
|
padding: calc(var(--spacing) * 8);
|
|
876
959
|
}
|
|
@@ -887,6 +970,10 @@
|
|
|
887
970
|
padding-inline: calc(var(--spacing) * 4);
|
|
888
971
|
}
|
|
889
972
|
|
|
973
|
+
.px-5 {
|
|
974
|
+
padding-inline: calc(var(--spacing) * 5);
|
|
975
|
+
}
|
|
976
|
+
|
|
890
977
|
.px-\[12px\] {
|
|
891
978
|
padding-inline: 12px;
|
|
892
979
|
}
|
|
@@ -947,6 +1034,10 @@
|
|
|
947
1034
|
text-align: left;
|
|
948
1035
|
}
|
|
949
1036
|
|
|
1037
|
+
.align-middle {
|
|
1038
|
+
vertical-align: middle;
|
|
1039
|
+
}
|
|
1040
|
+
|
|
950
1041
|
.text-base {
|
|
951
1042
|
font-size: var(--text-base);
|
|
952
1043
|
line-height: var(--tw-leading, var(--text-base--line-height));
|
|
@@ -977,6 +1068,11 @@
|
|
|
977
1068
|
line-height: calc(var(--spacing) * 6);
|
|
978
1069
|
}
|
|
979
1070
|
|
|
1071
|
+
.font-bold {
|
|
1072
|
+
--tw-font-weight: var(--font-weight-bold);
|
|
1073
|
+
font-weight: var(--font-weight-bold);
|
|
1074
|
+
}
|
|
1075
|
+
|
|
980
1076
|
.font-medium {
|
|
981
1077
|
--tw-font-weight: var(--font-weight-medium);
|
|
982
1078
|
font-weight: var(--font-weight-medium);
|
|
@@ -1013,37 +1109,33 @@
|
|
|
1013
1109
|
}
|
|
1014
1110
|
|
|
1015
1111
|
.text-gray-400 {
|
|
1016
|
-
color: var(--
|
|
1112
|
+
color: var(--color-gray-400);
|
|
1017
1113
|
}
|
|
1018
1114
|
|
|
1019
1115
|
.text-gray-500 {
|
|
1020
|
-
color: var(--
|
|
1116
|
+
color: var(--color-gray-500);
|
|
1021
1117
|
}
|
|
1022
1118
|
|
|
1023
1119
|
.text-gray-600 {
|
|
1024
|
-
color: var(--
|
|
1120
|
+
color: var(--color-gray-600);
|
|
1025
1121
|
}
|
|
1026
1122
|
|
|
1027
1123
|
.text-gray-700 {
|
|
1028
|
-
color: var(--
|
|
1124
|
+
color: var(--color-gray-700);
|
|
1029
1125
|
}
|
|
1030
1126
|
|
|
1031
1127
|
.text-gray-800 {
|
|
1032
|
-
color: var(--
|
|
1128
|
+
color: var(--color-gray-800);
|
|
1033
1129
|
}
|
|
1034
1130
|
|
|
1035
1131
|
.text-gray-900 {
|
|
1036
|
-
color: var(--
|
|
1132
|
+
color: var(--color-gray-900);
|
|
1037
1133
|
}
|
|
1038
1134
|
|
|
1039
1135
|
.text-green-500 {
|
|
1040
1136
|
color: var(--color-green-500);
|
|
1041
1137
|
}
|
|
1042
1138
|
|
|
1043
|
-
.text-indigo-600 {
|
|
1044
|
-
color: var(--color-indigo-600);
|
|
1045
|
-
}
|
|
1046
|
-
|
|
1047
1139
|
.text-purple-500 {
|
|
1048
1140
|
color: var(--color-purple-500);
|
|
1049
1141
|
}
|
|
@@ -1091,6 +1183,11 @@
|
|
|
1091
1183
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1092
1184
|
}
|
|
1093
1185
|
|
|
1186
|
+
.shadow-xl {
|
|
1187
|
+
--tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, #0000001a), 0 8px 10px -6px var(--tw-shadow-color, #0000001a);
|
|
1188
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1189
|
+
}
|
|
1190
|
+
|
|
1094
1191
|
.ring, .ring-1 {
|
|
1095
1192
|
--tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1096
1193
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -1101,7 +1198,7 @@
|
|
|
1101
1198
|
}
|
|
1102
1199
|
|
|
1103
1200
|
.ring-gray-300 {
|
|
1104
|
-
--tw-ring-color: var(--
|
|
1201
|
+
--tw-ring-color: var(--color-gray-300);
|
|
1105
1202
|
}
|
|
1106
1203
|
|
|
1107
1204
|
.ring-red-500 {
|
|
@@ -1131,6 +1228,12 @@
|
|
|
1131
1228
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1132
1229
|
}
|
|
1133
1230
|
|
|
1231
|
+
.transition-all {
|
|
1232
|
+
transition-property: all;
|
|
1233
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1234
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1235
|
+
}
|
|
1236
|
+
|
|
1134
1237
|
.transition-colors {
|
|
1135
1238
|
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
1136
1239
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
@@ -1213,7 +1316,7 @@
|
|
|
1213
1316
|
}
|
|
1214
1317
|
|
|
1215
1318
|
.hover\:bg-gray-100:hover {
|
|
1216
|
-
background-color: var(--
|
|
1319
|
+
background-color: var(--color-gray-100);
|
|
1217
1320
|
}
|
|
1218
1321
|
|
|
1219
1322
|
.hover\:bg-white\/\[0\.6\]:hover {
|
|
@@ -1231,11 +1334,11 @@
|
|
|
1231
1334
|
}
|
|
1232
1335
|
|
|
1233
1336
|
.hover\:text-gray-800:hover {
|
|
1234
|
-
color: var(--
|
|
1337
|
+
color: var(--color-gray-800);
|
|
1235
1338
|
}
|
|
1236
1339
|
|
|
1237
1340
|
.hover\:text-gray-900:hover {
|
|
1238
|
-
color: var(--
|
|
1341
|
+
color: var(--color-gray-900);
|
|
1239
1342
|
}
|
|
1240
1343
|
|
|
1241
1344
|
.hover\:text-red-500:hover {
|
|
@@ -1307,14 +1410,34 @@
|
|
|
1307
1410
|
line-height: calc(var(--spacing) * 6);
|
|
1308
1411
|
}
|
|
1309
1412
|
}
|
|
1413
|
+
|
|
1414
|
+
@media (min-width: 48rem) {
|
|
1415
|
+
.md\:min-w-96 {
|
|
1416
|
+
min-width: calc(var(--spacing) * 96);
|
|
1417
|
+
}
|
|
1418
|
+
}
|
|
1419
|
+
|
|
1420
|
+
@media (min-width: 64rem) {
|
|
1421
|
+
.lg\:mx-0 {
|
|
1422
|
+
margin-inline: calc(var(--spacing) * 0);
|
|
1423
|
+
}
|
|
1424
|
+
|
|
1425
|
+
.lg\:w-\[36rem\] {
|
|
1426
|
+
width: 36rem;
|
|
1427
|
+
}
|
|
1428
|
+
|
|
1429
|
+
.lg\:min-w-\[36rem\] {
|
|
1430
|
+
min-width: 36rem;
|
|
1431
|
+
}
|
|
1432
|
+
}
|
|
1310
1433
|
}
|
|
1311
1434
|
|
|
1312
1435
|
:root {
|
|
1313
1436
|
--font-primary: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1314
|
-
--primaryColor: #
|
|
1437
|
+
--primaryColor: #fc0;
|
|
1315
1438
|
--secondaryColor: #1e1e1e;
|
|
1316
1439
|
--secondaryTextColor: #1e1e1e;
|
|
1317
|
-
--textColor: #
|
|
1440
|
+
--textColor: #1e1e1e;
|
|
1318
1441
|
--linkColor: #1c61a5;
|
|
1319
1442
|
--color-text-primary: #1a1a1a;
|
|
1320
1443
|
--color-text-secondary: #4d4d4d;
|
|
@@ -1667,30 +1790,33 @@ body {
|
|
|
1667
1790
|
|
|
1668
1791
|
.checkbox-box {
|
|
1669
1792
|
background-color: #fff;
|
|
1670
|
-
border:
|
|
1793
|
+
border: 1px solid #9ca3af;
|
|
1671
1794
|
border-radius: .25rem;
|
|
1672
1795
|
flex-shrink: 0;
|
|
1673
1796
|
justify-content: center;
|
|
1674
1797
|
align-items: center;
|
|
1675
|
-
width:
|
|
1676
|
-
height:
|
|
1798
|
+
width: 1rem;
|
|
1799
|
+
height: 1rem;
|
|
1677
1800
|
transition: background-color .2s, border-color .2s;
|
|
1678
1801
|
display: flex;
|
|
1802
|
+
position: relative;
|
|
1803
|
+
overflow: hidden;
|
|
1679
1804
|
}
|
|
1680
1805
|
|
|
1681
1806
|
.checkbox-check-icon {
|
|
1682
1807
|
color: #fff;
|
|
1683
|
-
width:
|
|
1684
|
-
height:
|
|
1808
|
+
width: .8rem;
|
|
1809
|
+
height: .8rem;
|
|
1810
|
+
position: absolute;
|
|
1685
1811
|
}
|
|
1686
1812
|
|
|
1687
1813
|
.checkbox-box--checked {
|
|
1688
|
-
background-color: #
|
|
1689
|
-
border-color: #
|
|
1814
|
+
background-color: #1e2939;
|
|
1815
|
+
border-color: #1e2939;
|
|
1690
1816
|
}
|
|
1691
1817
|
|
|
1692
1818
|
.checkbox-input:focus-visible + .checkbox-box {
|
|
1693
|
-
border-color: #
|
|
1819
|
+
border-color: #1e2939;
|
|
1694
1820
|
outline: none;
|
|
1695
1821
|
box-shadow: 0 0 0 3px #2563eb4d;
|
|
1696
1822
|
}
|
|
@@ -1708,7 +1834,7 @@ body {
|
|
|
1708
1834
|
color: #374151;
|
|
1709
1835
|
-webkit-user-select: none;
|
|
1710
1836
|
user-select: none;
|
|
1711
|
-
font-size:
|
|
1837
|
+
font-size: .8rem;
|
|
1712
1838
|
}
|
|
1713
1839
|
|
|
1714
1840
|
.checkbox-error-message {
|
|
@@ -4181,10 +4307,8 @@ body {
|
|
|
4181
4307
|
}
|
|
4182
4308
|
|
|
4183
4309
|
.options-menu-item {
|
|
4184
|
-
color: #374151;
|
|
4185
4310
|
cursor: pointer;
|
|
4186
4311
|
text-align: left;
|
|
4187
|
-
background: none;
|
|
4188
4312
|
border: none;
|
|
4189
4313
|
border-radius: .25rem;
|
|
4190
4314
|
align-items: center;
|
|
@@ -4195,11 +4319,6 @@ body {
|
|
|
4195
4319
|
display: flex;
|
|
4196
4320
|
}
|
|
4197
4321
|
|
|
4198
|
-
.options-menu-item.active {
|
|
4199
|
-
color: #fff;
|
|
4200
|
-
background-color: #2563eb;
|
|
4201
|
-
}
|
|
4202
|
-
|
|
4203
4322
|
.options-menu-item:disabled {
|
|
4204
4323
|
color: #9ca3af;
|
|
4205
4324
|
cursor: not-allowed;
|
|
@@ -5342,9 +5461,9 @@ body {
|
|
|
5342
5461
|
|
|
5343
5462
|
/* Our custom checkbox box */
|
|
5344
5463
|
.checkbox-box {
|
|
5345
|
-
width:
|
|
5346
|
-
height:
|
|
5347
|
-
border:
|
|
5464
|
+
width: 1rem; /* 16px */
|
|
5465
|
+
height: 1rem; /* 16px */
|
|
5466
|
+
border: 1px solid #9ca3af; /* gray-400 */
|
|
5348
5467
|
border-radius: 0.25rem;
|
|
5349
5468
|
background-color: white;
|
|
5350
5469
|
display: flex;
|
|
@@ -5352,27 +5471,30 @@ body {
|
|
|
5352
5471
|
justify-content: center;
|
|
5353
5472
|
transition: background-color 0.2s, border-color 0.2s;
|
|
5354
5473
|
flex-shrink: 0; /* Prevents the box from shrinking */
|
|
5474
|
+
overflow: hidden;
|
|
5475
|
+
position: relative;
|
|
5355
5476
|
}
|
|
5356
5477
|
|
|
5357
5478
|
/* Style for the checkmark icon */
|
|
5358
5479
|
.checkbox-check-icon {
|
|
5359
|
-
width:
|
|
5360
|
-
height:
|
|
5480
|
+
width: 0.8rem;
|
|
5481
|
+
height: 0.8rem;
|
|
5361
5482
|
color: white;
|
|
5483
|
+
position: absolute;
|
|
5362
5484
|
}
|
|
5363
5485
|
|
|
5364
5486
|
/* --- States --- */
|
|
5365
5487
|
|
|
5366
5488
|
/* Checked state */
|
|
5367
5489
|
.checkbox-box--checked {
|
|
5368
|
-
background-color: #
|
|
5369
|
-
border-color: #
|
|
5490
|
+
background-color: #1e2939; /* blue-600 */
|
|
5491
|
+
border-color: #1e2939;
|
|
5370
5492
|
}
|
|
5371
5493
|
|
|
5372
5494
|
/* Focus state (when the hidden input is focused) */
|
|
5373
5495
|
.checkbox-input:focus-visible + .checkbox-box {
|
|
5374
5496
|
outline: none;
|
|
5375
|
-
border-color: #
|
|
5497
|
+
border-color: #1e2939;
|
|
5376
5498
|
box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
|
|
5377
5499
|
}
|
|
5378
5500
|
|
|
@@ -5387,7 +5509,7 @@ body {
|
|
|
5387
5509
|
|
|
5388
5510
|
/* Label styles */
|
|
5389
5511
|
.checkbox-label-text {
|
|
5390
|
-
font-size:
|
|
5512
|
+
font-size: .8rem;
|
|
5391
5513
|
color: #374151;
|
|
5392
5514
|
user-select: none;
|
|
5393
5515
|
}
|
|
@@ -8203,19 +8325,18 @@ body {
|
|
|
8203
8325
|
width: 100%;
|
|
8204
8326
|
padding: 0.5rem 0.75rem;
|
|
8205
8327
|
font-size: 0.875rem;
|
|
8206
|
-
color: #374151; /* gray-700 */
|
|
8207
8328
|
border-radius: 0.25rem;
|
|
8208
8329
|
transition: background-color 0.15s, color 0.15s;
|
|
8209
|
-
background: none;
|
|
8210
8330
|
border: none;
|
|
8211
8331
|
cursor: pointer;
|
|
8212
8332
|
text-align: left;
|
|
8213
8333
|
}
|
|
8214
8334
|
|
|
8215
|
-
.options-menu-item.active {
|
|
8216
|
-
background-color: #2563eb;
|
|
8335
|
+
/* .options-menu-item.active {
|
|
8336
|
+
/* background-color: #2563eb;
|
|
8217
8337
|
color: white;
|
|
8218
|
-
}
|
|
8338
|
+
} */
|
|
8339
|
+
|
|
8219
8340
|
.options-menu-item:disabled {
|
|
8220
8341
|
color: #9ca3af;
|
|
8221
8342
|
cursor: not-allowed;
|