unifyedx-storybook-new 0.1.39 → 0.1.40

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.
@@ -65,12 +65,14 @@
65
65
  --color-red-100: oklch(93.6% .032 17.717);
66
66
  --color-red-500: oklch(63.7% .237 25.331);
67
67
  --color-red-600: oklch(57.7% .245 27.325);
68
+ --color-red-700: oklch(50.5% .213 27.518);
68
69
  --color-red-900: oklch(39.6% .141 25.723);
69
70
  --color-green-500: oklch(72.3% .219 149.579);
70
71
  --color-teal-100: oklch(95.3% .051 180.801);
71
72
  --color-teal-700: oklch(51.1% .096 186.391);
72
73
  --color-blue-50: oklch(97% .014 254.604);
73
74
  --color-blue-100: oklch(93.2% .032 255.585);
75
+ --color-blue-200: oklch(88.2% .059 254.128);
74
76
  --color-blue-300: oklch(80.9% .105 251.813);
75
77
  --color-blue-400: oklch(70.7% .165 254.624);
76
78
  --color-blue-500: oklch(62.3% .214 259.815);
@@ -78,6 +80,8 @@
78
80
  --color-blue-700: oklch(48.8% .243 264.376);
79
81
  --color-blue-800: oklch(42.4% .199 265.638);
80
82
  --color-blue-900: oklch(37.9% .146 265.522);
83
+ --color-indigo-600: oklch(51.1% .262 276.966);
84
+ --color-indigo-800: oklch(39.8% .195 277.366);
81
85
  --color-purple-500: oklch(62.7% .265 303.9);
82
86
  --color-gray-50: oklch(98.5% .002 247.839);
83
87
  --color-gray-100: oklch(96.7% .003 264.542);
@@ -100,10 +104,15 @@
100
104
  --text-base--line-height: calc(1.5 / 1);
101
105
  --text-lg: 1.125rem;
102
106
  --text-lg--line-height: calc(1.75 / 1.125);
107
+ --text-xl: 1.25rem;
108
+ --text-xl--line-height: calc(1.75 / 1.25);
109
+ --font-weight-light: 300;
103
110
  --font-weight-normal: 400;
104
111
  --font-weight-medium: 500;
105
112
  --font-weight-semibold: 600;
106
113
  --font-weight-bold: 700;
114
+ --leading-tight: 1.25;
115
+ --leading-normal: 1.5;
107
116
  --radius-sm: .25rem;
108
117
  --radius-md: .375rem;
109
118
  --radius-lg: .5rem;
@@ -372,6 +381,10 @@
372
381
  pointer-events: none;
373
382
  }
374
383
 
384
+ .collapse {
385
+ visibility: collapse;
386
+ }
387
+
375
388
  .visible {
376
389
  visibility: visible;
377
390
  }
@@ -490,6 +503,10 @@
490
503
  }
491
504
  }
492
505
 
506
+ .m-0 {
507
+ margin: calc(var(--spacing) * 0);
508
+ }
509
+
493
510
  .mx-5 {
494
511
  margin-inline: calc(var(--spacing) * 5);
495
512
  }
@@ -506,6 +523,10 @@
506
523
  margin-top: calc(var(--spacing) * 4);
507
524
  }
508
525
 
526
+ .mt-5 {
527
+ margin-top: calc(var(--spacing) * 5);
528
+ }
529
+
509
530
  .mt-10 {
510
531
  margin-top: calc(var(--spacing) * 10);
511
532
  }
@@ -522,14 +543,34 @@
522
543
  margin-bottom: calc(var(--spacing) * 0) !important;
523
544
  }
524
545
 
546
+ .mb-0 {
547
+ margin-bottom: calc(var(--spacing) * 0);
548
+ }
549
+
550
+ .mb-2 {
551
+ margin-bottom: calc(var(--spacing) * 2);
552
+ }
553
+
554
+ .mb-4 {
555
+ margin-bottom: calc(var(--spacing) * 4);
556
+ }
557
+
525
558
  .mb-5 {
526
559
  margin-bottom: calc(var(--spacing) * 5);
527
560
  }
