@pactor-app/ui 1.1.0 → 1.3.0
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/README.md +27 -31
- package/dist/{chunk-BZSRLTQQ.js → chunk-7KC6DMKH.js} +8 -8
- package/dist/chunk-EVGIS2ZE.js +614 -0
- package/dist/{chunk-F3H23KYG.js → chunk-F42SGQNW.js} +31 -93
- package/dist/chunk-L4Z7MNYY.js +1197 -0
- package/dist/{chunk-6B5ZX7L3.js → chunk-P54Y23AP.js} +201 -597
- package/dist/{chunk-GV5R6TUT.js → chunk-TDVG7MZ5.js} +180 -49
- package/dist/{chunk-BVHAP22U.js → chunk-UKA7C3JP.js} +213 -486
- package/dist/chunk-WKJUCGV4.js +78 -0
- package/dist/components/index.cjs +1023 -695
- package/dist/components/index.d.cts +37 -19
- package/dist/components/index.d.ts +37 -19
- package/dist/components/index.js +20 -18
- package/dist/index.cjs +1359 -913
- package/dist/index.d.cts +3 -36
- package/dist/index.d.ts +3 -36
- package/dist/index.js +40 -47
- package/dist/interaction/index.cjs +17 -13
- package/dist/interaction/index.d.cts +13 -16
- package/dist/interaction/index.d.ts +13 -16
- package/dist/interaction/index.js +7 -7
- package/dist/layout/index.cjs +1084 -63
- package/dist/layout/index.d.cts +98 -20
- package/dist/layout/index.d.ts +98 -20
- package/dist/layout/index.js +18 -16
- package/dist/ui/index.cjs +1688 -533
- package/dist/ui/index.d.cts +130 -16
- package/dist/ui/index.d.ts +130 -16
- package/dist/ui/index.js +485 -26
- package/package.json +6 -5
- package/styles.css +936 -107
- package/dist/chunk-6JNCDPGS.js +0 -257
- package/dist/chunk-GL7IO22L.js +0 -225
- package/dist/chunk-RQHJBTEU.js +0 -10
package/styles.css
CHANGED
|
@@ -8,11 +8,6 @@
|
|
|
8
8
|
"Segoe UI Symbol", "Noto Color Emoji";
|
|
9
9
|
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
|
|
10
10
|
"Courier New", monospace;
|
|
11
|
-
--color-amber-400: oklch(82.8% 0.189 84.429);
|
|
12
|
-
--color-amber-600: oklch(66.6% 0.179 58.318);
|
|
13
|
-
--color-green-400: oklch(79.2% 0.209 151.711);
|
|
14
|
-
--color-green-600: oklch(62.7% 0.194 149.214);
|
|
15
|
-
--color-black: #000;
|
|
16
11
|
--spacing: 0.25rem;
|
|
17
12
|
--container-sm: 24rem;
|
|
18
13
|
--container-lg: 32rem;
|
|
@@ -38,6 +33,7 @@
|
|
|
38
33
|
--font-weight-bold: 700;
|
|
39
34
|
--font-weight-extrabold: 800;
|
|
40
35
|
--tracking-tight: -0.025em;
|
|
36
|
+
--leading-tight: 1.25;
|
|
41
37
|
--leading-relaxed: 1.625;
|
|
42
38
|
--radius-xs: 0.125rem;
|
|
43
39
|
--ease-out: cubic-bezier(0, 0, 0.2, 1);
|
|
@@ -252,9 +248,15 @@
|
|
|
252
248
|
.top-0 {
|
|
253
249
|
top: 0px;
|
|
254
250
|
}
|
|
251
|
+
.top-1\.5 {
|
|
252
|
+
top: calc(var(--spacing) * 1.5);
|
|
253
|
+
}
|
|
255
254
|
.top-1\/2 {
|
|
256
255
|
top: calc(1 / 2 * 100%);
|
|
257
256
|
}
|
|
257
|
+
.top-3\.5 {
|
|
258
|
+
top: calc(var(--spacing) * 3.5);
|
|
259
|
+
}
|
|
258
260
|
.top-4 {
|
|
259
261
|
top: calc(var(--spacing) * 4);
|
|
260
262
|
}
|
|
@@ -273,9 +275,15 @@
|
|
|
273
275
|
.right-0 {
|
|
274
276
|
right: 0px;
|
|
275
277
|
}
|
|
278
|
+
.right-1 {
|
|
279
|
+
right: var(--spacing);
|
|
280
|
+
}
|
|
276
281
|
.right-2 {
|
|
277
282
|
right: calc(var(--spacing) * 2);
|
|
278
283
|
}
|
|
284
|
+
.right-3 {
|
|
285
|
+
right: calc(var(--spacing) * 3);
|
|
286
|
+
}
|
|
279
287
|
.right-4 {
|
|
280
288
|
right: calc(var(--spacing) * 4);
|
|
281
289
|
}
|
|
@@ -294,6 +302,9 @@
|
|
|
294
302
|
.left-1\/2 {
|
|
295
303
|
left: calc(1 / 2 * 100%);
|
|
296
304
|
}
|
|
305
|
+
.left-3 {
|
|
306
|
+
left: calc(var(--spacing) * 3);
|
|
307
|
+
}
|
|
297
308
|
.left-\[50\%\] {
|
|
298
309
|
left: 50%;
|
|
299
310
|
}
|
|
@@ -306,9 +317,6 @@
|
|
|
306
317
|
.z-20 {
|
|
307
318
|
z-index: 20;
|
|
308
319
|
}
|
|
309
|
-
.z-40 {
|
|
310
|
-
z-index: 40;
|
|
311
|
-
}
|
|
312
320
|
.z-50 {
|
|
313
321
|
z-index: 50;
|
|
314
322
|
}
|
|
@@ -351,6 +359,12 @@
|
|
|
351
359
|
.-mx-1 {
|
|
352
360
|
margin-inline: calc(var(--spacing) * -1);
|
|
353
361
|
}
|
|
362
|
+
.mx-2 {
|
|
363
|
+
margin-inline: calc(var(--spacing) * 2);
|
|
364
|
+
}
|
|
365
|
+
.mx-3\.5 {
|
|
366
|
+
margin-inline: calc(var(--spacing) * 3.5);
|
|
367
|
+
}
|
|
354
368
|
.mx-auto {
|
|
355
369
|
margin-inline: auto;
|
|
356
370
|
}
|
|
@@ -363,6 +377,9 @@
|
|
|
363
377
|
.-mt-4 {
|
|
364
378
|
margin-top: calc(var(--spacing) * -4);
|
|
365
379
|
}
|
|
380
|
+
.mt-0\.5 {
|
|
381
|
+
margin-top: calc(var(--spacing) * 0.5);
|
|
382
|
+
}
|
|
366
383
|
.mt-1\.5 {
|
|
367
384
|
margin-top: calc(var(--spacing) * 1.5);
|
|
368
385
|
}
|
|
@@ -393,12 +410,21 @@
|
|
|
393
410
|
.ml-1 {
|
|
394
411
|
margin-left: var(--spacing);
|
|
395
412
|
}
|
|
413
|
+
.ml-4 {
|
|
414
|
+
margin-left: calc(var(--spacing) * 4);
|
|
415
|
+
}
|
|
396
416
|
.ml-6 {
|
|
397
417
|
margin-left: calc(var(--spacing) * 6);
|
|
398
418
|
}
|
|
399
419
|
.ml-auto {
|
|
400
420
|
margin-left: auto;
|
|
401
421
|
}
|
|
422
|
+
.scrollbar-none {
|
|
423
|
+
scrollbar-width: none;
|
|
424
|
+
&::-webkit-scrollbar {
|
|
425
|
+
display: none;
|
|
426
|
+
}
|
|
427
|
+
}
|
|
402
428
|
.line-clamp-1 {
|
|
403
429
|
overflow: hidden;
|
|
404
430
|
display: -webkit-box;
|
|
@@ -510,6 +536,9 @@
|
|
|
510
536
|
.h-5 {
|
|
511
537
|
height: calc(var(--spacing) * 5);
|
|
512
538
|
}
|
|
539
|
+
.h-6 {
|
|
540
|
+
height: calc(var(--spacing) * 6);
|
|
541
|
+
}
|
|
513
542
|
.h-7 {
|
|
514
543
|
height: calc(var(--spacing) * 7);
|
|
515
544
|
}
|
|
@@ -522,6 +551,9 @@
|
|
|
522
551
|
.h-10 {
|
|
523
552
|
height: calc(var(--spacing) * 10);
|
|
524
553
|
}
|
|
554
|
+
.h-12 {
|
|
555
|
+
height: calc(var(--spacing) * 12);
|
|
556
|
+
}
|
|
525
557
|
.h-14 {
|
|
526
558
|
height: calc(var(--spacing) * 14);
|
|
527
559
|
}
|
|
@@ -552,6 +584,9 @@
|
|
|
552
584
|
.h-screen {
|
|
553
585
|
height: 100vh;
|
|
554
586
|
}
|
|
587
|
+
.h-svh {
|
|
588
|
+
height: 100svh;
|
|
589
|
+
}
|
|
555
590
|
.max-h-\(--available-height\) {
|
|
556
591
|
max-height: var(--available-height);
|
|
557
592
|
}
|
|
@@ -579,6 +614,12 @@
|
|
|
579
614
|
.min-h-screen {
|
|
580
615
|
min-height: 100vh;
|
|
581
616
|
}
|
|
617
|
+
.min-h-svh {
|
|
618
|
+
min-height: 100svh;
|
|
619
|
+
}
|
|
620
|
+
.w-\(--sidebar-width\) {
|
|
621
|
+
width: var(--sidebar-width);
|
|
622
|
+
}
|
|
582
623
|
.w-2 {
|
|
583
624
|
width: calc(var(--spacing) * 2);
|
|
584
625
|
}
|
|
@@ -588,27 +629,36 @@
|
|
|
588
629
|
.w-3\/4 {
|
|
589
630
|
width: calc(3 / 4 * 100%);
|
|
590
631
|
}
|
|
632
|
+
.w-4 {
|
|
633
|
+
width: calc(var(--spacing) * 4);
|
|
634
|
+
}
|
|
635
|
+
.w-5 {
|
|
636
|
+
width: calc(var(--spacing) * 5);
|
|
637
|
+
}
|
|
591
638
|
.w-8 {
|
|
592
639
|
width: calc(var(--spacing) * 8);
|
|
593
640
|
}
|
|
594
641
|
.w-9 {
|
|
595
642
|
width: calc(var(--spacing) * 9);
|
|
596
643
|
}
|
|
644
|
+
.w-10 {
|
|
645
|
+
width: calc(var(--spacing) * 10);
|
|
646
|
+
}
|
|
597
647
|
.w-12 {
|
|
598
648
|
width: calc(var(--spacing) * 12);
|
|
599
649
|
}
|
|
600
650
|
.w-16 {
|
|
601
651
|
width: calc(var(--spacing) * 16);
|
|
602
652
|
}
|
|
653
|
+
.w-24 {
|
|
654
|
+
width: calc(var(--spacing) * 24);
|
|
655
|
+
}
|
|
603
656
|
.w-40 {
|
|
604
657
|
width: calc(var(--spacing) * 40);
|
|
605
658
|
}
|
|
606
659
|
.w-52 {
|
|
607
660
|
width: calc(var(--spacing) * 52);
|
|
608
661
|
}
|
|
609
|
-
.w-60 {
|
|
610
|
-
width: calc(var(--spacing) * 60);
|
|
611
|
-
}
|
|
612
662
|
.w-64 {
|
|
613
663
|
width: calc(var(--spacing) * 64);
|
|
614
664
|
}
|
|
@@ -624,6 +674,9 @@
|
|
|
624
674
|
.w-\[100px\] {
|
|
625
675
|
width: 100px;
|
|
626
676
|
}
|
|
677
|
+
.w-auto {
|
|
678
|
+
width: auto;
|
|
679
|
+
}
|
|
627
680
|
.w-fit {
|
|
628
681
|
width: fit-content;
|
|
629
682
|
}
|
|
@@ -636,9 +689,18 @@
|
|
|
636
689
|
.w-px {
|
|
637
690
|
width: 1px;
|
|
638
691
|
}
|
|
692
|
+
.max-w-\(--skeleton-width\) {
|
|
693
|
+
max-width: var(--skeleton-width);
|
|
694
|
+
}
|
|
695
|
+
.max-w-\[80\%\] {
|
|
696
|
+
max-width: 80%;
|
|
697
|
+
}
|
|
639
698
|
.max-w-\[calc\(100\%-2rem\)\] {
|
|
640
699
|
max-width: calc(100% - 2rem);
|
|
641
700
|
}
|
|
701
|
+
.max-w-full {
|
|
702
|
+
max-width: 100%;
|
|
703
|
+
}
|
|
642
704
|
.max-w-max {
|
|
643
705
|
max-width: max-content;
|
|
644
706
|
}
|
|
@@ -666,6 +728,9 @@
|
|
|
666
728
|
.min-w-36 {
|
|
667
729
|
min-width: calc(var(--spacing) * 36);
|
|
668
730
|
}
|
|
731
|
+
.min-w-40 {
|
|
732
|
+
min-width: calc(var(--spacing) * 40);
|
|
733
|
+
}
|
|
669
734
|
.min-w-\[8rem\] {
|
|
670
735
|
min-width: 8rem;
|
|
671
736
|
}
|
|
@@ -697,18 +762,34 @@
|
|
|
697
762
|
--tw-translate-x: calc(calc(1 / 2 * 100%) * -1);
|
|
698
763
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
699
764
|
}
|
|
765
|
+
.-translate-x-px {
|
|
766
|
+
--tw-translate-x: -1px;
|
|
767
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
768
|
+
}
|
|
700
769
|
.translate-x-\[-50\%\] {
|
|
701
770
|
--tw-translate-x: -50%;
|
|
702
771
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
703
772
|
}
|
|
773
|
+
.translate-x-px {
|
|
774
|
+
--tw-translate-x: 1px;
|
|
775
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
776
|
+
}
|
|
704
777
|
.-translate-y-1\/2 {
|
|
705
778
|
--tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
|
|
706
779
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
707
780
|
}
|
|
781
|
+
.-translate-y-3\/4 {
|
|
782
|
+
--tw-translate-y: calc(calc(3 / 4 * 100%) * -1);
|
|
783
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
784
|
+
}
|
|
708
785
|
.translate-y-0\.5 {
|
|
709
786
|
--tw-translate-y: calc(var(--spacing) * 0.5);
|
|
710
787
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
711
788
|
}
|
|
789
|
+
.translate-y-3\/4 {
|
|
790
|
+
--tw-translate-y: calc(3 / 4 * 100%);
|
|
791
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
792
|
+
}
|
|
712
793
|
.translate-y-\[-50\%\] {
|
|
713
794
|
--tw-translate-y: -50%;
|
|
714
795
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -752,12 +833,24 @@
|
|
|
752
833
|
.resize-none {
|
|
753
834
|
resize: none;
|
|
754
835
|
}
|
|
836
|
+
.snap-x {
|
|
837
|
+
scroll-snap-type: x var(--tw-scroll-snap-strictness);
|
|
838
|
+
}
|
|
839
|
+
.snap-mandatory {
|
|
840
|
+
--tw-scroll-snap-strictness: mandatory;
|
|
841
|
+
}
|
|
755
842
|
.scroll-m-20 {
|
|
756
843
|
scroll-margin: calc(var(--spacing) * 20);
|
|
757
844
|
}
|
|
845
|
+
.scroll-px-1 {
|
|
846
|
+
scroll-padding-inline: var(--spacing);
|
|
847
|
+
}
|
|
758
848
|
.scroll-py-1 {
|
|
759
849
|
scroll-padding-block: var(--spacing);
|
|
760
850
|
}
|
|
851
|
+
.scrollbar-none {
|
|
852
|
+
scrollbar-width: none;
|
|
853
|
+
}
|
|
761
854
|
.list-disc {
|
|
762
855
|
list-style-type: disc;
|
|
763
856
|
}
|
|
@@ -824,6 +917,21 @@
|
|
|
824
917
|
.justify-items-start {
|
|
825
918
|
justify-items: start;
|
|
826
919
|
}
|
|
920
|
+
.gap-\(--flex-gap\) {
|
|
921
|
+
gap: var(--flex-gap);
|
|
922
|
+
}
|
|
923
|
+
.gap-\(--flex-gap-lg\) {
|
|
924
|
+
gap: var(--flex-gap-lg);
|
|
925
|
+
}
|
|
926
|
+
.gap-\(--flex-gap-md\) {
|
|
927
|
+
gap: var(--flex-gap-md);
|
|
928
|
+
}
|
|
929
|
+
.gap-\(--flex-gap-sm\) {
|
|
930
|
+
gap: var(--flex-gap-sm);
|
|
931
|
+
}
|
|
932
|
+
.gap-\(--grid-gap\) {
|
|
933
|
+
gap: var(--grid-gap);
|
|
934
|
+
}
|
|
827
935
|
.gap-0\.5 {
|
|
828
936
|
gap: calc(var(--spacing) * 0.5);
|
|
829
937
|
}
|
|
@@ -836,6 +944,9 @@
|
|
|
836
944
|
.gap-2 {
|
|
837
945
|
gap: calc(var(--spacing) * 2);
|
|
838
946
|
}
|
|
947
|
+
.gap-2\.5 {
|
|
948
|
+
gap: calc(var(--spacing) * 2.5);
|
|
949
|
+
}
|
|
839
950
|
.gap-3 {
|
|
840
951
|
gap: calc(var(--spacing) * 3);
|
|
841
952
|
}
|
|
@@ -853,6 +964,9 @@
|
|
|
853
964
|
.gap-y-0\.5 {
|
|
854
965
|
row-gap: calc(var(--spacing) * 0.5);
|
|
855
966
|
}
|
|
967
|
+
.self-end {
|
|
968
|
+
align-self: flex-end;
|
|
969
|
+
}
|
|
856
970
|
.self-start {
|
|
857
971
|
align-self: flex-start;
|
|
858
972
|
}
|
|
@@ -879,9 +993,15 @@
|
|
|
879
993
|
.overflow-y-auto {
|
|
880
994
|
overflow-y: auto;
|
|
881
995
|
}
|
|
996
|
+
.overscroll-x-contain {
|
|
997
|
+
overscroll-behavior-x: contain;
|
|
998
|
+
}
|
|
882
999
|
.rounded {
|
|
883
1000
|
border-radius: 0.25rem;
|
|
884
1001
|
}
|
|
1002
|
+
.rounded-\(--pagination-active-radius\) {
|
|
1003
|
+
border-radius: var(--pagination-active-radius);
|
|
1004
|
+
}
|
|
885
1005
|
.rounded-\[2px\] {
|
|
886
1006
|
border-radius: 2px;
|
|
887
1007
|
}
|
|
@@ -957,6 +1077,16 @@
|
|
|
957
1077
|
--tw-border-style: dashed;
|
|
958
1078
|
border-style: dashed;
|
|
959
1079
|
}
|
|
1080
|
+
.border-none {
|
|
1081
|
+
--tw-border-style: none;
|
|
1082
|
+
border-style: none;
|
|
1083
|
+
}
|
|
1084
|
+
.border-\(color\:--pagination-active-border\) {
|
|
1085
|
+
border-color: var(--pagination-active-border);
|
|
1086
|
+
}
|
|
1087
|
+
.border-\(color\:--radio-border\) {
|
|
1088
|
+
border-color: var(--radio-border);
|
|
1089
|
+
}
|
|
960
1090
|
.border-border {
|
|
961
1091
|
border-color: var(--border);
|
|
962
1092
|
}
|
|
@@ -1014,29 +1144,38 @@
|
|
|
1014
1144
|
.border-l-warning {
|
|
1015
1145
|
border-left-color: var(--warning);
|
|
1016
1146
|
}
|
|
1017
|
-
.bg-
|
|
1018
|
-
background-color: var(--
|
|
1147
|
+
.bg-\(--menu-active-background\) {
|
|
1148
|
+
background-color: var(--menu-active-background);
|
|
1019
1149
|
}
|
|
1020
|
-
.bg-background {
|
|
1021
|
-
background-color: var(--background);
|
|
1150
|
+
.bg-\(--overlay-background\) {
|
|
1151
|
+
background-color: var(--overlay-background);
|
|
1022
1152
|
}
|
|
1023
|
-
.bg-background
|
|
1024
|
-
background-color: var(--background);
|
|
1025
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
1026
|
-
background-color: color-mix(in oklab, var(--background) 60%, transparent);
|
|
1027
|
-
}
|
|
1153
|
+
.bg-\(--pagination-active-background\) {
|
|
1154
|
+
background-color: var(--pagination-active-background);
|
|
1028
1155
|
}
|
|
1029
|
-
.bg-
|
|
1030
|
-
background-color:
|
|
1031
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
1032
|
-
background-color: color-mix(in oklab, var(--color-black) 40%, transparent);
|
|
1033
|
-
}
|
|
1156
|
+
.bg-\(--progress-indicator\) {
|
|
1157
|
+
background-color: var(--progress-indicator);
|
|
1034
1158
|
}
|
|
1035
|
-
.bg-
|
|
1036
|
-
background-color:
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1159
|
+
.bg-\(--progress-track\) {
|
|
1160
|
+
background-color: var(--progress-track);
|
|
1161
|
+
}
|
|
1162
|
+
.bg-\(--radio-checked\) {
|
|
1163
|
+
background-color: var(--radio-checked);
|
|
1164
|
+
}
|
|
1165
|
+
.bg-\(--slider-range\) {
|
|
1166
|
+
background-color: var(--slider-range);
|
|
1167
|
+
}
|
|
1168
|
+
.bg-\(--slider-thumb\) {
|
|
1169
|
+
background-color: var(--slider-thumb);
|
|
1170
|
+
}
|
|
1171
|
+
.bg-\(--slider-track\) {
|
|
1172
|
+
background-color: var(--slider-track);
|
|
1173
|
+
}
|
|
1174
|
+
.bg-\(--switch-thumb\) {
|
|
1175
|
+
background-color: var(--switch-thumb);
|
|
1176
|
+
}
|
|
1177
|
+
.bg-background {
|
|
1178
|
+
background-color: var(--background);
|
|
1040
1179
|
}
|
|
1041
1180
|
.bg-border {
|
|
1042
1181
|
background-color: var(--border);
|
|
@@ -1044,6 +1183,12 @@
|
|
|
1044
1183
|
.bg-card {
|
|
1045
1184
|
background-color: var(--card);
|
|
1046
1185
|
}
|
|
1186
|
+
.bg-card\/60 {
|
|
1187
|
+
background-color: var(--card);
|
|
1188
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1189
|
+
background-color: color-mix(in oklab, var(--card) 60%, transparent);
|
|
1190
|
+
}
|
|
1191
|
+
}
|
|
1047
1192
|
.bg-destructive {
|
|
1048
1193
|
background-color: var(--destructive);
|
|
1049
1194
|
}
|
|
@@ -1077,9 +1222,15 @@
|
|
|
1077
1222
|
.bg-sidebar {
|
|
1078
1223
|
background-color: var(--sidebar);
|
|
1079
1224
|
}
|
|
1225
|
+
.bg-sidebar-border {
|
|
1226
|
+
background-color: var(--sidebar-border);
|
|
1227
|
+
}
|
|
1080
1228
|
.bg-transparent {
|
|
1081
1229
|
background-color: transparent;
|
|
1082
1230
|
}
|
|
1231
|
+
.scroll-fade-x {
|
|
1232
|
+
mask-image: linear-gradient( to right, transparent, black 8px, black calc(100% - 8px), transparent );
|
|
1233
|
+
}
|
|
1083
1234
|
.fill-primary {
|
|
1084
1235
|
fill: var(--primary);
|
|
1085
1236
|
}
|
|
@@ -1270,6 +1421,14 @@
|
|
|
1270
1421
|
--tw-leading: 1;
|
|
1271
1422
|
line-height: 1;
|
|
1272
1423
|
}
|
|
1424
|
+
.leading-relaxed {
|
|
1425
|
+
--tw-leading: var(--leading-relaxed);
|
|
1426
|
+
line-height: var(--leading-relaxed);
|
|
1427
|
+
}
|
|
1428
|
+
.leading-tight {
|
|
1429
|
+
--tw-leading: var(--leading-tight);
|
|
1430
|
+
line-height: var(--leading-tight);
|
|
1431
|
+
}
|
|
1273
1432
|
.font-bold {
|
|
1274
1433
|
--tw-font-weight: var(--font-weight-bold);
|
|
1275
1434
|
font-weight: var(--font-weight-bold);
|
|
@@ -1300,14 +1459,14 @@
|
|
|
1300
1459
|
.break-words {
|
|
1301
1460
|
overflow-wrap: break-word;
|
|
1302
1461
|
}
|
|
1462
|
+
.wrap-break-word {
|
|
1463
|
+
overflow-wrap: break-word;
|
|
1464
|
+
}
|
|
1303
1465
|
.whitespace-nowrap {
|
|
1304
1466
|
white-space: nowrap;
|
|
1305
1467
|
}
|
|
1306
|
-
.text-
|
|
1307
|
-
color: var(--
|
|
1308
|
-
}
|
|
1309
|
-
.text-amber-600 {
|
|
1310
|
-
color: var(--color-amber-600);
|
|
1468
|
+
.text-\(--menu-active-foreground\) {
|
|
1469
|
+
color: var(--menu-active-foreground);
|
|
1311
1470
|
}
|
|
1312
1471
|
.text-card-foreground {
|
|
1313
1472
|
color: var(--card-foreground);
|
|
@@ -1324,9 +1483,6 @@
|
|
|
1324
1483
|
.text-foreground {
|
|
1325
1484
|
color: var(--foreground);
|
|
1326
1485
|
}
|
|
1327
|
-
.text-green-600 {
|
|
1328
|
-
color: var(--color-green-600);
|
|
1329
|
-
}
|
|
1330
1486
|
.text-info {
|
|
1331
1487
|
color: var(--info);
|
|
1332
1488
|
}
|
|
@@ -1385,9 +1541,20 @@
|
|
|
1385
1541
|
.opacity-50 {
|
|
1386
1542
|
opacity: 50%;
|
|
1387
1543
|
}
|
|
1544
|
+
.opacity-60 {
|
|
1545
|
+
opacity: 60%;
|
|
1546
|
+
}
|
|
1388
1547
|
.opacity-70 {
|
|
1389
1548
|
opacity: 70%;
|
|
1390
1549
|
}
|
|
1550
|
+
.shadow-\(--card-shadow\) {
|
|
1551
|
+
--tw-shadow: var(--card-shadow);
|
|
1552
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1553
|
+
}
|
|
1554
|
+
.shadow-\[0_0_0_1px_var\(--sidebar-border\)\] {
|
|
1555
|
+
--tw-shadow: 0 0 0 1px var(--tw-shadow-color, var(--sidebar-border));
|
|
1556
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1557
|
+
}
|
|
1391
1558
|
.shadow-lg {
|
|
1392
1559
|
--tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
1393
1560
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -1408,6 +1575,22 @@
|
|
|
1408
1575
|
--tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
|
|
1409
1576
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1410
1577
|
}
|
|
1578
|
+
.ring-3 {
|
|
1579
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1580
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1581
|
+
}
|
|
1582
|
+
.shadow-\(color\:--shadow-color\) {
|
|
1583
|
+
--tw-shadow-color: var(--shadow-color);
|
|
1584
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1585
|
+
--tw-shadow-color: color-mix(in oklab, var(--shadow-color) var(--tw-shadow-alpha), transparent);
|
|
1586
|
+
}
|
|
1587
|
+
}
|
|
1588
|
+
.ring-card {
|
|
1589
|
+
--tw-ring-color: var(--card);
|
|
1590
|
+
}
|
|
1591
|
+
.ring-sidebar-ring {
|
|
1592
|
+
--tw-ring-color: var(--sidebar-ring);
|
|
1593
|
+
}
|
|
1411
1594
|
.outline-hidden {
|
|
1412
1595
|
--tw-outline-style: none;
|
|
1413
1596
|
outline-style: none;
|
|
@@ -1433,13 +1616,23 @@
|
|
|
1433
1616
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1434
1617
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1435
1618
|
}
|
|
1619
|
+
.transition-\[left\,right\,width\] {
|
|
1620
|
+
transition-property: left,right,width;
|
|
1621
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1622
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1623
|
+
}
|
|
1624
|
+
.transition-\[margin\,opacity\] {
|
|
1625
|
+
transition-property: margin,opacity;
|
|
1626
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1627
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1628
|
+
}
|
|
1436
1629
|
.transition-\[opacity\,transform\] {
|
|
1437
1630
|
transition-property: opacity,transform;
|
|
1438
1631
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1439
1632
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1440
1633
|
}
|
|
1441
|
-
.transition-\[width\,
|
|
1442
|
-
transition-property: width,
|
|
1634
|
+
.transition-\[width\,height\,padding\] {
|
|
1635
|
+
transition-property: width,height,padding;
|
|
1443
1636
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1444
1637
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1445
1638
|
}
|
|
@@ -1489,6 +1682,10 @@
|
|
|
1489
1682
|
--tw-ease: var(--ease-in-out);
|
|
1490
1683
|
transition-timing-function: var(--ease-in-out);
|
|
1491
1684
|
}
|
|
1685
|
+
.ease-linear {
|
|
1686
|
+
--tw-ease: linear;
|
|
1687
|
+
transition-timing-function: linear;
|
|
1688
|
+
}
|
|
1492
1689
|
.ease-out {
|
|
1493
1690
|
--tw-ease: var(--ease-out);
|
|
1494
1691
|
transition-timing-function: var(--ease-out);
|
|
@@ -1501,24 +1698,201 @@
|
|
|
1501
1698
|
-webkit-user-select: none;
|
|
1502
1699
|
user-select: none;
|
|
1503
1700
|
}
|
|
1701
|
+
.group-focus-within\/menu-item\:opacity-100:is(:where(.group\/menu-item):focus-within *) {
|
|
1702
|
+
opacity: 100%;
|
|
1703
|
+
}
|
|
1704
|
+
@media (hover: hover) {
|
|
1705
|
+
.group-hover\/menu-item\:opacity-100:is(:where(.group\/menu-item):hover *) {
|
|
1706
|
+
opacity: 100%;
|
|
1707
|
+
}
|
|
1708
|
+
}
|
|
1709
|
+
.group-has-data-\[sidebar\=menu-action\]\/menu-item\:pr-8:is(:where(.group\/menu-item):has([data-sidebar="menu-action"]) *) {
|
|
1710
|
+
padding-right: calc(var(--spacing) * 8);
|
|
1711
|
+
}
|
|
1712
|
+
.group-has-data-\[slot\=message-footer\]\/message\:-translate-y-8:is(:where(.group\/message):has([data-slot="message-footer"]) *) {
|
|
1713
|
+
--tw-translate-y: calc(var(--spacing) * -8);
|
|
1714
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1715
|
+
}
|
|
1716
|
+
.group-has-data-\[variant\=ghost\]\/message\:px-0:is(:where(.group\/message):has([data-variant="ghost"]) *) {
|
|
1717
|
+
padding-inline: 0px;
|
|
1718
|
+
}
|
|
1719
|
+
.group-data-\[align\=end\]\/bubble\:self-end:is(:where(.group\/bubble)[data-align="end"] *) {
|
|
1720
|
+
align-self: flex-end;
|
|
1721
|
+
}
|
|
1722
|
+
.group-data-\[align\=end\]\/message\:justify-end:is(:where(.group\/message)[data-align="end"] *) {
|
|
1723
|
+
justify-content: flex-end;
|
|
1724
|
+
}
|
|
1725
|
+
.group-data-\[align\=end\]\/message\:self-end:is(:where(.group\/message)[data-align="end"] *) {
|
|
1726
|
+
align-self: flex-end;
|
|
1727
|
+
}
|
|
1728
|
+
.group-data-\[collapsible\=icon\]\:-mt-8:is(:where(.group)[data-collapsible="icon"] *) {
|
|
1729
|
+
margin-top: calc(var(--spacing) * -8);
|
|
1730
|
+
}
|
|
1731
|
+
.group-data-\[collapsible\=icon\]\:hidden:is(:where(.group)[data-collapsible="icon"] *) {
|
|
1732
|
+
display: none;
|
|
1733
|
+
}
|
|
1734
|
+
.group-data-\[collapsible\=icon\]\:size-8\!:is(:where(.group)[data-collapsible="icon"] *) {
|
|
1735
|
+
width: calc(var(--spacing) * 8) !important;
|
|
1736
|
+
height: calc(var(--spacing) * 8) !important;
|
|
1737
|
+
}
|
|
1738
|
+
.group-data-\[collapsible\=icon\]\:w-\(--sidebar-width-icon\):is(:where(.group)[data-collapsible="icon"] *) {
|
|
1739
|
+
width: var(--sidebar-width-icon);
|
|
1740
|
+
}
|
|
1741
|
+
.group-data-\[collapsible\=icon\]\:w-\[calc\(var\(--sidebar-width-icon\)\+\(--spacing\(4\)\)\)\]:is(:where(.group)[data-collapsible="icon"] *) {
|
|
1742
|
+
width: calc(var(--sidebar-width-icon) + (calc(var(--spacing) * 4)));
|
|
1743
|
+
}
|
|
1744
|
+
.group-data-\[collapsible\=icon\]\:w-\[calc\(var\(--sidebar-width-icon\)\+\(--spacing\(4\)\)\+2px\)\]:is(:where(.group)[data-collapsible="icon"] *) {
|
|
1745
|
+
width: calc(var(--sidebar-width-icon) + (calc(var(--spacing) * 4)) + 2px);
|
|
1746
|
+
}
|
|
1747
|
+
.group-data-\[collapsible\=icon\]\:overflow-hidden:is(:where(.group)[data-collapsible="icon"] *) {
|
|
1748
|
+
overflow: hidden;
|
|
1749
|
+
}
|
|
1750
|
+
.group-data-\[collapsible\=icon\]\:p-0\!:is(:where(.group)[data-collapsible="icon"] *) {
|
|
1751
|
+
padding: 0px !important;
|
|
1752
|
+
}
|
|
1753
|
+
.group-data-\[collapsible\=icon\]\:p-2\!:is(:where(.group)[data-collapsible="icon"] *) {
|
|
1754
|
+
padding: calc(var(--spacing) * 2) !important;
|
|
1755
|
+
}
|
|
1756
|
+
.group-data-\[collapsible\=icon\]\:opacity-0:is(:where(.group)[data-collapsible="icon"] *) {
|
|
1757
|
+
opacity: 0%;
|
|
1758
|
+
}
|
|
1759
|
+
.group-data-\[collapsible\=offcanvas\]\:right-\[calc\(var\(--sidebar-width\)\*-1\)\]:is(:where(.group)[data-collapsible="offcanvas"] *) {
|
|
1760
|
+
right: calc(var(--sidebar-width) * -1);
|
|
1761
|
+
}
|
|
1762
|
+
.group-data-\[collapsible\=offcanvas\]\:left-\[calc\(var\(--sidebar-width\)\*-1\)\]:is(:where(.group)[data-collapsible="offcanvas"] *) {
|
|
1763
|
+
left: calc(var(--sidebar-width) * -1);
|
|
1764
|
+
}
|
|
1765
|
+
.group-data-\[collapsible\=offcanvas\]\:w-0:is(:where(.group)[data-collapsible="offcanvas"] *) {
|
|
1766
|
+
width: 0px;
|
|
1767
|
+
}
|
|
1768
|
+
.group-data-\[collapsible\=offcanvas\]\:translate-x-0:is(:where(.group)[data-collapsible="offcanvas"] *) {
|
|
1769
|
+
--tw-translate-x: 0px;
|
|
1770
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1771
|
+
}
|
|
1504
1772
|
.group-data-\[disabled\=true\]\:pointer-events-none:is(:where(.group)[data-disabled="true"] *) {
|
|
1505
1773
|
pointer-events: none;
|
|
1506
1774
|
}
|
|
1507
1775
|
.group-data-\[disabled\=true\]\:opacity-50:is(:where(.group)[data-disabled="true"] *) {
|
|
1508
1776
|
opacity: 50%;
|
|
1509
1777
|
}
|
|
1778
|
+
.group-data-\[orientation\=vertical\]\/attachment\:absolute:is(:where(.group\/attachment)[data-orientation="vertical"] *) {
|
|
1779
|
+
position: absolute;
|
|
1780
|
+
}
|
|
1781
|
+
.group-data-\[orientation\=vertical\]\/attachment\:top-3:is(:where(.group\/attachment)[data-orientation="vertical"] *) {
|
|
1782
|
+
top: calc(var(--spacing) * 3);
|
|
1783
|
+
}
|
|
1784
|
+
.group-data-\[orientation\=vertical\]\/attachment\:right-3:is(:where(.group\/attachment)[data-orientation="vertical"] *) {
|
|
1785
|
+
right: calc(var(--spacing) * 3);
|
|
1786
|
+
}
|
|
1787
|
+
.group-data-\[orientation\=vertical\]\/attachment\:w-full:is(:where(.group\/attachment)[data-orientation="vertical"] *) {
|
|
1788
|
+
width: 100%;
|
|
1789
|
+
}
|
|
1790
|
+
.group-data-\[orientation\=vertical\]\/attachment\:gap-1:is(:where(.group\/attachment)[data-orientation="vertical"] *) {
|
|
1791
|
+
gap: var(--spacing);
|
|
1792
|
+
}
|
|
1793
|
+
.group-data-\[orientation\=vertical\]\/attachment\:px-1:is(:where(.group\/attachment)[data-orientation="vertical"] *) {
|
|
1794
|
+
padding-inline: var(--spacing);
|
|
1795
|
+
}
|
|
1796
|
+
.group-data-\[side\=left\]\:-right-4:is(:where(.group)[data-side="left"] *) {
|
|
1797
|
+
right: calc(var(--spacing) * -4);
|
|
1798
|
+
}
|
|
1799
|
+
.group-data-\[side\=left\]\:border-r:is(:where(.group)[data-side="left"] *) {
|
|
1800
|
+
border-right-style: var(--tw-border-style);
|
|
1801
|
+
border-right-width: 1px;
|
|
1802
|
+
}
|
|
1803
|
+
.group-data-\[side\=right\]\:left-0:is(:where(.group)[data-side="right"] *) {
|
|
1804
|
+
left: 0px;
|
|
1805
|
+
}
|
|
1806
|
+
.group-data-\[side\=right\]\:rotate-180:is(:where(.group)[data-side="right"] *) {
|
|
1807
|
+
rotate: 180deg;
|
|
1808
|
+
}
|
|
1809
|
+
.group-data-\[side\=right\]\:border-l:is(:where(.group)[data-side="right"] *) {
|
|
1810
|
+
border-left-style: var(--tw-border-style);
|
|
1811
|
+
border-left-width: 1px;
|
|
1812
|
+
}
|
|
1813
|
+
.group-data-\[size\=sm\]\/attachment\:w-8:is(:where(.group\/attachment)[data-size="sm"] *) {
|
|
1814
|
+
width: calc(var(--spacing) * 8);
|
|
1815
|
+
}
|
|
1816
|
+
.group-data-\[size\=xs\]\/attachment\:w-7:is(:where(.group\/attachment)[data-size="xs"] *) {
|
|
1817
|
+
width: calc(var(--spacing) * 7);
|
|
1818
|
+
}
|
|
1819
|
+
.group-data-\[size\=xs\]\/attachment\:rounded-md:is(:where(.group\/attachment)[data-size="xs"] *) {
|
|
1820
|
+
border-radius: calc(var(--radius) * 0.8);
|
|
1821
|
+
}
|
|
1822
|
+
.group-data-\[state\=done\]\/attachment\:opacity-100:is(:where(.group\/attachment)[data-state="done"] *) {
|
|
1823
|
+
opacity: 100%;
|
|
1824
|
+
}
|
|
1825
|
+
.group-data-\[state\=error\]\/attachment\:bg-destructive\/10:is(:where(.group\/attachment)[data-state="error"] *) {
|
|
1826
|
+
background-color: var(--destructive);
|
|
1827
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1828
|
+
background-color: color-mix(in oklab, var(--destructive) 10%, transparent);
|
|
1829
|
+
}
|
|
1830
|
+
}
|
|
1831
|
+
.group-data-\[state\=error\]\/attachment\:text-destructive:is(:where(.group\/attachment)[data-state="error"] *) {
|
|
1832
|
+
color: var(--destructive);
|
|
1833
|
+
}
|
|
1834
|
+
.group-data-\[state\=error\]\/attachment\:text-destructive\/80:is(:where(.group\/attachment)[data-state="error"] *) {
|
|
1835
|
+
color: var(--destructive);
|
|
1836
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1837
|
+
color: color-mix(in oklab, var(--destructive) 80%, transparent);
|
|
1838
|
+
}
|
|
1839
|
+
}
|
|
1840
|
+
.group-data-\[state\=idle\]\/attachment\:opacity-100:is(:where(.group\/attachment)[data-state="idle"] *) {
|
|
1841
|
+
opacity: 100%;
|
|
1842
|
+
}
|
|
1843
|
+
.group-data-\[state\=processing\]\/attachment\:shimmer:is(:where(.group\/attachment)[data-state="processing"] *) {
|
|
1844
|
+
background: linear-gradient( 90deg, transparent 0%, var(--muted) 50%, transparent 100% );
|
|
1845
|
+
background-size: 200% 100%;
|
|
1846
|
+
animation: shimmer 1.5s ease-in-out infinite;
|
|
1847
|
+
}
|
|
1848
|
+
.group-data-\[state\=uploading\]\/attachment\:shimmer:is(:where(.group\/attachment)[data-state="uploading"] *) {
|
|
1849
|
+
background: linear-gradient( 90deg, transparent 0%, var(--muted) 50%, transparent 100% );
|
|
1850
|
+
background-size: 200% 100%;
|
|
1851
|
+
animation: shimmer 1.5s ease-in-out infinite;
|
|
1852
|
+
}
|
|
1853
|
+
.group-data-\[variant\=floating\]\:rounded-lg:is(:where(.group)[data-variant="floating"] *) {
|
|
1854
|
+
border-radius: var(--radius);
|
|
1855
|
+
}
|
|
1856
|
+
.group-data-\[variant\=floating\]\:border:is(:where(.group)[data-variant="floating"] *) {
|
|
1857
|
+
border-style: var(--tw-border-style);
|
|
1858
|
+
border-width: 1px;
|
|
1859
|
+
}
|
|
1860
|
+
.group-data-\[variant\=floating\]\:border-sidebar-border:is(:where(.group)[data-variant="floating"] *) {
|
|
1861
|
+
border-color: var(--sidebar-border);
|
|
1862
|
+
}
|
|
1863
|
+
.group-data-\[variant\=floating\]\:shadow-sm:is(:where(.group)[data-variant="floating"] *) {
|
|
1864
|
+
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
1865
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1866
|
+
}
|
|
1510
1867
|
.group-data-\[vaul-drawer-direction\=bottom\]\/drawer-content\:block:is(:where(.group\/drawer-content)[data-vaul-drawer-direction="bottom"] *) {
|
|
1511
1868
|
display: block;
|
|
1512
1869
|
}
|
|
1513
1870
|
.group-data-open\/navigation-menu-trigger\:rotate-180:is(:where(.group\/navigation-menu-trigger):where([data-open]:not([data-open='false'])) *) {
|
|
1514
1871
|
rotate: 180deg;
|
|
1515
1872
|
}
|
|
1873
|
+
@media (hover: hover) {
|
|
1874
|
+
.peer-hover\/menu-button\:text-sidebar-accent-foreground:is(:where(.peer\/menu-button):hover ~ *) {
|
|
1875
|
+
color: var(--sidebar-accent-foreground);
|
|
1876
|
+
}
|
|
1877
|
+
}
|
|
1516
1878
|
.peer-disabled\:cursor-not-allowed:is(:where(.peer):disabled ~ *) {
|
|
1517
1879
|
cursor: not-allowed;
|
|
1518
1880
|
}
|
|
1519
1881
|
.peer-disabled\:opacity-50:is(:where(.peer):disabled ~ *) {
|
|
1520
1882
|
opacity: 50%;
|
|
1521
1883
|
}
|
|
1884
|
+
.peer-data-\[active\=true\]\/menu-button\:text-sidebar-accent-foreground:is(:where(.peer\/menu-button)[data-active="true"] ~ *) {
|
|
1885
|
+
color: var(--sidebar-accent-foreground);
|
|
1886
|
+
}
|
|
1887
|
+
.peer-data-\[size\=default\]\/menu-button\:top-1\.5:is(:where(.peer\/menu-button)[data-size="default"] ~ *) {
|
|
1888
|
+
top: calc(var(--spacing) * 1.5);
|
|
1889
|
+
}
|
|
1890
|
+
.peer-data-\[size\=lg\]\/menu-button\:top-2\.5:is(:where(.peer\/menu-button)[data-size="lg"] ~ *) {
|
|
1891
|
+
top: calc(var(--spacing) * 2.5);
|
|
1892
|
+
}
|
|
1893
|
+
.peer-data-\[size\=sm\]\/menu-button\:top-1:is(:where(.peer\/menu-button)[data-size="sm"] ~ *) {
|
|
1894
|
+
top: var(--spacing);
|
|
1895
|
+
}
|
|
1522
1896
|
.placeholder\:text-muted-foreground::placeholder {
|
|
1523
1897
|
color: var(--muted-foreground);
|
|
1524
1898
|
}
|
|
@@ -1526,6 +1900,10 @@
|
|
|
1526
1900
|
content: var(--tw-content);
|
|
1527
1901
|
position: absolute;
|
|
1528
1902
|
}
|
|
1903
|
+
.after\:-inset-2::after {
|
|
1904
|
+
content: var(--tw-content);
|
|
1905
|
+
inset: calc(var(--spacing) * -2);
|
|
1906
|
+
}
|
|
1529
1907
|
.after\:inset-y-0::after {
|
|
1530
1908
|
content: var(--tw-content);
|
|
1531
1909
|
inset-block: 0px;
|
|
@@ -1538,11 +1916,19 @@
|
|
|
1538
1916
|
content: var(--tw-content);
|
|
1539
1917
|
width: var(--spacing);
|
|
1540
1918
|
}
|
|
1919
|
+
.after\:w-\[2px\]::after {
|
|
1920
|
+
content: var(--tw-content);
|
|
1921
|
+
width: 2px;
|
|
1922
|
+
}
|
|
1541
1923
|
.after\:-translate-x-1\/2::after {
|
|
1542
1924
|
content: var(--tw-content);
|
|
1543
1925
|
--tw-translate-x: calc(calc(1 / 2 * 100%) * -1);
|
|
1544
1926
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1545
1927
|
}
|
|
1928
|
+
.group-data-\[collapsible\=offcanvas\]\:after\:left-full:is(:where(.group)[data-collapsible="offcanvas"] *)::after {
|
|
1929
|
+
content: var(--tw-content);
|
|
1930
|
+
left: 100%;
|
|
1931
|
+
}
|
|
1546
1932
|
.first\:rounded-l-md:first-child {
|
|
1547
1933
|
border-top-left-radius: calc(var(--radius) * 0.8);
|
|
1548
1934
|
border-bottom-left-radius: calc(var(--radius) * 0.8);
|
|
@@ -1565,6 +1951,10 @@
|
|
|
1565
1951
|
.focus-within\:border-ring:focus-within {
|
|
1566
1952
|
border-color: var(--ring);
|
|
1567
1953
|
}
|
|
1954
|
+
.focus-within\:ring-1:focus-within {
|
|
1955
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1956
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1957
|
+
}
|
|
1568
1958
|
.focus-within\:ring-\[3px\]:focus-within {
|
|
1569
1959
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1570
1960
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -1576,6 +1966,20 @@
|
|
|
1576
1966
|
}
|
|
1577
1967
|
}
|
|
1578
1968
|
@media (hover: hover) {
|
|
1969
|
+
.hover\:bg-\(--calendar-day-hover-background\):hover {
|
|
1970
|
+
background-color: var(--calendar-day-hover-background);
|
|
1971
|
+
}
|
|
1972
|
+
.hover\:bg-\(--menu-hover-background\):hover {
|
|
1973
|
+
background-color: var(--menu-hover-background);
|
|
1974
|
+
}
|
|
1975
|
+
.hover\:bg-\(--menu-hover-background\)\/50:hover {
|
|
1976
|
+
background-color: var(--menu-hover-background);
|
|
1977
|
+
}
|
|
1978
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1979
|
+
.hover\:bg-\(--menu-hover-background\)\/50:hover {
|
|
1980
|
+
background-color: color-mix(in oklab, var(--menu-hover-background) 50%, transparent);
|
|
1981
|
+
}
|
|
1982
|
+
}
|
|
1579
1983
|
.hover\:bg-accent:hover {
|
|
1580
1984
|
background-color: var(--accent);
|
|
1581
1985
|
}
|
|
@@ -1628,6 +2032,12 @@
|
|
|
1628
2032
|
.hover\:bg-transparent:hover {
|
|
1629
2033
|
background-color: transparent;
|
|
1630
2034
|
}
|
|
2035
|
+
.hover\:text-\(--calendar-day-hover-foreground\):hover {
|
|
2036
|
+
color: var(--calendar-day-hover-foreground);
|
|
2037
|
+
}
|
|
2038
|
+
.hover\:text-\(--menu-hover-foreground\):hover {
|
|
2039
|
+
color: var(--menu-hover-foreground);
|
|
2040
|
+
}
|
|
1631
2041
|
.hover\:text-accent-foreground:hover {
|
|
1632
2042
|
color: var(--accent-foreground);
|
|
1633
2043
|
}
|
|
@@ -1652,15 +2062,26 @@
|
|
|
1652
2062
|
.hover\:opacity-100:hover {
|
|
1653
2063
|
opacity: 100%;
|
|
1654
2064
|
}
|
|
2065
|
+
.hover\:shadow-\[0_0_0_1px_var\(--sidebar-accent\)\]:hover {
|
|
2066
|
+
--tw-shadow: 0 0 0 1px var(--tw-shadow-color, var(--sidebar-accent));
|
|
2067
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2068
|
+
}
|
|
2069
|
+
.hover\:group-data-\[collapsible\=offcanvas\]\:bg-sidebar:hover:is(:where(.group)[data-collapsible="offcanvas"] *) {
|
|
2070
|
+
background-color: var(--sidebar);
|
|
2071
|
+
}
|
|
2072
|
+
.hover\:after\:bg-sidebar-border:hover::after {
|
|
2073
|
+
content: var(--tw-content);
|
|
2074
|
+
background-color: var(--sidebar-border);
|
|
2075
|
+
}
|
|
1655
2076
|
}
|
|
1656
2077
|
.focus\:z-10:focus {
|
|
1657
2078
|
z-index: 10;
|
|
1658
2079
|
}
|
|
1659
|
-
.focus\:bg-
|
|
1660
|
-
background-color: var(--
|
|
2080
|
+
.focus\:bg-\(--menu-hover-background\):focus {
|
|
2081
|
+
background-color: var(--menu-hover-background);
|
|
1661
2082
|
}
|
|
1662
|
-
.focus\:text-
|
|
1663
|
-
color: var(--
|
|
2083
|
+
.focus\:text-\(--menu-hover-foreground\):focus {
|
|
2084
|
+
color: var(--menu-hover-foreground);
|
|
1664
2085
|
}
|
|
1665
2086
|
.focus-visible\:z-10:focus-visible {
|
|
1666
2087
|
z-index: 10;
|
|
@@ -1679,6 +2100,10 @@
|
|
|
1679
2100
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1680
2101
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1681
2102
|
}
|
|
2103
|
+
.focus-visible\:ring-2:focus-visible {
|
|
2104
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
2105
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2106
|
+
}
|
|
1682
2107
|
.focus-visible\:ring-\[3px\]:focus-visible {
|
|
1683
2108
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1684
2109
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -1713,6 +2138,12 @@
|
|
|
1713
2138
|
.active\:cursor-grabbing:active {
|
|
1714
2139
|
cursor: grabbing;
|
|
1715
2140
|
}
|
|
2141
|
+
.active\:bg-sidebar-accent:active {
|
|
2142
|
+
background-color: var(--sidebar-accent);
|
|
2143
|
+
}
|
|
2144
|
+
.active\:text-sidebar-accent-foreground:active {
|
|
2145
|
+
color: var(--sidebar-accent-foreground);
|
|
2146
|
+
}
|
|
1716
2147
|
.disabled\:pointer-events-none:disabled {
|
|
1717
2148
|
pointer-events: none;
|
|
1718
2149
|
}
|
|
@@ -1722,18 +2153,79 @@
|
|
|
1722
2153
|
.disabled\:opacity-50:disabled {
|
|
1723
2154
|
opacity: 50%;
|
|
1724
2155
|
}
|
|
2156
|
+
:where([data-side="left"]) .in-data-\[side\=left\]\:cursor-w-resize {
|
|
2157
|
+
cursor: w-resize;
|
|
2158
|
+
}
|
|
2159
|
+
:where([data-side="right"]) .in-data-\[side\=right\]\:cursor-e-resize {
|
|
2160
|
+
cursor: e-resize;
|
|
2161
|
+
}
|
|
1725
2162
|
.has-disabled\:opacity-50:has(:disabled) {
|
|
1726
2163
|
opacity: 50%;
|
|
1727
2164
|
}
|
|
2165
|
+
.has-data-\[slot\=attachment-content\]\:w-30:has([data-slot="attachment-content"]) {
|
|
2166
|
+
width: calc(var(--spacing) * 30);
|
|
2167
|
+
}
|
|
2168
|
+
.has-data-\[slot\=attachment-content\]\:px-1\.5:has([data-slot="attachment-content"]) {
|
|
2169
|
+
padding-inline: calc(var(--spacing) * 1.5);
|
|
2170
|
+
}
|
|
2171
|
+
.has-data-\[slot\=attachment-content\]\:px-2:has([data-slot="attachment-content"]) {
|
|
2172
|
+
padding-inline: calc(var(--spacing) * 2);
|
|
2173
|
+
}
|
|
2174
|
+
.has-data-\[slot\=attachment-content\]\:px-2\.5:has([data-slot="attachment-content"]) {
|
|
2175
|
+
padding-inline: calc(var(--spacing) * 2.5);
|
|
2176
|
+
}
|
|
2177
|
+
.has-data-\[slot\=attachment-content\]\:py-1:has([data-slot="attachment-content"]) {
|
|
2178
|
+
padding-block: var(--spacing);
|
|
2179
|
+
}
|
|
2180
|
+
.has-data-\[slot\=attachment-content\]\:py-1\.5:has([data-slot="attachment-content"]) {
|
|
2181
|
+
padding-block: calc(var(--spacing) * 1.5);
|
|
2182
|
+
}
|
|
2183
|
+
.has-data-\[slot\=attachment-content\]\:py-2:has([data-slot="attachment-content"]) {
|
|
2184
|
+
padding-block: calc(var(--spacing) * 2);
|
|
2185
|
+
}
|
|
2186
|
+
.has-data-\[slot\=attachment-media\]\:p-1:has([data-slot="attachment-media"]) {
|
|
2187
|
+
padding: var(--spacing);
|
|
2188
|
+
}
|
|
2189
|
+
.has-data-\[slot\=attachment-media\]\:p-1\.5:has([data-slot="attachment-media"]) {
|
|
2190
|
+
padding: calc(var(--spacing) * 1.5);
|
|
2191
|
+
}
|
|
2192
|
+
.has-data-\[slot\=attachment-media\]\:p-2:has([data-slot="attachment-media"]) {
|
|
2193
|
+
padding: calc(var(--spacing) * 2);
|
|
2194
|
+
}
|
|
1728
2195
|
.has-data-\[slot\=card-action\]\:grid-cols-\[1fr_auto\]:has([data-slot="card-action"]) {
|
|
1729
2196
|
grid-template-columns: 1fr auto;
|
|
1730
2197
|
}
|
|
2198
|
+
.has-data-\[variant\=inset\]\:bg-sidebar:has([data-variant="inset"]) {
|
|
2199
|
+
background-color: var(--sidebar);
|
|
2200
|
+
}
|
|
2201
|
+
.has-\[button\]\:p-0:has(:is(button)) {
|
|
2202
|
+
padding: 0px;
|
|
2203
|
+
}
|
|
2204
|
+
@media (hover: hover) {
|
|
2205
|
+
.has-\[\>a\,\>button\]\:hover\:bg-muted\/50:has( > a, > button):hover {
|
|
2206
|
+
background-color: var(--muted);
|
|
2207
|
+
}
|
|
2208
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2209
|
+
.has-\[\>a\,\>button\]\:hover\:bg-muted\/50:has( > a, > button):hover {
|
|
2210
|
+
background-color: color-mix(in oklab, var(--muted) 50%, transparent);
|
|
2211
|
+
}
|
|
2212
|
+
}
|
|
2213
|
+
}
|
|
1731
2214
|
.has-\[\>svg\]\:grid-cols-\[calc\(var\(--spacing\)\*4\)_1fr\]:has( > svg) {
|
|
1732
2215
|
grid-template-columns: calc(var(--spacing) * 4) 1fr;
|
|
1733
2216
|
}
|
|
1734
2217
|
.has-\[\>svg\]\:gap-x-3:has( > svg) {
|
|
1735
2218
|
column-gap: calc(var(--spacing) * 3);
|
|
1736
2219
|
}
|
|
2220
|
+
.has-\[\>svg\]\:px-1\.5:has( > svg) {
|
|
2221
|
+
padding-inline: calc(var(--spacing) * 1.5);
|
|
2222
|
+
}
|
|
2223
|
+
.aria-disabled\:pointer-events-none[aria-disabled="true"] {
|
|
2224
|
+
pointer-events: none;
|
|
2225
|
+
}
|
|
2226
|
+
.aria-disabled\:opacity-50[aria-disabled="true"] {
|
|
2227
|
+
opacity: 50%;
|
|
2228
|
+
}
|
|
1737
2229
|
.aria-selected\:text-muted-foreground[aria-selected="true"] {
|
|
1738
2230
|
color: var(--muted-foreground);
|
|
1739
2231
|
}
|
|
@@ -1744,9 +2236,15 @@
|
|
|
1744
2236
|
--tw-translate-x: calc(100% - 2px);
|
|
1745
2237
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1746
2238
|
}
|
|
2239
|
+
.data-checked\:border-\(color\:--radio-checked\)[data-checked] {
|
|
2240
|
+
border-color: var(--radio-checked);
|
|
2241
|
+
}
|
|
1747
2242
|
.data-checked\:border-primary[data-checked] {
|
|
1748
2243
|
border-color: var(--primary);
|
|
1749
2244
|
}
|
|
2245
|
+
.data-checked\:bg-\(--switch-track-checked\)[data-checked] {
|
|
2246
|
+
background-color: var(--switch-track-checked);
|
|
2247
|
+
}
|
|
1750
2248
|
.data-checked\:bg-primary[data-checked] {
|
|
1751
2249
|
background-color: var(--primary);
|
|
1752
2250
|
}
|
|
@@ -1765,6 +2263,9 @@
|
|
|
1765
2263
|
.data-pressed\:text-accent-foreground[data-pressed] {
|
|
1766
2264
|
color: var(--accent-foreground);
|
|
1767
2265
|
}
|
|
2266
|
+
:is(.group-data-\[align\=end\]\/message\:\*\:data-slot\:self-end:is(:where(.group\/message)[data-align="end"] *) > *)[data-slot] {
|
|
2267
|
+
align-self: flex-end;
|
|
2268
|
+
}
|
|
1768
2269
|
.data-starting-style\:animate-toast-in[data-starting-style] {
|
|
1769
2270
|
animation: toast-in 200ms ease-out;
|
|
1770
2271
|
}
|
|
@@ -1775,8 +2276,8 @@
|
|
|
1775
2276
|
--tw-translate-x: 0px;
|
|
1776
2277
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1777
2278
|
}
|
|
1778
|
-
.data-unchecked\:bg-
|
|
1779
|
-
background-color: var(--
|
|
2279
|
+
.data-unchecked\:bg-\(--switch-track\)[data-unchecked] {
|
|
2280
|
+
background-color: var(--switch-track);
|
|
1780
2281
|
}
|
|
1781
2282
|
.data-\[active\=true\]\:z-10[data-active="true"] {
|
|
1782
2283
|
z-index: 10;
|
|
@@ -1784,6 +2285,16 @@
|
|
|
1784
2285
|
.data-\[active\=true\]\:border-ring[data-active="true"] {
|
|
1785
2286
|
border-color: var(--ring);
|
|
1786
2287
|
}
|
|
2288
|
+
.data-\[active\=true\]\:bg-sidebar-accent[data-active="true"] {
|
|
2289
|
+
background-color: var(--sidebar-accent);
|
|
2290
|
+
}
|
|
2291
|
+
.data-\[active\=true\]\:font-medium[data-active="true"] {
|
|
2292
|
+
--tw-font-weight: var(--font-weight-medium);
|
|
2293
|
+
font-weight: var(--font-weight-medium);
|
|
2294
|
+
}
|
|
2295
|
+
.data-\[active\=true\]\:text-sidebar-accent-foreground[data-active="true"] {
|
|
2296
|
+
color: var(--sidebar-accent-foreground);
|
|
2297
|
+
}
|
|
1787
2298
|
.data-\[active\=true\]\:ring-\[3px\][data-active="true"] {
|
|
1788
2299
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1789
2300
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -1794,6 +2305,12 @@
|
|
|
1794
2305
|
--tw-ring-color: color-mix(in oklab, var(--ring) 50%, transparent);
|
|
1795
2306
|
}
|
|
1796
2307
|
}
|
|
2308
|
+
.data-\[align\=end\]\:flex-row-reverse[data-align="end"] {
|
|
2309
|
+
flex-direction: row-reverse;
|
|
2310
|
+
}
|
|
2311
|
+
.data-\[align\=end\]\:self-end[data-align="end"] {
|
|
2312
|
+
align-self: flex-end;
|
|
2313
|
+
}
|
|
1797
2314
|
.data-\[disabled\=true\]\:pointer-events-none[data-disabled="true"] {
|
|
1798
2315
|
pointer-events: none;
|
|
1799
2316
|
}
|
|
@@ -1849,11 +2366,11 @@
|
|
|
1849
2366
|
.data-\[placeholder\]\:text-muted-foreground[data-placeholder] {
|
|
1850
2367
|
color: var(--muted-foreground);
|
|
1851
2368
|
}
|
|
1852
|
-
.data-\[selected\=true\]\:bg-
|
|
1853
|
-
background-color: var(--
|
|
2369
|
+
.data-\[selected\=true\]\:bg-\(--menu-active-background\)[data-selected="true"] {
|
|
2370
|
+
background-color: var(--menu-active-background);
|
|
1854
2371
|
}
|
|
1855
|
-
.data-\[selected\=true\]\:text-
|
|
1856
|
-
color: var(--
|
|
2372
|
+
.data-\[selected\=true\]\:text-\(--menu-active-foreground\)[data-selected="true"] {
|
|
2373
|
+
color: var(--menu-active-foreground);
|
|
1857
2374
|
}
|
|
1858
2375
|
.data-\[side\=bottom\]\:-top-1[data-side="bottom"] {
|
|
1859
2376
|
top: calc(var(--spacing) * -1);
|
|
@@ -1873,6 +2390,57 @@
|
|
|
1873
2390
|
.data-\[size\=sm\]\:h-8[data-size="sm"] {
|
|
1874
2391
|
height: calc(var(--spacing) * 8);
|
|
1875
2392
|
}
|
|
2393
|
+
:is(.\*\:data-\[slot\=attachment\]\:flex-none > *)[data-slot="attachment"] {
|
|
2394
|
+
flex: none;
|
|
2395
|
+
}
|
|
2396
|
+
:is(.\*\:data-\[slot\=attachment\]\:snap-start > *)[data-slot="attachment"] {
|
|
2397
|
+
scroll-snap-align: start;
|
|
2398
|
+
}
|
|
2399
|
+
:is(.\*\:data-\[slot\=bubble-content\]\:rounded-none > *)[data-slot="bubble-content"] {
|
|
2400
|
+
border-radius: 0;
|
|
2401
|
+
}
|
|
2402
|
+
:is(.\*\:data-\[slot\=bubble-content\]\:border-border > *)[data-slot="bubble-content"] {
|
|
2403
|
+
border-color: var(--border);
|
|
2404
|
+
}
|
|
2405
|
+
:is(.\*\:data-\[slot\=bubble-content\]\:bg-\(--bubble-background\) > *)[data-slot="bubble-content"] {
|
|
2406
|
+
background-color: var(--bubble-background);
|
|
2407
|
+
}
|
|
2408
|
+
:is(.\*\:data-\[slot\=bubble-content\]\:bg-card > *)[data-slot="bubble-content"] {
|
|
2409
|
+
background-color: var(--card);
|
|
2410
|
+
}
|
|
2411
|
+
:is(.\*\:data-\[slot\=bubble-content\]\:bg-destructive\/10 > *)[data-slot="bubble-content"] {
|
|
2412
|
+
background-color: var(--destructive);
|
|
2413
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2414
|
+
background-color: color-mix(in oklab, var(--destructive) 10%, transparent);
|
|
2415
|
+
}
|
|
2416
|
+
}
|
|
2417
|
+
:is(.\*\:data-\[slot\=bubble-content\]\:bg-muted > *)[data-slot="bubble-content"] {
|
|
2418
|
+
background-color: var(--muted);
|
|
2419
|
+
}
|
|
2420
|
+
:is(.\*\:data-\[slot\=bubble-content\]\:bg-primary > *)[data-slot="bubble-content"] {
|
|
2421
|
+
background-color: var(--primary);
|
|
2422
|
+
}
|
|
2423
|
+
:is(.\*\:data-\[slot\=bubble-content\]\:bg-secondary > *)[data-slot="bubble-content"] {
|
|
2424
|
+
background-color: var(--secondary);
|
|
2425
|
+
}
|
|
2426
|
+
:is(.\*\:data-\[slot\=bubble-content\]\:bg-transparent > *)[data-slot="bubble-content"] {
|
|
2427
|
+
background-color: transparent;
|
|
2428
|
+
}
|
|
2429
|
+
:is(.\*\:data-\[slot\=bubble-content\]\:p-0 > *)[data-slot="bubble-content"] {
|
|
2430
|
+
padding: 0px;
|
|
2431
|
+
}
|
|
2432
|
+
:is(.\*\:data-\[slot\=bubble-content\]\:text-destructive > *)[data-slot="bubble-content"] {
|
|
2433
|
+
color: var(--destructive);
|
|
2434
|
+
}
|
|
2435
|
+
:is(.\*\:data-\[slot\=bubble-content\]\:text-foreground > *)[data-slot="bubble-content"] {
|
|
2436
|
+
color: var(--foreground);
|
|
2437
|
+
}
|
|
2438
|
+
:is(.\*\:data-\[slot\=bubble-content\]\:text-primary-foreground > *)[data-slot="bubble-content"] {
|
|
2439
|
+
color: var(--primary-foreground);
|
|
2440
|
+
}
|
|
2441
|
+
:is(.\*\:data-\[slot\=bubble-content\]\:text-secondary-foreground > *)[data-slot="bubble-content"] {
|
|
2442
|
+
color: var(--secondary-foreground);
|
|
2443
|
+
}
|
|
1876
2444
|
:is(.\*\*\:data-\[slot\=navigation-menu-link\]\:focus\:ring-0 *)[data-slot="navigation-menu-link"]:focus {
|
|
1877
2445
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1878
2446
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -1881,6 +2449,31 @@
|
|
|
1881
2449
|
--tw-outline-style: none;
|
|
1882
2450
|
outline-style: none;
|
|
1883
2451
|
}
|
|
2452
|
+
:is(.group-data-\[orientation\=vertical\]\/attachment\:\*\:data-\[slot\=spinner\]\:size-6\!:is(:where(.group\/attachment)[data-orientation="vertical"] *) > *)[data-slot="spinner"] {
|
|
2453
|
+
width: calc(var(--spacing) * 6) !important;
|
|
2454
|
+
height: calc(var(--spacing) * 6) !important;
|
|
2455
|
+
}
|
|
2456
|
+
.data-\[state\=error\]\:border-destructive\/30[data-state="error"] {
|
|
2457
|
+
border-color: var(--destructive);
|
|
2458
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2459
|
+
border-color: color-mix(in oklab, var(--destructive) 30%, transparent);
|
|
2460
|
+
}
|
|
2461
|
+
}
|
|
2462
|
+
.data-\[state\=idle\]\:border-dashed[data-state="idle"] {
|
|
2463
|
+
--tw-border-style: dashed;
|
|
2464
|
+
border-style: dashed;
|
|
2465
|
+
}
|
|
2466
|
+
.data-\[state\=open\]\:opacity-100[data-state="open"] {
|
|
2467
|
+
opacity: 100%;
|
|
2468
|
+
}
|
|
2469
|
+
@media (hover: hover) {
|
|
2470
|
+
.data-\[state\=open\]\:hover\:bg-sidebar-accent[data-state="open"]:hover {
|
|
2471
|
+
background-color: var(--sidebar-accent);
|
|
2472
|
+
}
|
|
2473
|
+
.data-\[state\=open\]\:hover\:text-sidebar-accent-foreground[data-state="open"]:hover {
|
|
2474
|
+
color: var(--sidebar-accent-foreground);
|
|
2475
|
+
}
|
|
2476
|
+
}
|
|
1884
2477
|
.data-\[state\=selected\]\:bg-muted[data-state="selected"] {
|
|
1885
2478
|
background-color: var(--muted);
|
|
1886
2479
|
}
|
|
@@ -1896,6 +2489,9 @@
|
|
|
1896
2489
|
.data-\[variant\=destructive\]\:focus\:text-destructive[data-variant="destructive"]:focus {
|
|
1897
2490
|
color: var(--destructive);
|
|
1898
2491
|
}
|
|
2492
|
+
.data-\[variant\=ghost\]\:max-w-full[data-variant="ghost"] {
|
|
2493
|
+
max-width: 100%;
|
|
2494
|
+
}
|
|
1899
2495
|
.data-\[vaul-drawer-direction\=bottom\]\:inset-x-0[data-vaul-drawer-direction="bottom"] {
|
|
1900
2496
|
inset-inline: 0px;
|
|
1901
2497
|
}
|
|
@@ -1962,38 +2558,13 @@
|
|
|
1962
2558
|
border-bottom-style: var(--tw-border-style);
|
|
1963
2559
|
border-bottom-width: 1px;
|
|
1964
2560
|
}
|
|
1965
|
-
@media (width < 48rem) {
|
|
1966
|
-
.max-md\:fixed {
|
|
1967
|
-
position: fixed;
|
|
1968
|
-
}
|
|
1969
|
-
.max-md\:inset-y-0 {
|
|
1970
|
-
inset-block: 0px;
|
|
1971
|
-
}
|
|
1972
|
-
.max-md\:left-0 {
|
|
1973
|
-
left: 0px;
|
|
1974
|
-
}
|
|
1975
|
-
.max-md\:z-50 {
|
|
1976
|
-
z-index: 50;
|
|
1977
|
-
}
|
|
1978
|
-
.max-md\:hidden {
|
|
1979
|
-
display: none;
|
|
1980
|
-
}
|
|
1981
|
-
.max-md\:w-60 {
|
|
1982
|
-
width: calc(var(--spacing) * 60);
|
|
1983
|
-
}
|
|
1984
|
-
.max-md\:-translate-x-full {
|
|
1985
|
-
--tw-translate-x: -100%;
|
|
1986
|
-
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1987
|
-
}
|
|
1988
|
-
.max-md\:data-\[open\=true\]\:translate-x-0[data-open="true"] {
|
|
1989
|
-
--tw-translate-x: 0px;
|
|
1990
|
-
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1991
|
-
}
|
|
1992
|
-
}
|
|
1993
2561
|
@media (width >= 40rem) {
|
|
1994
2562
|
.sm\:block {
|
|
1995
2563
|
display: block;
|
|
1996
2564
|
}
|
|
2565
|
+
.sm\:flex {
|
|
2566
|
+
display: flex;
|
|
2567
|
+
}
|
|
1997
2568
|
.sm\:max-w-lg {
|
|
1998
2569
|
max-width: var(--container-lg);
|
|
1999
2570
|
}
|
|
@@ -2029,6 +2600,12 @@
|
|
|
2029
2600
|
}
|
|
2030
2601
|
}
|
|
2031
2602
|
@media (width >= 48rem) {
|
|
2603
|
+
.md\:block {
|
|
2604
|
+
display: block;
|
|
2605
|
+
}
|
|
2606
|
+
.md\:flex {
|
|
2607
|
+
display: flex;
|
|
2608
|
+
}
|
|
2032
2609
|
.md\:hidden {
|
|
2033
2610
|
display: none;
|
|
2034
2611
|
}
|
|
@@ -2039,13 +2616,36 @@
|
|
|
2039
2616
|
font-size: var(--text-sm);
|
|
2040
2617
|
line-height: var(--tw-leading, var(--text-sm--line-height));
|
|
2041
2618
|
}
|
|
2619
|
+
.md\:opacity-0 {
|
|
2620
|
+
opacity: 0%;
|
|
2621
|
+
}
|
|
2622
|
+
.md\:peer-data-\[variant\=inset\]\:m-2:is(:where(.peer)[data-variant="inset"] ~ *) {
|
|
2623
|
+
margin: calc(var(--spacing) * 2);
|
|
2624
|
+
}
|
|
2625
|
+
.md\:peer-data-\[variant\=inset\]\:ml-0:is(:where(.peer)[data-variant="inset"] ~ *) {
|
|
2626
|
+
margin-left: 0px;
|
|
2627
|
+
}
|
|
2628
|
+
.md\:peer-data-\[variant\=inset\]\:rounded-xl:is(:where(.peer)[data-variant="inset"] ~ *) {
|
|
2629
|
+
border-radius: calc(var(--radius) * 1.4);
|
|
2630
|
+
}
|
|
2631
|
+
.md\:peer-data-\[variant\=inset\]\:shadow-sm:is(:where(.peer)[data-variant="inset"] ~ *) {
|
|
2632
|
+
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
2633
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2634
|
+
}
|
|
2635
|
+
.md\:peer-data-\[variant\=inset\]\:peer-data-\[state\=collapsed\]\:ml-2:is(:where(.peer)[data-variant="inset"] ~ *):is(:where(.peer)[data-state="collapsed"] ~ *) {
|
|
2636
|
+
margin-left: calc(var(--spacing) * 2);
|
|
2637
|
+
}
|
|
2638
|
+
.md\:after\:hidden::after {
|
|
2639
|
+
content: var(--tw-content);
|
|
2640
|
+
display: none;
|
|
2641
|
+
}
|
|
2042
2642
|
}
|
|
2043
2643
|
@media (prefers-color-scheme: dark) {
|
|
2044
|
-
.dark\:
|
|
2045
|
-
color: var(--
|
|
2046
|
-
|
|
2047
|
-
|
|
2048
|
-
|
|
2644
|
+
:is(.dark\:\*\:data-\[slot\=bubble-content\]\:bg-destructive\/20 > *)[data-slot="bubble-content"] {
|
|
2645
|
+
background-color: var(--destructive);
|
|
2646
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2647
|
+
background-color: color-mix(in oklab, var(--destructive) 20%, transparent);
|
|
2648
|
+
}
|
|
2049
2649
|
}
|
|
2050
2650
|
}
|
|
2051
2651
|
.data-open\:animate-accordion-down:where([data-open]:not([data-open='false'])) {
|
|
@@ -2054,17 +2654,17 @@
|
|
|
2054
2654
|
.data-open\:animate-in:where([data-open]:not([data-open='false'])) {
|
|
2055
2655
|
animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
|
|
2056
2656
|
}
|
|
2057
|
-
.data-open\:bg-
|
|
2058
|
-
background-color: var(--
|
|
2657
|
+
.data-open\:bg-\(--menu-active-background\):where([data-open]:not([data-open='false'])) {
|
|
2658
|
+
background-color: var(--menu-active-background);
|
|
2059
2659
|
}
|
|
2060
|
-
.data-open\:bg-
|
|
2061
|
-
background-color: var(--
|
|
2660
|
+
.data-open\:bg-\(--menu-active-background\)\/50:where([data-open]:not([data-open='false'])) {
|
|
2661
|
+
background-color: var(--menu-active-background);
|
|
2062
2662
|
@supports (color: color-mix(in lab, red, red)) {
|
|
2063
|
-
background-color: color-mix(in oklab, var(--
|
|
2663
|
+
background-color: color-mix(in oklab, var(--menu-active-background) 50%, transparent);
|
|
2064
2664
|
}
|
|
2065
2665
|
}
|
|
2066
|
-
.data-open\:text-
|
|
2067
|
-
color: var(--
|
|
2666
|
+
.data-open\:text-\(--menu-active-foreground\):where([data-open]:not([data-open='false'])) {
|
|
2667
|
+
color: var(--menu-active-foreground);
|
|
2068
2668
|
}
|
|
2069
2669
|
.data-open\:duration-300:where([data-open]:not([data-open='false'])) {
|
|
2070
2670
|
--tw-duration: 300ms;
|
|
@@ -2123,17 +2723,17 @@
|
|
|
2123
2723
|
.data-active\:border-border:where([data-active]:not([data-active='false'])) {
|
|
2124
2724
|
border-color: var(--border);
|
|
2125
2725
|
}
|
|
2126
|
-
.data-active\:bg-
|
|
2127
|
-
background-color: var(--
|
|
2726
|
+
.data-active\:bg-\(--menu-active-background\)\/50:where([data-active]:not([data-active='false'])) {
|
|
2727
|
+
background-color: var(--menu-active-background);
|
|
2128
2728
|
@supports (color: color-mix(in lab, red, red)) {
|
|
2129
|
-
background-color: color-mix(in oklab, var(--
|
|
2729
|
+
background-color: color-mix(in oklab, var(--menu-active-background) 50%, transparent);
|
|
2130
2730
|
}
|
|
2131
2731
|
}
|
|
2132
|
-
.data-active\:bg-
|
|
2133
|
-
background-color: var(--
|
|
2732
|
+
.data-active\:bg-card:where([data-active]:not([data-active='false'])) {
|
|
2733
|
+
background-color: var(--card);
|
|
2134
2734
|
}
|
|
2135
|
-
.data-active\:text-
|
|
2136
|
-
color: var(--
|
|
2735
|
+
.data-active\:text-\(--menu-active-foreground\):where([data-active]:not([data-active='false'])) {
|
|
2736
|
+
color: var(--menu-active-foreground);
|
|
2137
2737
|
}
|
|
2138
2738
|
.data-active\:shadow-sm:where([data-active]:not([data-active='false'])) {
|
|
2139
2739
|
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
@@ -2194,6 +2794,10 @@
|
|
|
2194
2794
|
.\[\&_svg\]\:shrink-0 svg {
|
|
2195
2795
|
flex-shrink: 0;
|
|
2196
2796
|
}
|
|
2797
|
+
.\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-3 svg:not([class*='size-']) {
|
|
2798
|
+
width: calc(var(--spacing) * 3);
|
|
2799
|
+
height: calc(var(--spacing) * 3);
|
|
2800
|
+
}
|
|
2197
2801
|
.\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-4 svg:not([class*='size-']) {
|
|
2198
2802
|
width: calc(var(--spacing) * 4);
|
|
2199
2803
|
height: calc(var(--spacing) * 4);
|
|
@@ -2202,6 +2806,14 @@
|
|
|
2202
2806
|
width: calc(var(--spacing) * 5);
|
|
2203
2807
|
height: calc(var(--spacing) * 5);
|
|
2204
2808
|
}
|
|
2809
|
+
.group-data-\[orientation\=vertical\]\/attachment\:\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-6:is(:where(.group\/attachment)[data-orientation="vertical"] *) svg:not([class*='size-']) {
|
|
2810
|
+
width: calc(var(--spacing) * 6);
|
|
2811
|
+
height: calc(var(--spacing) * 6);
|
|
2812
|
+
}
|
|
2813
|
+
.group-data-\[size\=xs\]\/attachment\:\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-3\.5:is(:where(.group\/attachment)[data-size="xs"] *) svg:not([class*='size-']) {
|
|
2814
|
+
width: calc(var(--spacing) * 3.5);
|
|
2815
|
+
height: calc(var(--spacing) * 3.5);
|
|
2816
|
+
}
|
|
2205
2817
|
.\[\&_tr\]\:border-b tr {
|
|
2206
2818
|
border-bottom-style: var(--tw-border-style);
|
|
2207
2819
|
border-bottom-width: 1px;
|
|
@@ -2222,12 +2834,99 @@
|
|
|
2222
2834
|
.\[\.border-t\]\:pt-6:is(.border-t) {
|
|
2223
2835
|
padding-top: calc(var(--spacing) * 6);
|
|
2224
2836
|
}
|
|
2837
|
+
.\[button\]\:text-left:is(button) {
|
|
2838
|
+
text-align: left;
|
|
2839
|
+
}
|
|
2840
|
+
.\[button\,a\]\:transition-colors:is(button, a) {
|
|
2841
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
2842
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
2843
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
2844
|
+
}
|
|
2845
|
+
.\[button\,a\]\:outline-none:is(button, a) {
|
|
2846
|
+
--tw-outline-style: none;
|
|
2847
|
+
outline-style: none;
|
|
2848
|
+
}
|
|
2849
|
+
.\[button\,a\]\:focus-visible\:border-ring:is(button, a):focus-visible {
|
|
2850
|
+
border-color: var(--ring);
|
|
2851
|
+
}
|
|
2852
|
+
.\[button\,a\]\:focus-visible\:ring-3:is(button, a):focus-visible {
|
|
2853
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
2854
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2855
|
+
}
|
|
2856
|
+
.\[button\,a\]\:focus-visible\:ring-ring\/50:is(button, a):focus-visible {
|
|
2857
|
+
--tw-ring-color: var(--ring);
|
|
2858
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2859
|
+
--tw-ring-color: color-mix(in oklab, var(--ring) 50%, transparent);
|
|
2860
|
+
}
|
|
2861
|
+
}
|
|
2862
|
+
:is(.\*\:\[img\]\:aspect-square > *):is(img) {
|
|
2863
|
+
aspect-ratio: 1 / 1;
|
|
2864
|
+
}
|
|
2865
|
+
:is(.\*\:\[img\]\:w-full > *):is(img) {
|
|
2866
|
+
width: 100%;
|
|
2867
|
+
}
|
|
2868
|
+
:is(.\*\:\[img\]\:object-cover > *):is(img) {
|
|
2869
|
+
object-fit: cover;
|
|
2870
|
+
}
|
|
2225
2871
|
.\[\&\>\*\]\:focus-visible\:relative > *:focus-visible {
|
|
2226
2872
|
position: relative;
|
|
2227
2873
|
}
|
|
2228
2874
|
.\[\&\>\*\]\:focus-visible\:z-10 > *:focus-visible {
|
|
2229
2875
|
z-index: 10;
|
|
2230
2876
|
}
|
|
2877
|
+
.\[\&\>\[data-slot\=bubble-content\]\:is\(button\,a\)\:hover\]\:bg-\(--bubble-hover-background\) > [data-slot=bubble-content]:is(button, a):hover {
|
|
2878
|
+
background-color: var(--bubble-hover-background);
|
|
2879
|
+
}
|
|
2880
|
+
.\[\&\>\[data-slot\=bubble-content\]\:is\(button\,a\)\:hover\]\:bg-\[color-mix\(in_oklch\,var\(--muted\)\,var\(--foreground\)_5\%\)\] > [data-slot=bubble-content]:is(button, a):hover {
|
|
2881
|
+
background-color: var(--muted);
|
|
2882
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2883
|
+
background-color: color-mix(in oklch,var(--muted),var(--foreground) 5%);
|
|
2884
|
+
}
|
|
2885
|
+
}
|
|
2886
|
+
.\[\&\>\[data-slot\=bubble-content\]\:is\(button\,a\)\:hover\]\:bg-\[color-mix\(in_oklch\,var\(--secondary\)\,var\(--foreground\)_5\%\)\] > [data-slot=bubble-content]:is(button, a):hover {
|
|
2887
|
+
background-color: var(--secondary);
|
|
2888
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2889
|
+
background-color: color-mix(in oklch,var(--secondary),var(--foreground) 5%);
|
|
2890
|
+
}
|
|
2891
|
+
}
|
|
2892
|
+
.\[\&\>\[data-slot\=bubble-content\]\:is\(button\,a\)\:hover\]\:bg-destructive\/20 > [data-slot=bubble-content]:is(button, a):hover {
|
|
2893
|
+
background-color: var(--destructive);
|
|
2894
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2895
|
+
background-color: color-mix(in oklab, var(--destructive) 20%, transparent);
|
|
2896
|
+
}
|
|
2897
|
+
}
|
|
2898
|
+
.\[\&\>\[data-slot\=bubble-content\]\:is\(button\,a\)\:hover\]\:bg-muted > [data-slot=bubble-content]:is(button, a):hover {
|
|
2899
|
+
background-color: var(--muted);
|
|
2900
|
+
}
|
|
2901
|
+
.\[\&\>\[data-slot\=bubble-content\]\:is\(button\,a\)\:hover\]\:bg-primary\/80 > [data-slot=bubble-content]:is(button, a):hover {
|
|
2902
|
+
background-color: var(--primary);
|
|
2903
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2904
|
+
background-color: color-mix(in oklab, var(--primary) 80%, transparent);
|
|
2905
|
+
}
|
|
2906
|
+
}
|
|
2907
|
+
.\[\&\>\[data-slot\=bubble-content\]\:is\(button\,a\)\:hover\]\:text-foreground > [data-slot=bubble-content]:is(button, a):hover {
|
|
2908
|
+
color: var(--foreground);
|
|
2909
|
+
}
|
|
2910
|
+
@media (prefers-color-scheme: dark) {
|
|
2911
|
+
.dark\:\[\&\>\[data-slot\=bubble-content\]\:is\(button\,a\)\:hover\]\:bg-destructive\/30 > [data-slot=bubble-content]:is(button, a):hover {
|
|
2912
|
+
background-color: var(--destructive);
|
|
2913
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2914
|
+
background-color: color-mix(in oklab, var(--destructive) 30%, transparent);
|
|
2915
|
+
}
|
|
2916
|
+
}
|
|
2917
|
+
.dark\:\[\&\>\[data-slot\=bubble-content\]\:is\(button\,a\)\:hover\]\:bg-input\/30 > [data-slot=bubble-content]:is(button, a):hover {
|
|
2918
|
+
background-color: var(--input);
|
|
2919
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2920
|
+
background-color: color-mix(in oklab, var(--input) 30%, transparent);
|
|
2921
|
+
}
|
|
2922
|
+
}
|
|
2923
|
+
.dark\:\[\&\>\[data-slot\=bubble-content\]\:is\(button\,a\)\:hover\]\:bg-muted\/50 > [data-slot=bubble-content]:is(button, a):hover {
|
|
2924
|
+
background-color: var(--muted);
|
|
2925
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2926
|
+
background-color: color-mix(in oklab, var(--muted) 50%, transparent);
|
|
2927
|
+
}
|
|
2928
|
+
}
|
|
2929
|
+
}
|
|
2231
2930
|
.\[\&\>\[data-slot\=button\]\]\:shrink-0 > [data-slot=button] {
|
|
2232
2931
|
flex-shrink: 0;
|
|
2233
2932
|
}
|
|
@@ -2269,26 +2968,34 @@
|
|
|
2269
2968
|
border-top-right-radius: calc(var(--radius) * 0.8);
|
|
2270
2969
|
border-bottom-right-radius: calc(var(--radius) * 0.8);
|
|
2271
2970
|
}
|
|
2272
|
-
.\[\&\>button\]\:
|
|
2273
|
-
|
|
2971
|
+
.\[\&\>button\]\:hidden > button {
|
|
2972
|
+
display: none;
|
|
2274
2973
|
}
|
|
2275
|
-
.\[\&\>button\]\:bg-
|
|
2276
|
-
background-color: var(--
|
|
2974
|
+
.\[\&\>button\]\:bg-\(--calendar-selected-background\) > button {
|
|
2975
|
+
background-color: var(--calendar-selected-background);
|
|
2277
2976
|
}
|
|
2278
|
-
.\[\&\>button\]\:
|
|
2279
|
-
color: var(--
|
|
2977
|
+
.\[\&\>button\]\:bg-\(--calendar-today-background\) > button {
|
|
2978
|
+
background-color: var(--calendar-today-background);
|
|
2280
2979
|
}
|
|
2281
|
-
.\[\&\>button\]\:text-
|
|
2282
|
-
color: var(--
|
|
2980
|
+
.\[\&\>button\]\:text-\(--calendar-selected-foreground\) > button {
|
|
2981
|
+
color: var(--calendar-selected-foreground);
|
|
2982
|
+
}
|
|
2983
|
+
.\[\&\>button\]\:text-\(--calendar-today-foreground\) > button {
|
|
2984
|
+
color: var(--calendar-today-foreground);
|
|
2283
2985
|
}
|
|
2284
2986
|
@media (hover: hover) {
|
|
2285
|
-
.\[\&\>button\]\:hover\:bg-
|
|
2286
|
-
background-color: var(--
|
|
2987
|
+
.\[\&\>button\]\:hover\:bg-\(--calendar-selected-background\) > button:hover {
|
|
2988
|
+
background-color: var(--calendar-selected-background);
|
|
2287
2989
|
}
|
|
2288
2990
|
}
|
|
2289
2991
|
.\[\&\>li\]\:mt-2 > li {
|
|
2290
2992
|
margin-top: calc(var(--spacing) * 2);
|
|
2291
2993
|
}
|
|
2994
|
+
.\[\&\>span\:last-child\]\:truncate > span:last-child {
|
|
2995
|
+
overflow: hidden;
|
|
2996
|
+
text-overflow: ellipsis;
|
|
2997
|
+
white-space: nowrap;
|
|
2998
|
+
}
|
|
2292
2999
|
.\[\&\>svg\]\:pointer-events-none > svg {
|
|
2293
3000
|
pointer-events: none;
|
|
2294
3001
|
}
|
|
@@ -2304,6 +3011,9 @@
|
|
|
2304
3011
|
width: calc(var(--spacing) * 4);
|
|
2305
3012
|
height: calc(var(--spacing) * 4);
|
|
2306
3013
|
}
|
|
3014
|
+
.\[\&\>svg\]\:shrink-0 > svg {
|
|
3015
|
+
flex-shrink: 0;
|
|
3016
|
+
}
|
|
2307
3017
|
.\[\&\>svg\]\:translate-y-0\.5 > svg {
|
|
2308
3018
|
--tw-translate-y: calc(var(--spacing) * 0.5);
|
|
2309
3019
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -2311,6 +3021,9 @@
|
|
|
2311
3021
|
.\[\&\>svg\]\:text-current > svg {
|
|
2312
3022
|
color: currentcolor;
|
|
2313
3023
|
}
|
|
3024
|
+
.\[\&\>svg\]\:text-sidebar-accent-foreground > svg {
|
|
3025
|
+
color: var(--sidebar-accent-foreground);
|
|
3026
|
+
}
|
|
2314
3027
|
.\[\&\>tr\]\:last\:border-b-0 > tr:last-child {
|
|
2315
3028
|
border-bottom-style: var(--tw-border-style);
|
|
2316
3029
|
border-bottom-width: 0px;
|
|
@@ -2324,6 +3037,18 @@
|
|
|
2324
3037
|
.\[\&\[data-panel-open\]\>svg\]\:rotate-180[data-panel-open] > svg {
|
|
2325
3038
|
rotate: 180deg;
|
|
2326
3039
|
}
|
|
3040
|
+
[data-side=left][data-collapsible=offcanvas] .\[\[data-side\=left\]\[data-collapsible\=offcanvas\]_\&\]\:-right-2 {
|
|
3041
|
+
right: calc(var(--spacing) * -2);
|
|
3042
|
+
}
|
|
3043
|
+
[data-side=left][data-state=collapsed] .\[\[data-side\=left\]\[data-state\=collapsed\]_\&\]\:cursor-e-resize {
|
|
3044
|
+
cursor: e-resize;
|
|
3045
|
+
}
|
|
3046
|
+
[data-side=right][data-collapsible=offcanvas] .\[\[data-side\=right\]\[data-collapsible\=offcanvas\]_\&\]\:-left-2 {
|
|
3047
|
+
left: calc(var(--spacing) * -2);
|
|
3048
|
+
}
|
|
3049
|
+
[data-side=right][data-state=collapsed] .\[\[data-side\=right\]\[data-state\=collapsed\]_\&\]\:cursor-w-resize {
|
|
3050
|
+
cursor: w-resize;
|
|
3051
|
+
}
|
|
2327
3052
|
}
|
|
2328
3053
|
@property --tw-animation-delay {
|
|
2329
3054
|
syntax: "*";
|
|
@@ -2410,6 +3135,7 @@
|
|
|
2410
3135
|
initial-value: 0;
|
|
2411
3136
|
}
|
|
2412
3137
|
:root {
|
|
3138
|
+
color-scheme: light;
|
|
2413
3139
|
--radius: 0.625rem;
|
|
2414
3140
|
--background: oklch(1 0 0);
|
|
2415
3141
|
--foreground: oklch(0.145 0 0);
|
|
@@ -2446,8 +3172,47 @@
|
|
|
2446
3172
|
--sidebar-accent-foreground: oklch(0.205 0 0);
|
|
2447
3173
|
--sidebar-border: oklch(0.922 0 0);
|
|
2448
3174
|
--sidebar-ring: oklch(0.708 0 0);
|
|
3175
|
+
--font-sans: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto,
|
|
3176
|
+
'Helvetica Neue', Arial, sans-serif;
|
|
3177
|
+
--background-image: none;
|
|
3178
|
+
--card-shadow: none;
|
|
3179
|
+
--shadow-color: oklch(0 0 0 / 10%);
|
|
3180
|
+
--overlay-background: oklch(0 0 0 / 50%);
|
|
3181
|
+
--switch-track: var(--input);
|
|
3182
|
+
--switch-track-checked: var(--primary);
|
|
3183
|
+
--switch-thumb: var(--card);
|
|
3184
|
+
--slider-track: var(--muted);
|
|
3185
|
+
--slider-range: var(--primary);
|
|
3186
|
+
--slider-thumb: var(--card);
|
|
3187
|
+
--radio-border: var(--input);
|
|
3188
|
+
--radio-checked: var(--primary);
|
|
3189
|
+
--progress-track: var(--muted);
|
|
3190
|
+
--progress-indicator: var(--primary);
|
|
3191
|
+
--pagination-active-background: var(--card);
|
|
3192
|
+
--pagination-active-border: var(--border);
|
|
3193
|
+
--pagination-active-radius: calc(var(--radius) * 0.8);
|
|
3194
|
+
--menu-hover-background: var(--accent);
|
|
3195
|
+
--menu-hover-foreground: var(--accent-foreground);
|
|
3196
|
+
--menu-active-background: var(--accent);
|
|
3197
|
+
--menu-active-foreground: var(--accent-foreground);
|
|
3198
|
+
--bubble-background: oklch(from var(--primary) 0.93 calc(c * 0.4) h);
|
|
3199
|
+
--bubble-hover-background: oklch(
|
|
3200
|
+
from var(--primary) 0.88 calc(c * 0.5) h
|
|
3201
|
+
);
|
|
3202
|
+
--calendar-day-hover-background: var(--accent);
|
|
3203
|
+
--calendar-day-hover-foreground: var(--accent-foreground);
|
|
3204
|
+
--calendar-selected-background: var(--primary);
|
|
3205
|
+
--calendar-selected-foreground: var(--primary-foreground);
|
|
3206
|
+
--calendar-today-background: var(--accent);
|
|
3207
|
+
--calendar-today-foreground: var(--accent-foreground);
|
|
3208
|
+
--flex-gap: 12px;
|
|
3209
|
+
--flex-gap-sm: calc(var(--flex-gap) * 0.67);
|
|
3210
|
+
--flex-gap-md: calc(var(--flex-gap) * 1.33);
|
|
3211
|
+
--flex-gap-lg: calc(var(--flex-gap) * 2);
|
|
3212
|
+
--grid-gap: 16px;
|
|
2449
3213
|
}
|
|
2450
3214
|
[data-pactor-theme='dark'] {
|
|
3215
|
+
color-scheme: dark;
|
|
2451
3216
|
--background: oklch(0.145 0 0);
|
|
2452
3217
|
--foreground: oklch(0.985 0 0);
|
|
2453
3218
|
--card: oklch(0.205 0 0);
|
|
@@ -2483,6 +3248,62 @@
|
|
|
2483
3248
|
--sidebar-accent-foreground: oklch(0.985 0 0);
|
|
2484
3249
|
--sidebar-border: oklch(1 0 0 / 10%);
|
|
2485
3250
|
--sidebar-ring: oklch(0.556 0 0);
|
|
3251
|
+
--bubble-background: oklch(from var(--primary) 0.3 calc(c * 0.4) h);
|
|
3252
|
+
--bubble-hover-background: oklch(
|
|
3253
|
+
from var(--primary) 0.35 calc(c * 0.5) h
|
|
3254
|
+
);
|
|
3255
|
+
}
|
|
3256
|
+
@media (prefers-color-scheme: dark) {
|
|
3257
|
+
:root:not([data-pactor-theme='light']):not([data-pactor-theme='dark']) {
|
|
3258
|
+
color-scheme: dark;
|
|
3259
|
+
--background: oklch(0.145 0 0);
|
|
3260
|
+
--foreground: oklch(0.985 0 0);
|
|
3261
|
+
--card: oklch(0.205 0 0);
|
|
3262
|
+
--card-foreground: oklch(0.985 0 0);
|
|
3263
|
+
--popover: oklch(0.205 0 0);
|
|
3264
|
+
--popover-foreground: oklch(0.985 0 0);
|
|
3265
|
+
--primary: oklch(0.922 0 0);
|
|
3266
|
+
--primary-foreground: oklch(0.205 0 0);
|
|
3267
|
+
--secondary: oklch(0.269 0 0);
|
|
3268
|
+
--secondary-foreground: oklch(0.985 0 0);
|
|
3269
|
+
--muted: oklch(0.269 0 0);
|
|
3270
|
+
--muted-foreground: oklch(0.708 0 0);
|
|
3271
|
+
--accent: oklch(0.269 0 0);
|
|
3272
|
+
--accent-foreground: oklch(0.985 0 0);
|
|
3273
|
+
--destructive: oklch(0.704 0.191 22.216);
|
|
3274
|
+
--destructive-foreground: oklch(0.985 0 0);
|
|
3275
|
+
--success: oklch(0.696 0.17 162.48);
|
|
3276
|
+
--warning: oklch(0.769 0.188 70.08);
|
|
3277
|
+
--info: oklch(0.623 0.214 259.815);
|
|
3278
|
+
--border: oklch(1 0 0 / 10%);
|
|
3279
|
+
--input: oklch(1 0 0 / 15%);
|
|
3280
|
+
--ring: oklch(0.556 0 0);
|
|
3281
|
+
--chart-1: oklch(0.488 0.243 264.376);
|
|
3282
|
+
--chart-2: oklch(0.696 0.17 162.48);
|
|
3283
|
+
--chart-3: oklch(0.769 0.188 70.08);
|
|
3284
|
+
--chart-4: oklch(0.627 0.265 303.9);
|
|
3285
|
+
--chart-5: oklch(0.645 0.246 16.439);
|
|
3286
|
+
--sidebar: oklch(0.205 0 0);
|
|
3287
|
+
--sidebar-foreground: oklch(0.985 0 0);
|
|
3288
|
+
--sidebar-primary: oklch(0.488 0.243 264.376);
|
|
3289
|
+
--sidebar-primary-foreground: oklch(0.985 0 0);
|
|
3290
|
+
--sidebar-accent: oklch(0.269 0 0);
|
|
3291
|
+
--sidebar-accent-foreground: oklch(0.985 0 0);
|
|
3292
|
+
--sidebar-border: oklch(1 0 0 / 10%);
|
|
3293
|
+
--sidebar-ring: oklch(0.556 0 0);
|
|
3294
|
+
--bubble-background: oklch(from var(--primary) 0.3 calc(c * 0.4) h);
|
|
3295
|
+
--bubble-hover-background: oklch(
|
|
3296
|
+
from var(--primary) 0.35 calc(c * 0.5) h
|
|
3297
|
+
);
|
|
3298
|
+
}
|
|
3299
|
+
}
|
|
3300
|
+
@keyframes shimmer {
|
|
3301
|
+
0% {
|
|
3302
|
+
background-position: 200% 0;
|
|
3303
|
+
}
|
|
3304
|
+
100% {
|
|
3305
|
+
background-position: -200% 0;
|
|
3306
|
+
}
|
|
2486
3307
|
}
|
|
2487
3308
|
@layer base {
|
|
2488
3309
|
* {
|
|
@@ -2495,6 +3316,8 @@
|
|
|
2495
3316
|
body {
|
|
2496
3317
|
background-color: var(--background);
|
|
2497
3318
|
color: var(--foreground);
|
|
3319
|
+
background-image: var(--background-image);
|
|
3320
|
+
font-family: var(--font-sans);
|
|
2498
3321
|
}
|
|
2499
3322
|
}
|
|
2500
3323
|
@property --tw-translate-x {
|
|
@@ -2532,6 +3355,11 @@
|
|
|
2532
3355
|
syntax: "*";
|
|
2533
3356
|
inherits: false;
|
|
2534
3357
|
}
|
|
3358
|
+
@property --tw-scroll-snap-strictness {
|
|
3359
|
+
syntax: "*";
|
|
3360
|
+
inherits: false;
|
|
3361
|
+
initial-value: proximity;
|
|
3362
|
+
}
|
|
2535
3363
|
@property --tw-space-y-reverse {
|
|
2536
3364
|
syntax: "*";
|
|
2537
3365
|
inherits: false;
|
|
@@ -2805,6 +3633,7 @@
|
|
|
2805
3633
|
--tw-rotate-z: initial;
|
|
2806
3634
|
--tw-skew-x: initial;
|
|
2807
3635
|
--tw-skew-y: initial;
|
|
3636
|
+
--tw-scroll-snap-strictness: proximity;
|
|
2808
3637
|
--tw-space-y-reverse: 0;
|
|
2809
3638
|
--tw-border-style: solid;
|
|
2810
3639
|
--tw-leading: initial;
|