528
561
 
562
+ .mb-8 {
563
+ margin-bottom: calc(var(--spacing) * 8);
564
+ }
565
+
529
566
  .-ml-4 {
530
567
  margin-left: calc(var(--spacing) * -4);
531
568
  }
532
569
 
570
+ .ml-2 {
571
+ margin-left: calc(var(--spacing) * 2);
572
+ }
573
+
533
574
  .block {
534
575
  display: block;
535
576
  }
@@ -590,10 +631,22 @@
590
631
  height: calc(var(--spacing) * 12);
591
632
  }
592
633
 
634
+ .h-\[72px\] {
635
+ height: 72px;
636
+ }
637
+
638
+ .h-\[220px\] {
639
+ height: 220px;
640
+ }
641
+
593
642
  .h-\[calc\(100vh-330px\)\] {
594
643
  height: calc(100vh - 330px);
595
644
  }
596
645
 
646
+ .h-\[calc\(100vh-350px\)\] {
647
+ height: calc(100vh - 350px);
648
+ }
649
+
597
650
  .h-full {
598
651
  height: 100%;
599
652
  }
@@ -610,6 +663,10 @@
610
663
  min-height: 100%;
611
664
  }
612
665
 
666
+ .min-h-screen {
667
+ min-height: 100vh;
668
+ }
669
+
613
670
  .\!w-\[70px\] {
614
671
  width: 70px !important;
615
672
  }
@@ -646,10 +703,26 @@
646
703
  width: calc(var(--spacing) * 12);
647
704
  }
648
705
 
706
+ .w-16 {
707
+ width: calc(var(--spacing) * 16);
708
+ }
709
+
649
710
  .w-48 {
650
711
  width: calc(var(--spacing) * 48);
651
712
  }
652
713
 
714
+ .w-\[72px\] {
715
+ width: 72px;
716
+ }
717
+
718
+ .w-\[120px\] {
719
+ width: 120px;
720
+ }
721
+
722
+ .w-\[340px\] {
723
+ width: 340px;
724
+ }
725
+
653
726
  .w-auto {
654
727
  width: auto;
655
728
  }
@@ -658,6 +731,14 @@
658
731
  width: 100%;
659
732
  }
660
733
 
734
+ .max-w-\[800px\] {
735
+ max-width: 800px;
736
+ }
737
+
738
+ .min-w-0 {
739
+ min-width: calc(var(--spacing) * 0);
740
+ }
741
+
661
742
  .min-w-\[120px\] {
662
743
  min-width: 120px;
663
744
  }
@@ -710,10 +791,22 @@
710
791
  cursor: default;
711
792
  }
712
793
 
794
+ .cursor-move {
795
+ cursor: move;
796
+ }
797
+
713
798
  .cursor-not-allowed {
714
799
  cursor: not-allowed;
715
800
  }
716
801
 
802
+ .cursor-pointer {
803
+ cursor: pointer;
804
+ }
805
+
806
+ .grid-cols-1 {
807
+ grid-template-columns: repeat(1, minmax(0, 1fr));
808
+ }
809
+
717
810
  .grid-cols-3 {
718
811
  grid-template-columns: repeat(3, minmax(0, 1fr));
719
812
  }
@@ -722,6 +815,10 @@
722
815
  flex-direction: column;
723
816
  }
724
817
 
818
+ .flex-row {
819
+ flex-direction: row;
820
+ }
821
+
725
822
  .flex-wrap {
726
823
  flex-wrap: wrap;
727
824
  }
@@ -750,6 +847,10 @@
750
847
  gap: calc(var(--spacing) * 1);
751
848
  }
752
849
 
850
+ .gap-1\.5 {
851
+ gap: calc(var(--spacing) * 1.5);
852
+ }
853
+
753
854
  .gap-2 {
754
855
  gap: calc(var(--spacing) * 2);
755
856
  }
@@ -762,6 +863,14 @@
762
863
  gap: calc(var(--spacing) * 4);
763
864
  }
764
865
 
866
+ .gap-5 {
867
+ gap: calc(var(--spacing) * 5);
868
+ }
869
+
870
+ .gap-6 {
871
+ gap: calc(var(--spacing) * 6);
872
+ }
873
+
765
874
  :where(.space-y-1 > :not(:last-child)) {
766
875
  --tw-space-y-reverse: 0;
767
876
  margin-block-start: calc(calc(var(--spacing) * 1) * var(--tw-space-y-reverse));
@@ -786,12 +895,24 @@
786
895
  margin-block-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-y-reverse)));
787
896
  }
788
897
 
898
+ :where(.-space-x-2 > :not(:last-child)) {
899
+ --tw-space-x-reverse: 0;
900
+ margin-inline-start: calc(calc(var(--spacing) * -2) * var(--tw-space-x-reverse));
901
+ margin-inline-end: calc(calc(var(--spacing) * -2) * calc(1 - var(--tw-space-x-reverse)));
902
+ }
903
+
789
904
  :where(.space-x-1 > :not(:last-child)) {
790
905
  --tw-space-x-reverse: 0;
791
906
  margin-inline-start: calc(calc(var(--spacing) * 1) * var(--tw-space-x-reverse));
792
907
  margin-inline-end: calc(calc(var(--spacing) * 1) * calc(1 - var(--tw-space-x-reverse)));
793
908
  }
794
909
 
910
+ :where(.space-x-8 > :not(:last-child)) {
911
+ --tw-space-x-reverse: 0;
912
+ margin-inline-start: calc(calc(var(--spacing) * 8) * var(--tw-space-x-reverse));
913
+ margin-inline-end: calc(calc(var(--spacing) * 8) * calc(1 - var(--tw-space-x-reverse)));
914
+ }
915
+
795
916
  :where(.divide-y > :not(:last-child)) {
796
917
  --tw-divide-y-reverse: 0;
797
918
  border-bottom-style: var(--tw-border-style);
@@ -818,6 +939,10 @@
818
939
  overflow: hidden;
819
940
  }
820
941
 
942
+ .overflow-x-auto {
943
+ overflow-x: auto;
944
+ }
945
+
821
946
  .overflow-y-auto {
822
947
  overflow-y: auto;
823
948
  }
@@ -830,6 +955,14 @@
830
955
  border-radius: var(--radius-2xl);
831
956
  }
832
957
 
958
+ .rounded-\[12px\] {
959
+ border-radius: 12px;
960
+ }
961
+
962
+ .rounded-\[14px\] {
963
+ border-radius: 14px;
964
+ }
965
+
833
966
  .rounded-full {
834
967
  border-radius: 3.40282e38px;
835
968
  }
@@ -850,6 +983,21 @@
850
983
  border-radius: var(--radius-xl);
851
984
  }
852
985
 
986
+ .rounded-t-2xl {
987
+ border-top-left-radius: var(--radius-2xl);
988
+ border-top-right-radius: var(--radius-2xl);
989
+ }
990
+
991
+ .rounded-t-md {
992
+ border-top-left-radius: var(--radius-md);
993
+ border-top-right-radius: var(--radius-md);
994
+ }
995
+
996
+ .rounded-b-2xl {
997
+ border-bottom-right-radius: var(--radius-2xl);
998
+ border-bottom-left-radius: var(--radius-2xl);
999
+ }
1000
+
853
1001
  .border {
854
1002
  border-style: var(--tw-border-style);
855
1003
  border-width: 1px;
@@ -870,11 +1018,32 @@
870
1018
  border-bottom-width: 1px;
871
1019
  }
872
1020
 
1021
+ .border-b-2 {
1022
+ border-bottom-style: var(--tw-border-style);
1023
+ border-bottom-width: 2px;
1024
+ }
1025
+
873
1026
  .border-dashed {
874
1027
  --tw-border-style: dashed;
875
1028
  border-style: dashed;
876
1029
  }
877
1030
 
1031
+ .border-\[\#e6e9ee\] {
1032
+ border-color: #e6e9ee;
1033
+ }
1034
+
1035
+ .border-\[\#eef2f6\] {
1036
+ border-color: #eef2f6;
1037
+ }
1038
+
1039
+ .border-black {
1040
+ border-color: var(--color-black);
1041
+ }
1042
+
1043
+ .border-blue-200 {
1044
+ border-color: var(--color-blue-200);
1045
+ }
1046
+
878
1047
  .border-gray-200 {
879
1048
  border-color: var(--color-gray-200);
880
1049
  }
@@ -887,6 +1056,20 @@
887
1056
  border-color: var(--color-gray-400);
888
1057
  }
889
1058
 
1059
+ .border-gray-400\/50 {
1060
+ border-color: #99a1af80;
1061
+ }
1062
+
1063
+ @supports (color: color-mix(in lab, red, red)) {
1064
+ .border-gray-400\/50 {
1065
+ border-color: color-mix(in oklab, var(--color-gray-400) 50%, transparent);
1066
+ }
1067
+ }
1068
+
1069
+ .border-red-500 {
1070
+ border-color: var(--color-red-500);
1071
+ }
1072
+
890
1073
  .border-transparent {
891
1074
  border-color: #0000;
892
1075
  }
@@ -895,6 +1078,18 @@
895
1078
  border-color: var(--color-white);
896
1079
  }
897
1080
 
1081
+ .bg-\[\#F5F5F6\] {
1082
+ background-color: #f5f5f6;
1083
+ }
1084
+
1085
+ .bg-\[\#ffffff\] {
1086
+ background-color: #fff;
1087
+ }
1088
+
1089
+ .bg-black {
1090
+ background-color: var(--color-black);
1091
+ }
1092
+
898
1093
  .bg-black\/30 {
899
1094
  background-color: #0000004d;
900
1095
  }
@@ -905,6 +1100,10 @@
905
1100
  }
906
1101
  }
907
1102
 
1103
+ .bg-blue-50 {
1104
+ background-color: var(--color-blue-50);
1105
+ }
1106
+
908
1107
  .bg-blue-100 {
909
1108
  background-color: var(--color-blue-100);
910
1109
  }
@@ -941,6 +1140,10 @@
941
1140
  background-color: var(--color-white);
942
1141
  }
943
1142
 
1143
+ .object-cover {
1144
+ object-fit: cover;
1145
+ }
1146
+
944
1147
  .p-1 {
945
1148
  padding: calc(var(--spacing) * 1);
946
1149
  }
@@ -981,6 +1184,18 @@
981
1184
  padding-inline: calc(var(--spacing) * 5);
982
1185
  }
983
1186
 
1187
+ .px-6 {
1188
+ padding-inline: calc(var(--spacing) * 6);
1189
+ }
1190
+
1191
+ .px-7 {
1192
+ padding-inline: calc(var(--spacing) * 7);
1193
+ }
1194
+
1195
+ .px-\[10px\] {
1196
+ padding-inline: 10px;
1197
+ }
1198
+
984
1199
  .px-\[12px\] {
985
1200
  padding-inline: 12px;
986
1201
  }
@@ -997,14 +1212,26 @@
997
1212
  padding-block: calc(var(--spacing) * 2);
998
1213
  }
999
1214
 
1215
+ .py-3 {
1216
+ padding-block: calc(var(--spacing) * 3);
1217
+ }
1218
+
1000
1219
  .py-4 {
1001
1220
  padding-block: calc(var(--spacing) * 4);
1002
1221
  }
1003
1222
 
1223
+ .py-5 {
1224
+ padding-block: calc(var(--spacing) * 5);
1225
+ }
1226
+
1004
1227
  .py-\[2px\] {
1005
1228
  padding-block: 2px;
1006
1229
  }
1007
1230
 
1231
+ .py-\[6px\] {
1232
+ padding-block: 6px;
1233
+ }
1234
+
1008
1235
  .pt-4 {
1009
1236
  padding-top: calc(var(--spacing) * 4);
1010
1237
  }
@@ -1045,6 +1272,10 @@
1045
1272
  vertical-align: middle;
1046
1273
  }
1047
1274
 
1275
+ .font-mono {
1276
+ font-family: var(--font-mono);
1277
+ }
1278
+
1048
1279
  .text-base {
1049
1280
  font-size: var(--text-base);
1050
1281
  line-height: var(--tw-leading, var(--text-base--line-height));
@@ -1060,11 +1291,28 @@
1060
1291
  line-height: var(--tw-leading, var(--text-sm--line-height));
1061
1292
  }
1062
1293
 
1294
+ .text-xl {
1295
+ font-size: var(--text-xl);
1296
+ line-height: var(--tw-leading, var(--text-xl--line-height));
1297
+ }
1298
+
1063
1299
  .text-xs {
1064
1300
  font-size: var(--text-xs);
1065
1301
  line-height: var(--tw-leading, var(--text-xs--line-height));
1066
1302
  }
1067
1303
 
1304
+ .text-\[11px\] {
1305
+ font-size: 11px;
1306
+ }
1307
+
1308
+ .text-\[13px\] {
1309
+ font-size: 13px;
1310
+ }
1311
+
1312
+ .text-\[18px\] {
1313
+ font-size: 18px;
1314
+ }
1315
+
1068
1316
  .leading-5 {
1069
1317
  --tw-leading: calc(var(--spacing) * 5);
1070
1318
  line-height: calc(var(--spacing) * 5);
@@ -1075,11 +1323,26 @@
1075
1323
  line-height: calc(var(--spacing) * 6);
1076
1324
  }
1077
1325
 
1326
+ .leading-normal {
1327
+ --tw-leading: var(--leading-normal);
1328
+ line-height: var(--leading-normal);
1329
+ }
1330
+
1331
+ .leading-tight {
1332
+ --tw-leading: var(--leading-tight);
1333
+ line-height: var(--leading-tight);
1334
+ }
1335
+
1078
1336
  .font-bold {
1079
1337
  --tw-font-weight: var(--font-weight-bold);
1080
1338
  font-weight: var(--font-weight-bold);
1081
1339
  }
1082
1340
 
1341
+ .font-light {
1342
+ --tw-font-weight: var(--font-weight-light);
1343
+ font-weight: var(--font-weight-light);
1344
+ }
1345
+
1083
1346
  .font-medium {
1084
1347
  --tw-font-weight: var(--font-weight-medium);
1085
1348
  font-weight: var(--font-weight-medium);
@@ -1095,6 +1358,30 @@
1095
1358
  font-weight: var(--font-weight-semibold);
1096
1359
  }
1097
1360
 
1361
+ .whitespace-nowrap {
1362
+ white-space: nowrap;
1363
+ }
1364
+
1365
+ .text-\[\#1C274C\] {
1366
+ color: #1c274c;
1367
+ }
1368
+
1369
+ .text-\[\#6b7280\] {
1370
+ color: #6b7280;
1371
+ }
1372
+
1373
+ .text-\[\#252525\] {
1374
+ color: #252525;
1375
+ }
1376
+
1377
+ .text-\[\#767676\] {
1378
+ color: #767676;
1379
+ }
1380
+
1381
+ .text-black {
1382
+ color: var(--color-black);
1383
+ }
1384
+
1098
1385
  .text-blue-500 {
1099
1386
  color: var(--color-blue-500);
1100
1387
  }
@@ -1139,6 +1426,10 @@
1139
1426
  color: var(--color-green-500);
1140
1427
  }
1141
1428
 
1429
+ .text-indigo-600 {
1430
+ color: var(--color-indigo-600);
1431
+ }
1432
+
1142
1433
  .text-purple-500 {
1143
1434
  color: var(--color-purple-500);
1144
1435
  }
@@ -1163,16 +1454,20 @@
1163
1454
  color: var(--color-white);
1164
1455
  }
1165
1456
 
1166
- .italic {
1167
- font-style: italic;
1457
+ .opacity-0 {
1458
+ opacity: 0;
1459
+ }
1460
+
1461
+ .opacity-50 {
1462
+ opacity: .5;
1168
1463
  }
1169
1464
 
1170
- .underline {
1171
- text-decoration-line: underline;
1465
+ .opacity-70 {
1466
+ opacity: .7;
1172
1467
  }
1173
1468
 
1174
- .opacity-0 {
1175
- opacity: 0;
1469
+ .opacity-90 {
1470
+ opacity: .9;
1176
1471
  }
1177
1472
 
1178
1473
  .opacity-100 {
@@ -1314,6 +1609,10 @@
1314
1609
  cursor: pointer;
1315
1610
  }
1316
1611
 
1612
+ .hover\:border-gray-300:hover {
1613
+ border-color: var(--color-gray-300);
1614
+ }
1615
+
1317
1616
  .hover\:bg-blue-50:hover {
1318
1617
  background-color: var(--color-blue-50);
1319
1618
  }
@@ -1330,6 +1629,10 @@
1330
1629
  background-color: var(--color-gray-100);
1331
1630
  }
1332
1631
 
1632
+ .hover\:bg-gray-800:hover {
1633
+ background-color: var(--color-gray-800);
1634
+ }
1635
+
1333
1636
  .hover\:bg-white\/\[0\.6\]:hover {
1334
1637
  background-color: #fff9;
1335
1638
  }
@@ -1340,10 +1643,22 @@
1340
1643
  }
1341
1644
  }
1342
1645
 
1646
+ .hover\:text-\[\#1f6ed4\]:hover {
1647
+ color: #1f6ed4;
1648
+ }
1649
+
1343
1650
  .hover\:text-blue-800:hover {
1344
1651
  color: var(--color-blue-800);
1345
1652
  }
1346
1653
 
1654
+ .hover\:text-gray-600:hover {
1655
+ color: var(--color-gray-600);
1656
+ }
1657
+
1658
+ .hover\:text-gray-700:hover {
1659
+ color: var(--color-gray-700);
1660
+ }
1661
+
1347
1662
  .hover\:text-gray-800:hover {
1348
1663
  color: var(--color-gray-800);
1349
1664
  }
@@ -1352,10 +1667,18 @@
1352
1667
  color: var(--color-gray-900);
1353
1668
  }
1354
1669
 
1670
+ .hover\:text-indigo-800:hover {
1671
+ color: var(--color-indigo-800);
1672
+ }
1673
+
1355
1674
  .hover\:text-red-500:hover {
1356
1675
  color: var(--color-red-500);
1357
1676
  }
1358
1677
 
1678
+ .hover\:text-red-700:hover {
1679
+ color: var(--color-red-700);
1680
+ }
1681
+
1359
1682
  .hover\:underline:hover {
1360
1683
  text-decoration-line: underline;
1361
1684
  }
@@ -1426,6 +1749,10 @@
1426
1749
  .md\:min-w-96 {
1427
1750
  min-width: calc(var(--spacing) * 96);
1428
1751
  }
1752
+
1753
+ .md\:grid-cols-2 {
1754
+ grid-template-columns: repeat(2, minmax(0, 1fr));
1755
+ }
1429
1756
  }
1430
1757
 
1431
1758
  @media (min-width: 64rem) {
@@ -3394,8 +3721,9 @@ body {
3394
3721
  }
3395
3722
 
3396
3723
  .switch-container {
3724
+ align-items: center;
3397
3725
  width: 100%;
3398
- font-family: sans-serif;
3726
+ display: flex;
3399
3727
  }
3400
3728
 
3401
3729
  .switch-group {
@@ -3419,11 +3747,11 @@ body {
3419
3747
 
3420
3748
  .switch-element:focus-visible {
3421
3749
  outline-offset: 2px;
3422
- outline: 2px solid #3b82f6;
3750
+ outline: 2px solid #72bd4d;
3423
3751
  }
3424
3752
 
3425
3753
  .switch-element[data-headlessui-state~="checked"] {
3426
- background-color: #2563eb;
3754
+ background-color: #72bd4d;
3427
3755
  }
3428
3756
 
3429
3757
  .switch-element[data-headlessui-state~="disabled"] {
@@ -4787,10 +5115,6 @@ body {
4787
5115
  position: relative;
4788
5116
  }
4789
5117
 
4790
- .ck-powered-by {
4791
- display: none;
4792
- }
4793
-
4794
5118
  #ui-toast-backdrop {
4795
5119
  opacity: 0;
4796
5120
  pointer-events: none;
@@ -7904,7 +8228,8 @@ body.toast-backdrop #ui-toast-backdrop {
7904
8228
  /* ... (all other classes like .textarea-field, .textarea-error-message are the same) ... */
7905
8229
  .switch-container {
7906
8230
  width: 100%;
7907
- font-family: sans-serif;
8231
+ display: flex;
8232
+ align-items: center;
7908
8233
  }
7909
8234
 
7910
8235
  .switch-group {
@@ -7927,12 +8252,12 @@ body.toast-backdrop #ui-toast-backdrop {
7927
8252
  }
7928
8253
 
7929
8254
  .switch-element:focus-visible {
7930
- outline: 2px solid #3b82f6; /* blue-500 */
8255
+ outline: 2px solid #72bd4d; /* blue-500 */
7931
8256
  outline-offset: 2px;
7932
8257
  }
7933
8258
 
7934
8259
  .switch-element[data-headlessui-state~="checked"] {
7935
- background-color: #2563eb; /* blue-600 */
8260
+ background-color: #72bd4d; /* blue-600 */
7936
8261
  }
7937
8262
 
7938
8263
  /* Disabled state */
@@ -8840,7 +9165,7 @@ body.toast-backdrop #ui-toast-backdrop {
8840
9165
  position: relative;
8841
9166
  contain: content;
8842
9167
  }
8843
- .ck-powered-by{display:none}:root {
9168
+ :root {
8844
9169
  --toastify-color-light: #fff;
8845
9170
  --toastify-color-dark: #121212;
8846
9171
  --toastify-color-info: #3498db;
@@ -9640,6 +9965,48 @@ body.toast-backdrop #ui-toast-backdrop {
9640
9965
  transform: rotate(360deg);
9641
9966
  }
9642
9967
  }
9968
+ /* FullConfigPage Styles */
9969
+ .full-config-page {
9970
+ margin: 28px auto;
9971
+ padding: 18px;
9972
+ background: #f5f6f8;
9973
+ min-height: 100vh;
9974
+ }
9975
+
9976
+ .full-config-page .icon {
9977
+ display: flex;
9978
+ align-items: center;
9979
+ justify-content: center;
9980
+ }
9981
+
9982
+ .full-config-page .pill {
9983
+ display: inline-block;
9984
+ }
9985
+
9986
+ /* Tab content styling */
9987
+ .full-config-page .tab-content {
9988
+ height: calc(100vh - 200px);
9989
+ overflow-y: auto;
9990
+ }
9991
+
9992
+ /* Custom scrollbar for better UX */
9993
+ .full-config-page ::-webkit-scrollbar {
9994
+ width: 8px;
9995
+ }
9996
+
9997
+ .full-config-page ::-webkit-scrollbar-track {
9998
+ background: #f1f1f1;
9999
+ border-radius: 4px;
10000
+ }
10001
+
10002
+ .full-config-page ::-webkit-scrollbar-thumb {
10003
+ background: #c1c1c1;
10004
+ border-radius: 4px;
10005
+ }
10006
+
10007
+ .full-config-page ::-webkit-scrollbar-thumb:hover {
10008
+ background: #a8a8a8;
10009
+ }
9643
10010
  /* Backdrop below the toast container, above the app content */
9644
10011
  #ui-toast-backdrop {
9645
10012
  position: fixed;