@pactor-app/ui 1.2.0 → 1.7.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 +2 -0
- package/dist/{chunk-L45CSL6I.js → chunk-7KC6DMKH.js} +3 -3
- package/dist/{chunk-Q5NUGUJG.js → chunk-E2TD6JD2.js} +205 -414
- package/dist/{chunk-F3H23KYG.js → chunk-F42SGQNW.js} +31 -93
- package/dist/{chunk-22TEN3ER.js → chunk-FJPRXEKQ.js} +13 -13
- package/dist/chunk-L4Z7MNYY.js +1197 -0
- package/dist/{chunk-LMEJ242M.js → chunk-PMYLC26E.js} +615 -307
- package/dist/chunk-WKJUCGV4.js +78 -0
- package/dist/chunk-ZM3WJZZ7.js +727 -0
- package/dist/components/index.cjs +1694 -969
- package/dist/components/index.d.cts +115 -13
- package/dist/components/index.d.ts +115 -13
- package/dist/components/index.js +10 -6
- package/dist/index.cjs +1889 -1164
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +12 -8
- package/dist/interaction/index.cjs +10 -6
- package/dist/interaction/index.js +3 -3
- package/dist/layout/index.cjs +811 -269
- package/dist/layout/index.d.cts +1 -1
- package/dist/layout/index.d.ts +1 -1
- package/dist/layout/index.js +4 -4
- package/dist/ui/index.cjs +1689 -534
- package/dist/ui/index.d.cts +130 -16
- package/dist/ui/index.d.ts +130 -16
- package/dist/ui/index.js +481 -22
- package/package.json +6 -5
- package/styles.css +975 -114
- package/dist/chunk-2LYMCWEJ.js +0 -289
- package/dist/chunk-HJPHJKVA.js +0 -671
- 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,39 @@
|
|
|
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
|
}
|
|
659
|
+
.w-48 {
|
|
660
|
+
width: calc(var(--spacing) * 48);
|
|
661
|
+
}
|
|
606
662
|
.w-52 {
|
|
607
663
|
width: calc(var(--spacing) * 52);
|
|
608
664
|
}
|
|
609
|
-
.w-60 {
|
|
610
|
-
width: calc(var(--spacing) * 60);
|
|
611
|
-
}
|
|
612
665
|
.w-64 {
|
|
613
666
|
width: calc(var(--spacing) * 64);
|
|
614
667
|
}
|
|
@@ -624,6 +677,9 @@
|
|
|
624
677
|
.w-\[100px\] {
|
|
625
678
|
width: 100px;
|
|
626
679
|
}
|
|
680
|
+
.w-auto {
|
|
681
|
+
width: auto;
|
|
682
|
+
}
|
|
627
683
|
.w-fit {
|
|
628
684
|
width: fit-content;
|
|
629
685
|
}
|
|
@@ -636,9 +692,18 @@
|
|
|
636
692
|
.w-px {
|
|
637
693
|
width: 1px;
|
|
638
694
|
}
|
|
695
|
+
.max-w-\(--skeleton-width\) {
|
|
696
|
+
max-width: var(--skeleton-width);
|
|
697
|
+
}
|
|
698
|
+
.max-w-\[80\%\] {
|
|
699
|
+
max-width: 80%;
|
|
700
|
+
}
|
|
639
701
|
.max-w-\[calc\(100\%-2rem\)\] {
|
|
640
702
|
max-width: calc(100% - 2rem);
|
|
641
703
|
}
|
|
704
|
+
.max-w-full {
|
|
705
|
+
max-width: 100%;
|
|
706
|
+
}
|
|
642
707
|
.max-w-max {
|
|
643
708
|
max-width: max-content;
|
|
644
709
|
}
|
|
@@ -666,6 +731,9 @@
|
|
|
666
731
|
.min-w-36 {
|
|
667
732
|
min-width: calc(var(--spacing) * 36);
|
|
668
733
|
}
|
|
734
|
+
.min-w-40 {
|
|
735
|
+
min-width: calc(var(--spacing) * 40);
|
|
736
|
+
}
|
|
669
737
|
.min-w-\[8rem\] {
|
|
670
738
|
min-width: 8rem;
|
|
671
739
|
}
|
|
@@ -697,18 +765,34 @@
|
|
|
697
765
|
--tw-translate-x: calc(calc(1 / 2 * 100%) * -1);
|
|
698
766
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
699
767
|
}
|
|
768
|
+
.-translate-x-px {
|
|
769
|
+
--tw-translate-x: -1px;
|
|
770
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
771
|
+
}
|
|
700
772
|
.translate-x-\[-50\%\] {
|
|
701
773
|
--tw-translate-x: -50%;
|
|
702
774
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
703
775
|
}
|
|
776
|
+
.translate-x-px {
|
|
777
|
+
--tw-translate-x: 1px;
|
|
778
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
779
|
+
}
|
|
704
780
|
.-translate-y-1\/2 {
|
|
705
781
|
--tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
|
|
706
782
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
707
783
|
}
|
|
784
|
+
.-translate-y-3\/4 {
|
|
785
|
+
--tw-translate-y: calc(calc(3 / 4 * 100%) * -1);
|
|
786
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
787
|
+
}
|
|
708
788
|
.translate-y-0\.5 {
|
|
709
789
|
--tw-translate-y: calc(var(--spacing) * 0.5);
|
|
710
790
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
711
791
|
}
|
|
792
|
+
.translate-y-3\/4 {
|
|
793
|
+
--tw-translate-y: calc(3 / 4 * 100%);
|
|
794
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
795
|
+
}
|
|
712
796
|
.translate-y-\[-50\%\] {
|
|
713
797
|
--tw-translate-y: -50%;
|
|
714
798
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -719,6 +803,9 @@
|
|
|
719
803
|
.rotate-90 {
|
|
720
804
|
rotate: 90deg;
|
|
721
805
|
}
|
|
806
|
+
.rotate-180 {
|
|
807
|
+
rotate: 180deg;
|
|
808
|
+
}
|
|
722
809
|
.transform {
|
|
723
810
|
transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
|
|
724
811
|
}
|
|
@@ -752,12 +839,24 @@
|
|
|
752
839
|
.resize-none {
|
|
753
840
|
resize: none;
|
|
754
841
|
}
|
|
842
|
+
.snap-x {
|
|
843
|
+
scroll-snap-type: x var(--tw-scroll-snap-strictness);
|
|
844
|
+
}
|
|
845
|
+
.snap-mandatory {
|
|
846
|
+
--tw-scroll-snap-strictness: mandatory;
|
|
847
|
+
}
|
|
755
848
|
.scroll-m-20 {
|
|
756
849
|
scroll-margin: calc(var(--spacing) * 20);
|
|
757
850
|
}
|
|
851
|
+
.scroll-px-1 {
|
|
852
|
+
scroll-padding-inline: var(--spacing);
|
|
853
|
+
}
|
|
758
854
|
.scroll-py-1 {
|
|
759
855
|
scroll-padding-block: var(--spacing);
|
|
760
856
|
}
|
|
857
|
+
.scrollbar-none {
|
|
858
|
+
scrollbar-width: none;
|
|
859
|
+
}
|
|
761
860
|
.list-disc {
|
|
762
861
|
list-style-type: disc;
|
|
763
862
|
}
|
|
@@ -824,6 +923,21 @@
|
|
|
824
923
|
.justify-items-start {
|
|
825
924
|
justify-items: start;
|
|
826
925
|
}
|
|
926
|
+
.gap-\(--flex-gap\) {
|
|
927
|
+
gap: var(--flex-gap);
|
|
928
|
+
}
|
|
929
|
+
.gap-\(--flex-gap-lg\) {
|
|
930
|
+
gap: var(--flex-gap-lg);
|
|
931
|
+
}
|
|
932
|
+
.gap-\(--flex-gap-md\) {
|
|
933
|
+
gap: var(--flex-gap-md);
|
|
934
|
+
}
|
|
935
|
+
.gap-\(--flex-gap-sm\) {
|
|
936
|
+
gap: var(--flex-gap-sm);
|
|
937
|
+
}
|
|
938
|
+
.gap-\(--grid-gap\) {
|
|
939
|
+
gap: var(--grid-gap);
|
|
940
|
+
}
|
|
827
941
|
.gap-0\.5 {
|
|
828
942
|
gap: calc(var(--spacing) * 0.5);
|
|
829
943
|
}
|
|
@@ -836,6 +950,9 @@
|
|
|
836
950
|
.gap-2 {
|
|
837
951
|
gap: calc(var(--spacing) * 2);
|
|
838
952
|
}
|
|
953
|
+
.gap-2\.5 {
|
|
954
|
+
gap: calc(var(--spacing) * 2.5);
|
|
955
|
+
}
|
|
839
956
|
.gap-3 {
|
|
840
957
|
gap: calc(var(--spacing) * 3);
|
|
841
958
|
}
|
|
@@ -853,6 +970,9 @@
|
|
|
853
970
|
.gap-y-0\.5 {
|
|
854
971
|
row-gap: calc(var(--spacing) * 0.5);
|
|
855
972
|
}
|
|
973
|
+
.self-end {
|
|
974
|
+
align-self: flex-end;
|
|
975
|
+
}
|
|
856
976
|
.self-start {
|
|
857
977
|
align-self: flex-start;
|
|
858
978
|
}
|
|
@@ -879,9 +999,15 @@
|
|
|
879
999
|
.overflow-y-auto {
|
|
880
1000
|
overflow-y: auto;
|
|
881
1001
|
}
|
|
1002
|
+
.overscroll-x-contain {
|
|
1003
|
+
overscroll-behavior-x: contain;
|
|
1004
|
+
}
|
|
882
1005
|
.rounded {
|
|
883
1006
|
border-radius: 0.25rem;
|
|
884
1007
|
}
|
|
1008
|
+
.rounded-\(--pagination-active-radius\) {
|
|
1009
|
+
border-radius: var(--pagination-active-radius);
|
|
1010
|
+
}
|
|
885
1011
|
.rounded-\[2px\] {
|
|
886
1012
|
border-radius: 2px;
|
|
887
1013
|
}
|
|
@@ -957,6 +1083,19 @@
|
|
|
957
1083
|
--tw-border-style: dashed;
|
|
958
1084
|
border-style: dashed;
|
|
959
1085
|
}
|
|
1086
|
+
.border-none {
|
|
1087
|
+
--tw-border-style: none;
|
|
1088
|
+
border-style: none;
|
|
1089
|
+
}
|
|
1090
|
+
.border-\(--calendar-today-border\) {
|
|
1091
|
+
border-color: var(--calendar-today-border);
|
|
1092
|
+
}
|
|
1093
|
+
.border-\(color\:--pagination-active-border\) {
|
|
1094
|
+
border-color: var(--pagination-active-border);
|
|
1095
|
+
}
|
|
1096
|
+
.border-\(color\:--radio-border\) {
|
|
1097
|
+
border-color: var(--radio-border);
|
|
1098
|
+
}
|
|
960
1099
|
.border-border {
|
|
961
1100
|
border-color: var(--border);
|
|
962
1101
|
}
|
|
@@ -1014,29 +1153,38 @@
|
|
|
1014
1153
|
.border-l-warning {
|
|
1015
1154
|
border-left-color: var(--warning);
|
|
1016
1155
|
}
|
|
1017
|
-
.bg-
|
|
1018
|
-
background-color: var(--
|
|
1156
|
+
.bg-\(--menu-active-background\) {
|
|
1157
|
+
background-color: var(--menu-active-background);
|
|
1019
1158
|
}
|
|
1020
|
-
.bg-background {
|
|
1021
|
-
background-color: var(--background);
|
|
1159
|
+
.bg-\(--overlay-background\) {
|
|
1160
|
+
background-color: var(--overlay-background);
|
|
1022
1161
|
}
|
|
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
|
-
}
|
|
1162
|
+
.bg-\(--pagination-active-background\) {
|
|
1163
|
+
background-color: var(--pagination-active-background);
|
|
1028
1164
|
}
|
|
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
|
-
}
|
|
1165
|
+
.bg-\(--progress-indicator\) {
|
|
1166
|
+
background-color: var(--progress-indicator);
|
|
1034
1167
|
}
|
|
1035
|
-
.bg-
|
|
1036
|
-
background-color:
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1168
|
+
.bg-\(--progress-track\) {
|
|
1169
|
+
background-color: var(--progress-track);
|
|
1170
|
+
}
|
|
1171
|
+
.bg-\(--radio-checked\) {
|
|
1172
|
+
background-color: var(--radio-checked);
|
|
1173
|
+
}
|
|
1174
|
+
.bg-\(--slider-range\) {
|
|
1175
|
+
background-color: var(--slider-range);
|
|
1176
|
+
}
|
|
1177
|
+
.bg-\(--slider-thumb\) {
|
|
1178
|
+
background-color: var(--slider-thumb);
|
|
1179
|
+
}
|
|
1180
|
+
.bg-\(--slider-track\) {
|
|
1181
|
+
background-color: var(--slider-track);
|
|
1182
|
+
}
|
|
1183
|
+
.bg-\(--switch-thumb\) {
|
|
1184
|
+
background-color: var(--switch-thumb);
|
|
1185
|
+
}
|
|
1186
|
+
.bg-background {
|
|
1187
|
+
background-color: var(--background);
|
|
1040
1188
|
}
|
|
1041
1189
|
.bg-border {
|
|
1042
1190
|
background-color: var(--border);
|
|
@@ -1044,6 +1192,12 @@
|
|
|
1044
1192
|
.bg-card {
|
|
1045
1193
|
background-color: var(--card);
|
|
1046
1194
|
}
|
|
1195
|
+
.bg-card\/60 {
|
|
1196
|
+
background-color: var(--card);
|
|
1197
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1198
|
+
background-color: color-mix(in oklab, var(--card) 60%, transparent);
|
|
1199
|
+
}
|
|
1200
|
+
}
|
|
1047
1201
|
.bg-destructive {
|
|
1048
1202
|
background-color: var(--destructive);
|
|
1049
1203
|
}
|
|
@@ -1077,9 +1231,15 @@
|
|
|
1077
1231
|
.bg-sidebar {
|
|
1078
1232
|
background-color: var(--sidebar);
|
|
1079
1233
|
}
|
|
1234
|
+
.bg-sidebar-border {
|
|
1235
|
+
background-color: var(--sidebar-border);
|
|
1236
|
+
}
|
|
1080
1237
|
.bg-transparent {
|
|
1081
1238
|
background-color: transparent;
|
|
1082
1239
|
}
|
|
1240
|
+
.scroll-fade-x {
|
|
1241
|
+
mask-image: linear-gradient( to right, transparent, black 8px, black calc(100% - 8px), transparent );
|
|
1242
|
+
}
|
|
1083
1243
|
.fill-primary {
|
|
1084
1244
|
fill: var(--primary);
|
|
1085
1245
|
}
|
|
@@ -1270,6 +1430,14 @@
|
|
|
1270
1430
|
--tw-leading: 1;
|
|
1271
1431
|
line-height: 1;
|
|
1272
1432
|
}
|
|
1433
|
+
.leading-relaxed {
|
|
1434
|
+
--tw-leading: var(--leading-relaxed);
|
|
1435
|
+
line-height: var(--leading-relaxed);
|
|
1436
|
+
}
|
|
1437
|
+
.leading-tight {
|
|
1438
|
+
--tw-leading: var(--leading-tight);
|
|
1439
|
+
line-height: var(--leading-tight);
|
|
1440
|
+
}
|
|
1273
1441
|
.font-bold {
|
|
1274
1442
|
--tw-font-weight: var(--font-weight-bold);
|
|
1275
1443
|
font-weight: var(--font-weight-bold);
|
|
@@ -1300,14 +1468,14 @@
|
|
|
1300
1468
|
.break-words {
|
|
1301
1469
|
overflow-wrap: break-word;
|
|
1302
1470
|
}
|
|
1471
|
+
.wrap-break-word {
|
|
1472
|
+
overflow-wrap: break-word;
|
|
1473
|
+
}
|
|
1303
1474
|
.whitespace-nowrap {
|
|
1304
1475
|
white-space: nowrap;
|
|
1305
1476
|
}
|
|
1306
|
-
.text-
|
|
1307
|
-
color: var(--
|
|
1308
|
-
}
|
|
1309
|
-
.text-amber-600 {
|
|
1310
|
-
color: var(--color-amber-600);
|
|
1477
|
+
.text-\(--menu-active-foreground\) {
|
|
1478
|
+
color: var(--menu-active-foreground);
|
|
1311
1479
|
}
|
|
1312
1480
|
.text-card-foreground {
|
|
1313
1481
|
color: var(--card-foreground);
|
|
@@ -1324,9 +1492,6 @@
|
|
|
1324
1492
|
.text-foreground {
|
|
1325
1493
|
color: var(--foreground);
|
|
1326
1494
|
}
|
|
1327
|
-
.text-green-600 {
|
|
1328
|
-
color: var(--color-green-600);
|
|
1329
|
-
}
|
|
1330
1495
|
.text-info {
|
|
1331
1496
|
color: var(--info);
|
|
1332
1497
|
}
|
|
@@ -1385,9 +1550,20 @@
|
|
|
1385
1550
|
.opacity-50 {
|
|
1386
1551
|
opacity: 50%;
|
|
1387
1552
|
}
|
|
1553
|
+
.opacity-60 {
|
|
1554
|
+
opacity: 60%;
|
|
1555
|
+
}
|
|
1388
1556
|
.opacity-70 {
|
|
1389
1557
|
opacity: 70%;
|
|
1390
1558
|
}
|
|
1559
|
+
.shadow-\(--card-shadow\) {
|
|
1560
|
+
--tw-shadow: var(--card-shadow);
|
|
1561
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1562
|
+
}
|
|
1563
|
+
.shadow-\[0_0_0_1px_var\(--sidebar-border\)\] {
|
|
1564
|
+
--tw-shadow: 0 0 0 1px var(--tw-shadow-color, var(--sidebar-border));
|
|
1565
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1566
|
+
}
|
|
1391
1567
|
.shadow-lg {
|
|
1392
1568
|
--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
1569
|
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 +1584,22 @@
|
|
|
1408
1584
|
--tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
|
|
1409
1585
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1410
1586
|
}
|
|
1587
|
+
.ring-3 {
|
|
1588
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1589
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1590
|
+
}
|
|
1591
|
+
.shadow-\(color\:--shadow-color\) {
|
|
1592
|
+
--tw-shadow-color: var(--shadow-color);
|
|
1593
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1594
|
+
--tw-shadow-color: color-mix(in oklab, var(--shadow-color) var(--tw-shadow-alpha), transparent);
|
|
1595
|
+
}
|
|
1596
|
+
}
|
|
1597
|
+
.ring-card {
|
|
1598
|
+
--tw-ring-color: var(--card);
|
|
1599
|
+
}
|
|
1600
|
+
.ring-sidebar-ring {
|
|
1601
|
+
--tw-ring-color: var(--sidebar-ring);
|
|
1602
|
+
}
|
|
1411
1603
|
.outline-hidden {
|
|
1412
1604
|
--tw-outline-style: none;
|
|
1413
1605
|
outline-style: none;
|
|
@@ -1433,13 +1625,23 @@
|
|
|
1433
1625
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1434
1626
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1435
1627
|
}
|
|
1628
|
+
.transition-\[left\,right\,width\] {
|
|
1629
|
+
transition-property: left,right,width;
|
|
1630
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1631
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1632
|
+
}
|
|
1633
|
+
.transition-\[margin\,opacity\] {
|
|
1634
|
+
transition-property: margin,opacity;
|
|
1635
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1636
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1637
|
+
}
|
|
1436
1638
|
.transition-\[opacity\,transform\] {
|
|
1437
1639
|
transition-property: opacity,transform;
|
|
1438
1640
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1439
1641
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1440
1642
|
}
|
|
1441
|
-
.transition-\[width\,
|
|
1442
|
-
transition-property: width,
|
|
1643
|
+
.transition-\[width\,height\,padding\] {
|
|
1644
|
+
transition-property: width,height,padding;
|
|
1443
1645
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1444
1646
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1445
1647
|
}
|
|
@@ -1489,6 +1691,10 @@
|
|
|
1489
1691
|
--tw-ease: var(--ease-in-out);
|
|
1490
1692
|
transition-timing-function: var(--ease-in-out);
|
|
1491
1693
|
}
|
|
1694
|
+
.ease-linear {
|
|
1695
|
+
--tw-ease: linear;
|
|
1696
|
+
transition-timing-function: linear;
|
|
1697
|
+
}
|
|
1492
1698
|
.ease-out {
|
|
1493
1699
|
--tw-ease: var(--ease-out);
|
|
1494
1700
|
transition-timing-function: var(--ease-out);
|
|
@@ -1501,24 +1707,201 @@
|
|
|
1501
1707
|
-webkit-user-select: none;
|
|
1502
1708
|
user-select: none;
|
|
1503
1709
|
}
|
|
1710
|
+
.group-focus-within\/menu-item\:opacity-100:is(:where(.group\/menu-item):focus-within *) {
|
|
1711
|
+
opacity: 100%;
|
|
1712
|
+
}
|
|
1713
|
+
@media (hover: hover) {
|
|
1714
|
+
.group-hover\/menu-item\:opacity-100:is(:where(.group\/menu-item):hover *) {
|
|
1715
|
+
opacity: 100%;
|
|
1716
|
+
}
|
|
1717
|
+
}
|
|
1718
|
+
.group-has-data-\[sidebar\=menu-action\]\/menu-item\:pr-8:is(:where(.group\/menu-item):has([data-sidebar="menu-action"]) *) {
|
|
1719
|
+
padding-right: calc(var(--spacing) * 8);
|
|
1720
|
+
}
|
|
1721
|
+
.group-has-data-\[slot\=message-footer\]\/message\:-translate-y-8:is(:where(.group\/message):has([data-slot="message-footer"]) *) {
|
|
1722
|
+
--tw-translate-y: calc(var(--spacing) * -8);
|
|
1723
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1724
|
+
}
|
|
1725
|
+
.group-has-data-\[variant\=ghost\]\/message\:px-0:is(:where(.group\/message):has([data-variant="ghost"]) *) {
|
|
1726
|
+
padding-inline: 0px;
|
|
1727
|
+
}
|
|
1728
|
+
.group-data-\[align\=end\]\/bubble\:self-end:is(:where(.group\/bubble)[data-align="end"] *) {
|
|
1729
|
+
align-self: flex-end;
|
|
1730
|
+
}
|
|
1731
|
+
.group-data-\[align\=end\]\/message\:justify-end:is(:where(.group\/message)[data-align="end"] *) {
|
|
1732
|
+
justify-content: flex-end;
|
|
1733
|
+
}
|
|
1734
|
+
.group-data-\[align\=end\]\/message\:self-end:is(:where(.group\/message)[data-align="end"] *) {
|
|
1735
|
+
align-self: flex-end;
|
|
1736
|
+
}
|
|
1737
|
+
.group-data-\[collapsible\=icon\]\:-mt-8:is(:where(.group)[data-collapsible="icon"] *) {
|
|
1738
|
+
margin-top: calc(var(--spacing) * -8);
|
|
1739
|
+
}
|
|
1740
|
+
.group-data-\[collapsible\=icon\]\:hidden:is(:where(.group)[data-collapsible="icon"] *) {
|
|
1741
|
+
display: none;
|
|
1742
|
+
}
|
|
1743
|
+
.group-data-\[collapsible\=icon\]\:size-8\!:is(:where(.group)[data-collapsible="icon"] *) {
|
|
1744
|
+
width: calc(var(--spacing) * 8) !important;
|
|
1745
|
+
height: calc(var(--spacing) * 8) !important;
|
|
1746
|
+
}
|
|
1747
|
+
.group-data-\[collapsible\=icon\]\:w-\(--sidebar-width-icon\):is(:where(.group)[data-collapsible="icon"] *) {
|
|
1748
|
+
width: var(--sidebar-width-icon);
|
|
1749
|
+
}
|
|
1750
|
+
.group-data-\[collapsible\=icon\]\:w-\[calc\(var\(--sidebar-width-icon\)\+\(--spacing\(4\)\)\)\]:is(:where(.group)[data-collapsible="icon"] *) {
|
|
1751
|
+
width: calc(var(--sidebar-width-icon) + (calc(var(--spacing) * 4)));
|
|
1752
|
+
}
|
|
1753
|
+
.group-data-\[collapsible\=icon\]\:w-\[calc\(var\(--sidebar-width-icon\)\+\(--spacing\(4\)\)\+2px\)\]:is(:where(.group)[data-collapsible="icon"] *) {
|
|
1754
|
+
width: calc(var(--sidebar-width-icon) + (calc(var(--spacing) * 4)) + 2px);
|
|
1755
|
+
}
|
|
1756
|
+
.group-data-\[collapsible\=icon\]\:overflow-hidden:is(:where(.group)[data-collapsible="icon"] *) {
|
|
1757
|
+
overflow: hidden;
|
|
1758
|
+
}
|
|
1759
|
+
.group-data-\[collapsible\=icon\]\:p-0\!:is(:where(.group)[data-collapsible="icon"] *) {
|
|
1760
|
+
padding: 0px !important;
|
|
1761
|
+
}
|
|
1762
|
+
.group-data-\[collapsible\=icon\]\:p-2\!:is(:where(.group)[data-collapsible="icon"] *) {
|
|
1763
|
+
padding: calc(var(--spacing) * 2) !important;
|
|
1764
|
+
}
|
|
1765
|
+
.group-data-\[collapsible\=icon\]\:opacity-0:is(:where(.group)[data-collapsible="icon"] *) {
|
|
1766
|
+
opacity: 0%;
|
|
1767
|
+
}
|
|
1768
|
+
.group-data-\[collapsible\=offcanvas\]\:right-\[calc\(var\(--sidebar-width\)\*-1\)\]:is(:where(.group)[data-collapsible="offcanvas"] *) {
|
|
1769
|
+
right: calc(var(--sidebar-width) * -1);
|
|
1770
|
+
}
|
|
1771
|
+
.group-data-\[collapsible\=offcanvas\]\:left-\[calc\(var\(--sidebar-width\)\*-1\)\]:is(:where(.group)[data-collapsible="offcanvas"] *) {
|
|
1772
|
+
left: calc(var(--sidebar-width) * -1);
|
|
1773
|
+
}
|
|
1774
|
+
.group-data-\[collapsible\=offcanvas\]\:w-0:is(:where(.group)[data-collapsible="offcanvas"] *) {
|
|
1775
|
+
width: 0px;
|
|
1776
|
+
}
|
|
1777
|
+
.group-data-\[collapsible\=offcanvas\]\:translate-x-0:is(:where(.group)[data-collapsible="offcanvas"] *) {
|
|
1778
|
+
--tw-translate-x: 0px;
|
|
1779
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1780
|
+
}
|
|
1504
1781
|
.group-data-\[disabled\=true\]\:pointer-events-none:is(:where(.group)[data-disabled="true"] *) {
|
|
1505
1782
|
pointer-events: none;
|
|
1506
1783
|
}
|
|
1507
1784
|
.group-data-\[disabled\=true\]\:opacity-50:is(:where(.group)[data-disabled="true"] *) {
|
|
1508
1785
|
opacity: 50%;
|
|
1509
1786
|
}
|
|
1787
|
+
.group-data-\[orientation\=vertical\]\/attachment\:absolute:is(:where(.group\/attachment)[data-orientation="vertical"] *) {
|
|
1788
|
+
position: absolute;
|
|
1789
|
+
}
|
|
1790
|
+
.group-data-\[orientation\=vertical\]\/attachment\:top-3:is(:where(.group\/attachment)[data-orientation="vertical"] *) {
|
|
1791
|
+
top: calc(var(--spacing) * 3);
|
|
1792
|
+
}
|
|
1793
|
+
.group-data-\[orientation\=vertical\]\/attachment\:right-3:is(:where(.group\/attachment)[data-orientation="vertical"] *) {
|
|
1794
|
+
right: calc(var(--spacing) * 3);
|
|
1795
|
+
}
|
|
1796
|
+
.group-data-\[orientation\=vertical\]\/attachment\:w-full:is(:where(.group\/attachment)[data-orientation="vertical"] *) {
|
|
1797
|
+
width: 100%;
|
|
1798
|
+
}
|
|
1799
|
+
.group-data-\[orientation\=vertical\]\/attachment\:gap-1:is(:where(.group\/attachment)[data-orientation="vertical"] *) {
|
|
1800
|
+
gap: var(--spacing);
|
|
1801
|
+
}
|
|
1802
|
+
.group-data-\[orientation\=vertical\]\/attachment\:px-1:is(:where(.group\/attachment)[data-orientation="vertical"] *) {
|
|
1803
|
+
padding-inline: var(--spacing);
|
|
1804
|
+
}
|
|
1805
|
+
.group-data-\[side\=left\]\:-right-4:is(:where(.group)[data-side="left"] *) {
|
|
1806
|
+
right: calc(var(--spacing) * -4);
|
|
1807
|
+
}
|
|
1808
|
+
.group-data-\[side\=left\]\:border-r:is(:where(.group)[data-side="left"] *) {
|
|
1809
|
+
border-right-style: var(--tw-border-style);
|
|
1810
|
+
border-right-width: 1px;
|
|
1811
|
+
}
|
|
1812
|
+
.group-data-\[side\=right\]\:left-0:is(:where(.group)[data-side="right"] *) {
|
|
1813
|
+
left: 0px;
|
|
1814
|
+
}
|
|
1815
|
+
.group-data-\[side\=right\]\:rotate-180:is(:where(.group)[data-side="right"] *) {
|
|
1816
|
+
rotate: 180deg;
|
|
1817
|
+
}
|
|
1818
|
+
.group-data-\[side\=right\]\:border-l:is(:where(.group)[data-side="right"] *) {
|
|
1819
|
+
border-left-style: var(--tw-border-style);
|
|
1820
|
+
border-left-width: 1px;
|
|
1821
|
+
}
|
|
1822
|
+
.group-data-\[size\=sm\]\/attachment\:w-8:is(:where(.group\/attachment)[data-size="sm"] *) {
|
|
1823
|
+
width: calc(var(--spacing) * 8);
|
|
1824
|
+
}
|
|
1825
|
+
.group-data-\[size\=xs\]\/attachment\:w-7:is(:where(.group\/attachment)[data-size="xs"] *) {
|
|
1826
|
+
width: calc(var(--spacing) * 7);
|
|
1827
|
+
}
|
|
1828
|
+
.group-data-\[size\=xs\]\/attachment\:rounded-md:is(:where(.group\/attachment)[data-size="xs"] *) {
|
|
1829
|
+
border-radius: calc(var(--radius) * 0.8);
|
|
1830
|
+
}
|
|
1831
|
+
.group-data-\[state\=done\]\/attachment\:opacity-100:is(:where(.group\/attachment)[data-state="done"] *) {
|
|
1832
|
+
opacity: 100%;
|
|
1833
|
+
}
|
|
1834
|
+
.group-data-\[state\=error\]\/attachment\:bg-destructive\/10:is(:where(.group\/attachment)[data-state="error"] *) {
|
|
1835
|
+
background-color: var(--destructive);
|
|
1836
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1837
|
+
background-color: color-mix(in oklab, var(--destructive) 10%, transparent);
|
|
1838
|
+
}
|
|
1839
|
+
}
|
|
1840
|
+
.group-data-\[state\=error\]\/attachment\:text-destructive:is(:where(.group\/attachment)[data-state="error"] *) {
|
|
1841
|
+
color: var(--destructive);
|
|
1842
|
+
}
|
|
1843
|
+
.group-data-\[state\=error\]\/attachment\:text-destructive\/80:is(:where(.group\/attachment)[data-state="error"] *) {
|
|
1844
|
+
color: var(--destructive);
|
|
1845
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1846
|
+
color: color-mix(in oklab, var(--destructive) 80%, transparent);
|
|
1847
|
+
}
|
|
1848
|
+
}
|
|
1849
|
+
.group-data-\[state\=idle\]\/attachment\:opacity-100:is(:where(.group\/attachment)[data-state="idle"] *) {
|
|
1850
|
+
opacity: 100%;
|
|
1851
|
+
}
|
|
1852
|
+
.group-data-\[state\=processing\]\/attachment\:shimmer:is(:where(.group\/attachment)[data-state="processing"] *) {
|
|
1853
|
+
background: linear-gradient( 90deg, transparent 0%, var(--muted) 50%, transparent 100% );
|
|
1854
|
+
background-size: 200% 100%;
|
|
1855
|
+
animation: shimmer 1.5s ease-in-out infinite;
|
|
1856
|
+
}
|
|
1857
|
+
.group-data-\[state\=uploading\]\/attachment\:shimmer:is(:where(.group\/attachment)[data-state="uploading"] *) {
|
|
1858
|
+
background: linear-gradient( 90deg, transparent 0%, var(--muted) 50%, transparent 100% );
|
|
1859
|
+
background-size: 200% 100%;
|
|
1860
|
+
animation: shimmer 1.5s ease-in-out infinite;
|
|
1861
|
+
}
|
|
1862
|
+
.group-data-\[variant\=floating\]\:rounded-lg:is(:where(.group)[data-variant="floating"] *) {
|
|
1863
|
+
border-radius: var(--radius);
|
|
1864
|
+
}
|
|
1865
|
+
.group-data-\[variant\=floating\]\:border:is(:where(.group)[data-variant="floating"] *) {
|
|
1866
|
+
border-style: var(--tw-border-style);
|
|
1867
|
+
border-width: 1px;
|
|
1868
|
+
}
|
|
1869
|
+
.group-data-\[variant\=floating\]\:border-sidebar-border:is(:where(.group)[data-variant="floating"] *) {
|
|
1870
|
+
border-color: var(--sidebar-border);
|
|
1871
|
+
}
|
|
1872
|
+
.group-data-\[variant\=floating\]\:shadow-sm:is(:where(.group)[data-variant="floating"] *) {
|
|
1873
|
+
--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));
|
|
1874
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1875
|
+
}
|
|
1510
1876
|
.group-data-\[vaul-drawer-direction\=bottom\]\/drawer-content\:block:is(:where(.group\/drawer-content)[data-vaul-drawer-direction="bottom"] *) {
|
|
1511
1877
|
display: block;
|
|
1512
1878
|
}
|
|
1513
1879
|
.group-data-open\/navigation-menu-trigger\:rotate-180:is(:where(.group\/navigation-menu-trigger):where([data-open]:not([data-open='false'])) *) {
|
|
1514
1880
|
rotate: 180deg;
|
|
1515
1881
|
}
|
|
1882
|
+
@media (hover: hover) {
|
|
1883
|
+
.peer-hover\/menu-button\:text-sidebar-accent-foreground:is(:where(.peer\/menu-button):hover ~ *) {
|
|
1884
|
+
color: var(--sidebar-accent-foreground);
|
|
1885
|
+
}
|
|
1886
|
+
}
|
|
1516
1887
|
.peer-disabled\:cursor-not-allowed:is(:where(.peer):disabled ~ *) {
|
|
1517
1888
|
cursor: not-allowed;
|
|
1518
1889
|
}
|
|
1519
1890
|
.peer-disabled\:opacity-50:is(:where(.peer):disabled ~ *) {
|
|
1520
1891
|
opacity: 50%;
|
|
1521
1892
|
}
|
|
1893
|
+
.peer-data-\[active\=true\]\/menu-button\:text-sidebar-accent-foreground:is(:where(.peer\/menu-button)[data-active="true"] ~ *) {
|
|
1894
|
+
color: var(--sidebar-accent-foreground);
|
|
1895
|
+
}
|
|
1896
|
+
.peer-data-\[size\=default\]\/menu-button\:top-1\.5:is(:where(.peer\/menu-button)[data-size="default"] ~ *) {
|
|
1897
|
+
top: calc(var(--spacing) * 1.5);
|
|
1898
|
+
}
|
|
1899
|
+
.peer-data-\[size\=lg\]\/menu-button\:top-2\.5:is(:where(.peer\/menu-button)[data-size="lg"] ~ *) {
|
|
1900
|
+
top: calc(var(--spacing) * 2.5);
|
|
1901
|
+
}
|
|
1902
|
+
.peer-data-\[size\=sm\]\/menu-button\:top-1:is(:where(.peer\/menu-button)[data-size="sm"] ~ *) {
|
|
1903
|
+
top: var(--spacing);
|
|
1904
|
+
}
|
|
1522
1905
|
.placeholder\:text-muted-foreground::placeholder {
|
|
1523
1906
|
color: var(--muted-foreground);
|
|
1524
1907
|
}
|
|
@@ -1526,6 +1909,10 @@
|
|
|
1526
1909
|
content: var(--tw-content);
|
|
1527
1910
|
position: absolute;
|
|
1528
1911
|
}
|
|
1912
|
+
.after\:-inset-2::after {
|
|
1913
|
+
content: var(--tw-content);
|
|
1914
|
+
inset: calc(var(--spacing) * -2);
|
|
1915
|
+
}
|
|
1529
1916
|
.after\:inset-y-0::after {
|
|
1530
1917
|
content: var(--tw-content);
|
|
1531
1918
|
inset-block: 0px;
|
|
@@ -1538,11 +1925,19 @@
|
|
|
1538
1925
|
content: var(--tw-content);
|
|
1539
1926
|
width: var(--spacing);
|
|
1540
1927
|
}
|
|
1928
|
+
.after\:w-\[2px\]::after {
|
|
1929
|
+
content: var(--tw-content);
|
|
1930
|
+
width: 2px;
|
|
1931
|
+
}
|
|
1541
1932
|
.after\:-translate-x-1\/2::after {
|
|
1542
1933
|
content: var(--tw-content);
|
|
1543
1934
|
--tw-translate-x: calc(calc(1 / 2 * 100%) * -1);
|
|
1544
1935
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1545
1936
|
}
|
|
1937
|
+
.group-data-\[collapsible\=offcanvas\]\:after\:left-full:is(:where(.group)[data-collapsible="offcanvas"] *)::after {
|
|
1938
|
+
content: var(--tw-content);
|
|
1939
|
+
left: 100%;
|
|
1940
|
+
}
|
|
1546
1941
|
.first\:rounded-l-md:first-child {
|
|
1547
1942
|
border-top-left-radius: calc(var(--radius) * 0.8);
|
|
1548
1943
|
border-bottom-left-radius: calc(var(--radius) * 0.8);
|
|
@@ -1565,6 +1960,10 @@
|
|
|
1565
1960
|
.focus-within\:border-ring:focus-within {
|
|
1566
1961
|
border-color: var(--ring);
|
|
1567
1962
|
}
|
|
1963
|
+
.focus-within\:ring-1:focus-within {
|
|
1964
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1965
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1966
|
+
}
|
|
1568
1967
|
.focus-within\:ring-\[3px\]:focus-within {
|
|
1569
1968
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1570
1969
|
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 +1975,20 @@
|
|
|
1576
1975
|
}
|
|
1577
1976
|
}
|
|
1578
1977
|
@media (hover: hover) {
|
|
1978
|
+
.hover\:bg-\(--calendar-day-hover-background\):hover {
|
|
1979
|
+
background-color: var(--calendar-day-hover-background);
|
|
1980
|
+
}
|
|
1981
|
+
.hover\:bg-\(--menu-hover-background\):hover {
|
|
1982
|
+
background-color: var(--menu-hover-background);
|
|
1983
|
+
}
|
|
1984
|
+
.hover\:bg-\(--menu-hover-background\)\/50:hover {
|
|
1985
|
+
background-color: var(--menu-hover-background);
|
|
1986
|
+
}
|
|
1987
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1988
|
+
.hover\:bg-\(--menu-hover-background\)\/50:hover {
|
|
1989
|
+
background-color: color-mix(in oklab, var(--menu-hover-background) 50%, transparent);
|
|
1990
|
+
}
|
|
1991
|
+
}
|
|
1579
1992
|
.hover\:bg-accent:hover {
|
|
1580
1993
|
background-color: var(--accent);
|
|
1581
1994
|
}
|
|
@@ -1628,6 +2041,18 @@
|
|
|
1628
2041
|
.hover\:bg-transparent:hover {
|
|
1629
2042
|
background-color: transparent;
|
|
1630
2043
|
}
|
|
2044
|
+
.hover\:text-\(--calendar-day-hover-foreground\):hover {
|
|
2045
|
+
color: var(--calendar-day-hover-foreground);
|
|
2046
|
+
}
|
|
2047
|
+
.hover\:text-\(--calendar-selected-foreground\):hover {
|
|
2048
|
+
color: var(--calendar-selected-foreground);
|
|
2049
|
+
}
|
|
2050
|
+
.hover\:text-\(--calendar-today-foreground\):hover {
|
|
2051
|
+
color: var(--calendar-today-foreground);
|
|
2052
|
+
}
|
|
2053
|
+
.hover\:text-\(--menu-hover-foreground\):hover {
|
|
2054
|
+
color: var(--menu-hover-foreground);
|
|
2055
|
+
}
|
|
1631
2056
|
.hover\:text-accent-foreground:hover {
|
|
1632
2057
|
color: var(--accent-foreground);
|
|
1633
2058
|
}
|
|
@@ -1652,15 +2077,26 @@
|
|
|
1652
2077
|
.hover\:opacity-100:hover {
|
|
1653
2078
|
opacity: 100%;
|
|
1654
2079
|
}
|
|
2080
|
+
.hover\:shadow-\[0_0_0_1px_var\(--sidebar-accent\)\]:hover {
|
|
2081
|
+
--tw-shadow: 0 0 0 1px var(--tw-shadow-color, var(--sidebar-accent));
|
|
2082
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2083
|
+
}
|
|
2084
|
+
.hover\:group-data-\[collapsible\=offcanvas\]\:bg-sidebar:hover:is(:where(.group)[data-collapsible="offcanvas"] *) {
|
|
2085
|
+
background-color: var(--sidebar);
|
|
2086
|
+
}
|
|
2087
|
+
.hover\:after\:bg-sidebar-border:hover::after {
|
|
2088
|
+
content: var(--tw-content);
|
|
2089
|
+
background-color: var(--sidebar-border);
|
|
2090
|
+
}
|
|
1655
2091
|
}
|
|
1656
2092
|
.focus\:z-10:focus {
|
|
1657
2093
|
z-index: 10;
|
|
1658
2094
|
}
|
|
1659
|
-
.focus\:bg-
|
|
1660
|
-
background-color: var(--
|
|
2095
|
+
.focus\:bg-\(--menu-hover-background\):focus {
|
|
2096
|
+
background-color: var(--menu-hover-background);
|
|
1661
2097
|
}
|
|
1662
|
-
.focus\:text-
|
|
1663
|
-
color: var(--
|
|
2098
|
+
.focus\:text-\(--menu-hover-foreground\):focus {
|
|
2099
|
+
color: var(--menu-hover-foreground);
|
|
1664
2100
|
}
|
|
1665
2101
|
.focus-visible\:z-10:focus-visible {
|
|
1666
2102
|
z-index: 10;
|
|
@@ -1679,6 +2115,10 @@
|
|
|
1679
2115
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1680
2116
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1681
2117
|
}
|
|
2118
|
+
.focus-visible\:ring-2:focus-visible {
|
|
2119
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
2120
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2121
|
+
}
|
|
1682
2122
|
.focus-visible\:ring-\[3px\]:focus-visible {
|
|
1683
2123
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1684
2124
|
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 +2153,12 @@
|
|
|
1713
2153
|
.active\:cursor-grabbing:active {
|
|
1714
2154
|
cursor: grabbing;
|
|
1715
2155
|
}
|
|
2156
|
+
.active\:bg-sidebar-accent:active {
|
|
2157
|
+
background-color: var(--sidebar-accent);
|
|
2158
|
+
}
|
|
2159
|
+
.active\:text-sidebar-accent-foreground:active {
|
|
2160
|
+
color: var(--sidebar-accent-foreground);
|
|
2161
|
+
}
|
|
1716
2162
|
.disabled\:pointer-events-none:disabled {
|
|
1717
2163
|
pointer-events: none;
|
|
1718
2164
|
}
|
|
@@ -1722,18 +2168,79 @@
|
|
|
1722
2168
|
.disabled\:opacity-50:disabled {
|
|
1723
2169
|
opacity: 50%;
|
|
1724
2170
|
}
|
|
2171
|
+
:where([data-side="left"]) .in-data-\[side\=left\]\:cursor-w-resize {
|
|
2172
|
+
cursor: w-resize;
|
|
2173
|
+
}
|
|
2174
|
+
:where([data-side="right"]) .in-data-\[side\=right\]\:cursor-e-resize {
|
|
2175
|
+
cursor: e-resize;
|
|
2176
|
+
}
|
|
1725
2177
|
.has-disabled\:opacity-50:has(:disabled) {
|
|
1726
2178
|
opacity: 50%;
|
|
1727
2179
|
}
|
|
2180
|
+
.has-data-\[slot\=attachment-content\]\:w-30:has([data-slot="attachment-content"]) {
|
|
2181
|
+
width: calc(var(--spacing) * 30);
|
|
2182
|
+
}
|
|
2183
|
+
.has-data-\[slot\=attachment-content\]\:px-1\.5:has([data-slot="attachment-content"]) {
|
|
2184
|
+
padding-inline: calc(var(--spacing) * 1.5);
|
|
2185
|
+
}
|
|
2186
|
+
.has-data-\[slot\=attachment-content\]\:px-2:has([data-slot="attachment-content"]) {
|
|
2187
|
+
padding-inline: calc(var(--spacing) * 2);
|
|
2188
|
+
}
|
|
2189
|
+
.has-data-\[slot\=attachment-content\]\:px-2\.5:has([data-slot="attachment-content"]) {
|
|
2190
|
+
padding-inline: calc(var(--spacing) * 2.5);
|
|
2191
|
+
}
|
|
2192
|
+
.has-data-\[slot\=attachment-content\]\:py-1:has([data-slot="attachment-content"]) {
|
|
2193
|
+
padding-block: var(--spacing);
|
|
2194
|
+
}
|
|
2195
|
+
.has-data-\[slot\=attachment-content\]\:py-1\.5:has([data-slot="attachment-content"]) {
|
|
2196
|
+
padding-block: calc(var(--spacing) * 1.5);
|
|
2197
|
+
}
|
|
2198
|
+
.has-data-\[slot\=attachment-content\]\:py-2:has([data-slot="attachment-content"]) {
|
|
2199
|
+
padding-block: calc(var(--spacing) * 2);
|
|
2200
|
+
}
|
|
2201
|
+
.has-data-\[slot\=attachment-media\]\:p-1:has([data-slot="attachment-media"]) {
|
|
2202
|
+
padding: var(--spacing);
|
|
2203
|
+
}
|
|
2204
|
+
.has-data-\[slot\=attachment-media\]\:p-1\.5:has([data-slot="attachment-media"]) {
|
|
2205
|
+
padding: calc(var(--spacing) * 1.5);
|
|
2206
|
+
}
|
|
2207
|
+
.has-data-\[slot\=attachment-media\]\:p-2:has([data-slot="attachment-media"]) {
|
|
2208
|
+
padding: calc(var(--spacing) * 2);
|
|
2209
|
+
}
|
|
1728
2210
|
.has-data-\[slot\=card-action\]\:grid-cols-\[1fr_auto\]:has([data-slot="card-action"]) {
|
|
1729
2211
|
grid-template-columns: 1fr auto;
|
|
1730
2212
|
}
|
|
2213
|
+
.has-data-\[variant\=inset\]\:bg-sidebar:has([data-variant="inset"]) {
|
|
2214
|
+
background-color: var(--sidebar);
|
|
2215
|
+
}
|
|
2216
|
+
.has-\[button\]\:p-0:has(:is(button)) {
|
|
2217
|
+
padding: 0px;
|
|
2218
|
+
}
|
|
2219
|
+
@media (hover: hover) {
|
|
2220
|
+
.has-\[\>a\,\>button\]\:hover\:bg-muted\/50:has( > a, > button):hover {
|
|
2221
|
+
background-color: var(--muted);
|
|
2222
|
+
}
|
|
2223
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2224
|
+
.has-\[\>a\,\>button\]\:hover\:bg-muted\/50:has( > a, > button):hover {
|
|
2225
|
+
background-color: color-mix(in oklab, var(--muted) 50%, transparent);
|
|
2226
|
+
}
|
|
2227
|
+
}
|
|
2228
|
+
}
|
|
1731
2229
|
.has-\[\>svg\]\:grid-cols-\[calc\(var\(--spacing\)\*4\)_1fr\]:has( > svg) {
|
|
1732
2230
|
grid-template-columns: calc(var(--spacing) * 4) 1fr;
|
|
1733
2231
|
}
|
|
1734
2232
|
.has-\[\>svg\]\:gap-x-3:has( > svg) {
|
|
1735
2233
|
column-gap: calc(var(--spacing) * 3);
|
|
1736
2234
|
}
|
|
2235
|
+
.has-\[\>svg\]\:px-1\.5:has( > svg) {
|
|
2236
|
+
padding-inline: calc(var(--spacing) * 1.5);
|
|
2237
|
+
}
|
|
2238
|
+
.aria-disabled\:pointer-events-none[aria-disabled="true"] {
|
|
2239
|
+
pointer-events: none;
|
|
2240
|
+
}
|
|
2241
|
+
.aria-disabled\:opacity-50[aria-disabled="true"] {
|
|
2242
|
+
opacity: 50%;
|
|
2243
|
+
}
|
|
1737
2244
|
.aria-selected\:text-muted-foreground[aria-selected="true"] {
|
|
1738
2245
|
color: var(--muted-foreground);
|
|
1739
2246
|
}
|
|
@@ -1744,9 +2251,15 @@
|
|
|
1744
2251
|
--tw-translate-x: calc(100% - 2px);
|
|
1745
2252
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1746
2253
|
}
|
|
2254
|
+
.data-checked\:border-\(color\:--radio-checked\)[data-checked] {
|
|
2255
|
+
border-color: var(--radio-checked);
|
|
2256
|
+
}
|
|
1747
2257
|
.data-checked\:border-primary[data-checked] {
|
|
1748
2258
|
border-color: var(--primary);
|
|
1749
2259
|
}
|
|
2260
|
+
.data-checked\:bg-\(--switch-track-checked\)[data-checked] {
|
|
2261
|
+
background-color: var(--switch-track-checked);
|
|
2262
|
+
}
|
|
1750
2263
|
.data-checked\:bg-primary[data-checked] {
|
|
1751
2264
|
background-color: var(--primary);
|
|
1752
2265
|
}
|
|
@@ -1765,6 +2278,9 @@
|
|
|
1765
2278
|
.data-pressed\:text-accent-foreground[data-pressed] {
|
|
1766
2279
|
color: var(--accent-foreground);
|
|
1767
2280
|
}
|
|
2281
|
+
:is(.group-data-\[align\=end\]\/message\:\*\:data-slot\:self-end:is(:where(.group\/message)[data-align="end"] *) > *)[data-slot] {
|
|
2282
|
+
align-self: flex-end;
|
|
2283
|
+
}
|
|
1768
2284
|
.data-starting-style\:animate-toast-in[data-starting-style] {
|
|
1769
2285
|
animation: toast-in 200ms ease-out;
|
|
1770
2286
|
}
|
|
@@ -1775,8 +2291,8 @@
|
|
|
1775
2291
|
--tw-translate-x: 0px;
|
|
1776
2292
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1777
2293
|
}
|
|
1778
|
-
.data-unchecked\:bg-
|
|
1779
|
-
background-color: var(--
|
|
2294
|
+
.data-unchecked\:bg-\(--switch-track\)[data-unchecked] {
|
|
2295
|
+
background-color: var(--switch-track);
|
|
1780
2296
|
}
|
|
1781
2297
|
.data-\[active\=true\]\:z-10[data-active="true"] {
|
|
1782
2298
|
z-index: 10;
|
|
@@ -1784,6 +2300,16 @@
|
|
|
1784
2300
|
.data-\[active\=true\]\:border-ring[data-active="true"] {
|
|
1785
2301
|
border-color: var(--ring);
|
|
1786
2302
|
}
|
|
2303
|
+
.data-\[active\=true\]\:bg-sidebar-accent[data-active="true"] {
|
|
2304
|
+
background-color: var(--sidebar-accent);
|
|
2305
|
+
}
|
|
2306
|
+
.data-\[active\=true\]\:font-medium[data-active="true"] {
|
|
2307
|
+
--tw-font-weight: var(--font-weight-medium);
|
|
2308
|
+
font-weight: var(--font-weight-medium);
|
|
2309
|
+
}
|
|
2310
|
+
.data-\[active\=true\]\:text-sidebar-accent-foreground[data-active="true"] {
|
|
2311
|
+
color: var(--sidebar-accent-foreground);
|
|
2312
|
+
}
|
|
1787
2313
|
.data-\[active\=true\]\:ring-\[3px\][data-active="true"] {
|
|
1788
2314
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1789
2315
|
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 +2320,12 @@
|
|
|
1794
2320
|
--tw-ring-color: color-mix(in oklab, var(--ring) 50%, transparent);
|
|
1795
2321
|
}
|
|
1796
2322
|
}
|
|
2323
|
+
.data-\[align\=end\]\:flex-row-reverse[data-align="end"] {
|
|
2324
|
+
flex-direction: row-reverse;
|
|
2325
|
+
}
|
|
2326
|
+
.data-\[align\=end\]\:self-end[data-align="end"] {
|
|
2327
|
+
align-self: flex-end;
|
|
2328
|
+
}
|
|
1797
2329
|
.data-\[disabled\=true\]\:pointer-events-none[data-disabled="true"] {
|
|
1798
2330
|
pointer-events: none;
|
|
1799
2331
|
}
|
|
@@ -1849,11 +2381,11 @@
|
|
|
1849
2381
|
.data-\[placeholder\]\:text-muted-foreground[data-placeholder] {
|
|
1850
2382
|
color: var(--muted-foreground);
|
|
1851
2383
|
}
|
|
1852
|
-
.data-\[selected\=true\]\:bg-
|
|
1853
|
-
background-color: var(--
|
|
2384
|
+
.data-\[selected\=true\]\:bg-\(--menu-active-background\)[data-selected="true"] {
|
|
2385
|
+
background-color: var(--menu-active-background);
|
|
1854
2386
|
}
|
|
1855
|
-
.data-\[selected\=true\]\:text-
|
|
1856
|
-
color: var(--
|
|
2387
|
+
.data-\[selected\=true\]\:text-\(--menu-active-foreground\)[data-selected="true"] {
|
|
2388
|
+
color: var(--menu-active-foreground);
|
|
1857
2389
|
}
|
|
1858
2390
|
.data-\[side\=bottom\]\:-top-1[data-side="bottom"] {
|
|
1859
2391
|
top: calc(var(--spacing) * -1);
|
|
@@ -1873,6 +2405,57 @@
|
|
|
1873
2405
|
.data-\[size\=sm\]\:h-8[data-size="sm"] {
|
|
1874
2406
|
height: calc(var(--spacing) * 8);
|
|
1875
2407
|
}
|
|
2408
|
+
:is(.\*\:data-\[slot\=attachment\]\:flex-none > *)[data-slot="attachment"] {
|
|
2409
|
+
flex: none;
|
|
2410
|
+
}
|
|
2411
|
+
:is(.\*\:data-\[slot\=attachment\]\:snap-start > *)[data-slot="attachment"] {
|
|
2412
|
+
scroll-snap-align: start;
|
|
2413
|
+
}
|
|
2414
|
+
:is(.\*\:data-\[slot\=bubble-content\]\:rounded-none > *)[data-slot="bubble-content"] {
|
|
2415
|
+
border-radius: 0;
|
|
2416
|
+
}
|
|
2417
|
+
:is(.\*\:data-\[slot\=bubble-content\]\:border-border > *)[data-slot="bubble-content"] {
|
|
2418
|
+
border-color: var(--border);
|
|
2419
|
+
}
|
|
2420
|
+
:is(.\*\:data-\[slot\=bubble-content\]\:bg-\(--bubble-background\) > *)[data-slot="bubble-content"] {
|
|
2421
|
+
background-color: var(--bubble-background);
|
|
2422
|
+
}
|
|
2423
|
+
:is(.\*\:data-\[slot\=bubble-content\]\:bg-card > *)[data-slot="bubble-content"] {
|
|
2424
|
+
background-color: var(--card);
|
|
2425
|
+
}
|
|
2426
|
+
:is(.\*\:data-\[slot\=bubble-content\]\:bg-destructive\/10 > *)[data-slot="bubble-content"] {
|
|
2427
|
+
background-color: var(--destructive);
|
|
2428
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2429
|
+
background-color: color-mix(in oklab, var(--destructive) 10%, transparent);
|
|
2430
|
+
}
|
|
2431
|
+
}
|
|
2432
|
+
:is(.\*\:data-\[slot\=bubble-content\]\:bg-muted > *)[data-slot="bubble-content"] {
|
|
2433
|
+
background-color: var(--muted);
|
|
2434
|
+
}
|
|
2435
|
+
:is(.\*\:data-\[slot\=bubble-content\]\:bg-primary > *)[data-slot="bubble-content"] {
|
|
2436
|
+
background-color: var(--primary);
|
|
2437
|
+
}
|
|
2438
|
+
:is(.\*\:data-\[slot\=bubble-content\]\:bg-secondary > *)[data-slot="bubble-content"] {
|
|
2439
|
+
background-color: var(--secondary);
|
|
2440
|
+
}
|
|
2441
|
+
:is(.\*\:data-\[slot\=bubble-content\]\:bg-transparent > *)[data-slot="bubble-content"] {
|
|
2442
|
+
background-color: transparent;
|
|
2443
|
+
}
|
|
2444
|
+
:is(.\*\:data-\[slot\=bubble-content\]\:p-0 > *)[data-slot="bubble-content"] {
|
|
2445
|
+
padding: 0px;
|
|
2446
|
+
}
|
|
2447
|
+
:is(.\*\:data-\[slot\=bubble-content\]\:text-destructive > *)[data-slot="bubble-content"] {
|
|
2448
|
+
color: var(--destructive);
|
|
2449
|
+
}
|
|
2450
|
+
:is(.\*\:data-\[slot\=bubble-content\]\:text-foreground > *)[data-slot="bubble-content"] {
|
|
2451
|
+
color: var(--foreground);
|
|
2452
|
+
}
|
|
2453
|
+
:is(.\*\:data-\[slot\=bubble-content\]\:text-primary-foreground > *)[data-slot="bubble-content"] {
|
|
2454
|
+
color: var(--primary-foreground);
|
|
2455
|
+
}
|
|
2456
|
+
:is(.\*\:data-\[slot\=bubble-content\]\:text-secondary-foreground > *)[data-slot="bubble-content"] {
|
|
2457
|
+
color: var(--secondary-foreground);
|
|
2458
|
+
}
|
|
1876
2459
|
:is(.\*\*\:data-\[slot\=navigation-menu-link\]\:focus\:ring-0 *)[data-slot="navigation-menu-link"]:focus {
|
|
1877
2460
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1878
2461
|
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 +2464,31 @@
|
|
|
1881
2464
|
--tw-outline-style: none;
|
|
1882
2465
|
outline-style: none;
|
|
1883
2466
|
}
|
|
2467
|
+
:is(.group-data-\[orientation\=vertical\]\/attachment\:\*\:data-\[slot\=spinner\]\:size-6\!:is(:where(.group\/attachment)[data-orientation="vertical"] *) > *)[data-slot="spinner"] {
|
|
2468
|
+
width: calc(var(--spacing) * 6) !important;
|
|
2469
|
+
height: calc(var(--spacing) * 6) !important;
|
|
2470
|
+
}
|
|
2471
|
+
.data-\[state\=error\]\:border-destructive\/30[data-state="error"] {
|
|
2472
|
+
border-color: var(--destructive);
|
|
2473
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2474
|
+
border-color: color-mix(in oklab, var(--destructive) 30%, transparent);
|
|
2475
|
+
}
|
|
2476
|
+
}
|
|
2477
|
+
.data-\[state\=idle\]\:border-dashed[data-state="idle"] {
|
|
2478
|
+
--tw-border-style: dashed;
|
|
2479
|
+
border-style: dashed;
|
|
2480
|
+
}
|
|
2481
|
+
.data-\[state\=open\]\:opacity-100[data-state="open"] {
|
|
2482
|
+
opacity: 100%;
|
|
2483
|
+
}
|
|
2484
|
+
@media (hover: hover) {
|
|
2485
|
+
.data-\[state\=open\]\:hover\:bg-sidebar-accent[data-state="open"]:hover {
|
|
2486
|
+
background-color: var(--sidebar-accent);
|
|
2487
|
+
}
|
|
2488
|
+
.data-\[state\=open\]\:hover\:text-sidebar-accent-foreground[data-state="open"]:hover {
|
|
2489
|
+
color: var(--sidebar-accent-foreground);
|
|
2490
|
+
}
|
|
2491
|
+
}
|
|
1884
2492
|
.data-\[state\=selected\]\:bg-muted[data-state="selected"] {
|
|
1885
2493
|
background-color: var(--muted);
|
|
1886
2494
|
}
|
|
@@ -1896,6 +2504,9 @@
|
|
|
1896
2504
|
.data-\[variant\=destructive\]\:focus\:text-destructive[data-variant="destructive"]:focus {
|
|
1897
2505
|
color: var(--destructive);
|
|
1898
2506
|
}
|
|
2507
|
+
.data-\[variant\=ghost\]\:max-w-full[data-variant="ghost"] {
|
|
2508
|
+
max-width: 100%;
|
|
2509
|
+
}
|
|
1899
2510
|
.data-\[vaul-drawer-direction\=bottom\]\:inset-x-0[data-vaul-drawer-direction="bottom"] {
|
|
1900
2511
|
inset-inline: 0px;
|
|
1901
2512
|
}
|
|
@@ -1962,38 +2573,13 @@
|
|
|
1962
2573
|
border-bottom-style: var(--tw-border-style);
|
|
1963
2574
|
border-bottom-width: 1px;
|
|
1964
2575
|
}
|
|
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
2576
|
@media (width >= 40rem) {
|
|
1994
2577
|
.sm\:block {
|
|
1995
2578
|
display: block;
|
|
1996
2579
|
}
|
|
2580
|
+
.sm\:flex {
|
|
2581
|
+
display: flex;
|
|
2582
|
+
}
|
|
1997
2583
|
.sm\:max-w-lg {
|
|
1998
2584
|
max-width: var(--container-lg);
|
|
1999
2585
|
}
|
|
@@ -2029,6 +2615,12 @@
|
|
|
2029
2615
|
}
|
|
2030
2616
|
}
|
|
2031
2617
|
@media (width >= 48rem) {
|
|
2618
|
+
.md\:block {
|
|
2619
|
+
display: block;
|
|
2620
|
+
}
|
|
2621
|
+
.md\:flex {
|
|
2622
|
+
display: flex;
|
|
2623
|
+
}
|
|
2032
2624
|
.md\:hidden {
|
|
2033
2625
|
display: none;
|
|
2034
2626
|
}
|
|
@@ -2039,13 +2631,36 @@
|
|
|
2039
2631
|
font-size: var(--text-sm);
|
|
2040
2632
|
line-height: var(--tw-leading, var(--text-sm--line-height));
|
|
2041
2633
|
}
|
|
2634
|
+
.md\:opacity-0 {
|
|
2635
|
+
opacity: 0%;
|
|
2636
|
+
}
|
|
2637
|
+
.md\:peer-data-\[variant\=inset\]\:m-2:is(:where(.peer)[data-variant="inset"] ~ *) {
|
|
2638
|
+
margin: calc(var(--spacing) * 2);
|
|
2639
|
+
}
|
|
2640
|
+
.md\:peer-data-\[variant\=inset\]\:ml-0:is(:where(.peer)[data-variant="inset"] ~ *) {
|
|
2641
|
+
margin-left: 0px;
|
|
2642
|
+
}
|
|
2643
|
+
.md\:peer-data-\[variant\=inset\]\:rounded-xl:is(:where(.peer)[data-variant="inset"] ~ *) {
|
|
2644
|
+
border-radius: calc(var(--radius) * 1.4);
|
|
2645
|
+
}
|
|
2646
|
+
.md\:peer-data-\[variant\=inset\]\:shadow-sm:is(:where(.peer)[data-variant="inset"] ~ *) {
|
|
2647
|
+
--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));
|
|
2648
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2649
|
+
}
|
|
2650
|
+
.md\:peer-data-\[variant\=inset\]\:peer-data-\[state\=collapsed\]\:ml-2:is(:where(.peer)[data-variant="inset"] ~ *):is(:where(.peer)[data-state="collapsed"] ~ *) {
|
|
2651
|
+
margin-left: calc(var(--spacing) * 2);
|
|
2652
|
+
}
|
|
2653
|
+
.md\:after\:hidden::after {
|
|
2654
|
+
content: var(--tw-content);
|
|
2655
|
+
display: none;
|
|
2656
|
+
}
|
|
2042
2657
|
}
|
|
2043
2658
|
@media (prefers-color-scheme: dark) {
|
|
2044
|
-
.dark\:
|
|
2045
|
-
color: var(--
|
|
2046
|
-
|
|
2047
|
-
|
|
2048
|
-
|
|
2659
|
+
:is(.dark\:\*\:data-\[slot\=bubble-content\]\:bg-destructive\/20 > *)[data-slot="bubble-content"] {
|
|
2660
|
+
background-color: var(--destructive);
|
|
2661
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2662
|
+
background-color: color-mix(in oklab, var(--destructive) 20%, transparent);
|
|
2663
|
+
}
|
|
2049
2664
|
}
|
|
2050
2665
|
}
|
|
2051
2666
|
.data-open\:animate-accordion-down:where([data-open]:not([data-open='false'])) {
|
|
@@ -2054,17 +2669,17 @@
|
|
|
2054
2669
|
.data-open\:animate-in:where([data-open]:not([data-open='false'])) {
|
|
2055
2670
|
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
2671
|
}
|
|
2057
|
-
.data-open\:bg-
|
|
2058
|
-
background-color: var(--
|
|
2672
|
+
.data-open\:bg-\(--menu-active-background\):where([data-open]:not([data-open='false'])) {
|
|
2673
|
+
background-color: var(--menu-active-background);
|
|
2059
2674
|
}
|
|
2060
|
-
.data-open\:bg-
|
|
2061
|
-
background-color: var(--
|
|
2675
|
+
.data-open\:bg-\(--menu-active-background\)\/50:where([data-open]:not([data-open='false'])) {
|
|
2676
|
+
background-color: var(--menu-active-background);
|
|
2062
2677
|
@supports (color: color-mix(in lab, red, red)) {
|
|
2063
|
-
background-color: color-mix(in oklab, var(--
|
|
2678
|
+
background-color: color-mix(in oklab, var(--menu-active-background) 50%, transparent);
|
|
2064
2679
|
}
|
|
2065
2680
|
}
|
|
2066
|
-
.data-open\:text-
|
|
2067
|
-
color: var(--
|
|
2681
|
+
.data-open\:text-\(--menu-active-foreground\):where([data-open]:not([data-open='false'])) {
|
|
2682
|
+
color: var(--menu-active-foreground);
|
|
2068
2683
|
}
|
|
2069
2684
|
.data-open\:duration-300:where([data-open]:not([data-open='false'])) {
|
|
2070
2685
|
--tw-duration: 300ms;
|
|
@@ -2123,17 +2738,17 @@
|
|
|
2123
2738
|
.data-active\:border-border:where([data-active]:not([data-active='false'])) {
|
|
2124
2739
|
border-color: var(--border);
|
|
2125
2740
|
}
|
|
2126
|
-
.data-active\:bg-
|
|
2127
|
-
background-color: var(--
|
|
2741
|
+
.data-active\:bg-\(--menu-active-background\)\/50:where([data-active]:not([data-active='false'])) {
|
|
2742
|
+
background-color: var(--menu-active-background);
|
|
2128
2743
|
@supports (color: color-mix(in lab, red, red)) {
|
|
2129
|
-
background-color: color-mix(in oklab, var(--
|
|
2744
|
+
background-color: color-mix(in oklab, var(--menu-active-background) 50%, transparent);
|
|
2130
2745
|
}
|
|
2131
2746
|
}
|
|
2132
|
-
.data-active\:bg-
|
|
2133
|
-
background-color: var(--
|
|
2747
|
+
.data-active\:bg-card:where([data-active]:not([data-active='false'])) {
|
|
2748
|
+
background-color: var(--card);
|
|
2134
2749
|
}
|
|
2135
|
-
.data-active\:text-
|
|
2136
|
-
color: var(--
|
|
2750
|
+
.data-active\:text-\(--menu-active-foreground\):where([data-active]:not([data-active='false'])) {
|
|
2751
|
+
color: var(--menu-active-foreground);
|
|
2137
2752
|
}
|
|
2138
2753
|
.data-active\:shadow-sm:where([data-active]:not([data-active='false'])) {
|
|
2139
2754
|
--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 +2809,10 @@
|
|
|
2194
2809
|
.\[\&_svg\]\:shrink-0 svg {
|
|
2195
2810
|
flex-shrink: 0;
|
|
2196
2811
|
}
|
|
2812
|
+
.\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-3 svg:not([class*='size-']) {
|
|
2813
|
+
width: calc(var(--spacing) * 3);
|
|
2814
|
+
height: calc(var(--spacing) * 3);
|
|
2815
|
+
}
|
|
2197
2816
|
.\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-4 svg:not([class*='size-']) {
|
|
2198
2817
|
width: calc(var(--spacing) * 4);
|
|
2199
2818
|
height: calc(var(--spacing) * 4);
|
|
@@ -2202,6 +2821,14 @@
|
|
|
2202
2821
|
width: calc(var(--spacing) * 5);
|
|
2203
2822
|
height: calc(var(--spacing) * 5);
|
|
2204
2823
|
}
|
|
2824
|
+
.group-data-\[orientation\=vertical\]\/attachment\:\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-6:is(:where(.group\/attachment)[data-orientation="vertical"] *) svg:not([class*='size-']) {
|
|
2825
|
+
width: calc(var(--spacing) * 6);
|
|
2826
|
+
height: calc(var(--spacing) * 6);
|
|
2827
|
+
}
|
|
2828
|
+
.group-data-\[size\=xs\]\/attachment\:\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-3\.5:is(:where(.group\/attachment)[data-size="xs"] *) svg:not([class*='size-']) {
|
|
2829
|
+
width: calc(var(--spacing) * 3.5);
|
|
2830
|
+
height: calc(var(--spacing) * 3.5);
|
|
2831
|
+
}
|
|
2205
2832
|
.\[\&_tr\]\:border-b tr {
|
|
2206
2833
|
border-bottom-style: var(--tw-border-style);
|
|
2207
2834
|
border-bottom-width: 1px;
|
|
@@ -2222,12 +2849,99 @@
|
|
|
2222
2849
|
.\[\.border-t\]\:pt-6:is(.border-t) {
|
|
2223
2850
|
padding-top: calc(var(--spacing) * 6);
|
|
2224
2851
|
}
|
|
2852
|
+
.\[button\]\:text-left:is(button) {
|
|
2853
|
+
text-align: left;
|
|
2854
|
+
}
|
|
2855
|
+
.\[button\,a\]\:transition-colors:is(button, a) {
|
|
2856
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
2857
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
2858
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
2859
|
+
}
|
|
2860
|
+
.\[button\,a\]\:outline-none:is(button, a) {
|
|
2861
|
+
--tw-outline-style: none;
|
|
2862
|
+
outline-style: none;
|
|
2863
|
+
}
|
|
2864
|
+
.\[button\,a\]\:focus-visible\:border-ring:is(button, a):focus-visible {
|
|
2865
|
+
border-color: var(--ring);
|
|
2866
|
+
}
|
|
2867
|
+
.\[button\,a\]\:focus-visible\:ring-3:is(button, a):focus-visible {
|
|
2868
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
2869
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2870
|
+
}
|
|
2871
|
+
.\[button\,a\]\:focus-visible\:ring-ring\/50:is(button, a):focus-visible {
|
|
2872
|
+
--tw-ring-color: var(--ring);
|
|
2873
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2874
|
+
--tw-ring-color: color-mix(in oklab, var(--ring) 50%, transparent);
|
|
2875
|
+
}
|
|
2876
|
+
}
|
|
2877
|
+
:is(.\*\:\[img\]\:aspect-square > *):is(img) {
|
|
2878
|
+
aspect-ratio: 1 / 1;
|
|
2879
|
+
}
|
|
2880
|
+
:is(.\*\:\[img\]\:w-full > *):is(img) {
|
|
2881
|
+
width: 100%;
|
|
2882
|
+
}
|
|
2883
|
+
:is(.\*\:\[img\]\:object-cover > *):is(img) {
|
|
2884
|
+
object-fit: cover;
|
|
2885
|
+
}
|
|
2225
2886
|
.\[\&\>\*\]\:focus-visible\:relative > *:focus-visible {
|
|
2226
2887
|
position: relative;
|
|
2227
2888
|
}
|
|
2228
2889
|
.\[\&\>\*\]\:focus-visible\:z-10 > *:focus-visible {
|
|
2229
2890
|
z-index: 10;
|
|
2230
2891
|
}
|
|
2892
|
+
.\[\&\>\[data-slot\=bubble-content\]\:is\(button\,a\)\:hover\]\:bg-\(--bubble-hover-background\) > [data-slot=bubble-content]:is(button, a):hover {
|
|
2893
|
+
background-color: var(--bubble-hover-background);
|
|
2894
|
+
}
|
|
2895
|
+
.\[\&\>\[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 {
|
|
2896
|
+
background-color: var(--muted);
|
|
2897
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2898
|
+
background-color: color-mix(in oklch,var(--muted),var(--foreground) 5%);
|
|
2899
|
+
}
|
|
2900
|
+
}
|
|
2901
|
+
.\[\&\>\[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 {
|
|
2902
|
+
background-color: var(--secondary);
|
|
2903
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2904
|
+
background-color: color-mix(in oklch,var(--secondary),var(--foreground) 5%);
|
|
2905
|
+
}
|
|
2906
|
+
}
|
|
2907
|
+
.\[\&\>\[data-slot\=bubble-content\]\:is\(button\,a\)\:hover\]\:bg-destructive\/20 > [data-slot=bubble-content]:is(button, a):hover {
|
|
2908
|
+
background-color: var(--destructive);
|
|
2909
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2910
|
+
background-color: color-mix(in oklab, var(--destructive) 20%, transparent);
|
|
2911
|
+
}
|
|
2912
|
+
}
|
|
2913
|
+
.\[\&\>\[data-slot\=bubble-content\]\:is\(button\,a\)\:hover\]\:bg-muted > [data-slot=bubble-content]:is(button, a):hover {
|
|
2914
|
+
background-color: var(--muted);
|
|
2915
|
+
}
|
|
2916
|
+
.\[\&\>\[data-slot\=bubble-content\]\:is\(button\,a\)\:hover\]\:bg-primary\/80 > [data-slot=bubble-content]:is(button, a):hover {
|
|
2917
|
+
background-color: var(--primary);
|
|
2918
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2919
|
+
background-color: color-mix(in oklab, var(--primary) 80%, transparent);
|
|
2920
|
+
}
|
|
2921
|
+
}
|
|
2922
|
+
.\[\&\>\[data-slot\=bubble-content\]\:is\(button\,a\)\:hover\]\:text-foreground > [data-slot=bubble-content]:is(button, a):hover {
|
|
2923
|
+
color: var(--foreground);
|
|
2924
|
+
}
|
|
2925
|
+
@media (prefers-color-scheme: dark) {
|
|
2926
|
+
.dark\:\[\&\>\[data-slot\=bubble-content\]\:is\(button\,a\)\:hover\]\:bg-destructive\/30 > [data-slot=bubble-content]:is(button, a):hover {
|
|
2927
|
+
background-color: var(--destructive);
|
|
2928
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2929
|
+
background-color: color-mix(in oklab, var(--destructive) 30%, transparent);
|
|
2930
|
+
}
|
|
2931
|
+
}
|
|
2932
|
+
.dark\:\[\&\>\[data-slot\=bubble-content\]\:is\(button\,a\)\:hover\]\:bg-input\/30 > [data-slot=bubble-content]:is(button, a):hover {
|
|
2933
|
+
background-color: var(--input);
|
|
2934
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2935
|
+
background-color: color-mix(in oklab, var(--input) 30%, transparent);
|
|
2936
|
+
}
|
|
2937
|
+
}
|
|
2938
|
+
.dark\:\[\&\>\[data-slot\=bubble-content\]\:is\(button\,a\)\:hover\]\:bg-muted\/50 > [data-slot=bubble-content]:is(button, a):hover {
|
|
2939
|
+
background-color: var(--muted);
|
|
2940
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2941
|
+
background-color: color-mix(in oklab, var(--muted) 50%, transparent);
|
|
2942
|
+
}
|
|
2943
|
+
}
|
|
2944
|
+
}
|
|
2231
2945
|
.\[\&\>\[data-slot\=button\]\]\:shrink-0 > [data-slot=button] {
|
|
2232
2946
|
flex-shrink: 0;
|
|
2233
2947
|
}
|
|
@@ -2258,37 +2972,59 @@
|
|
|
2258
2972
|
.\[\&\>\[data-slot\=text\]\]\:text-muted-foreground > [data-slot=text] {
|
|
2259
2973
|
color: var(--muted-foreground);
|
|
2260
2974
|
}
|
|
2261
|
-
.\[
|
|
2975
|
+
.\[\&\>button\]\:hidden > button {
|
|
2976
|
+
display: none;
|
|
2977
|
+
}
|
|
2978
|
+
.\[\&\>button\]\:rounded-none > button {
|
|
2262
2979
|
border-radius: 0;
|
|
2263
2980
|
}
|
|
2264
|
-
.\[
|
|
2265
|
-
border-
|
|
2266
|
-
border-
|
|
2981
|
+
.\[\&\>button\]\:border > button {
|
|
2982
|
+
border-style: var(--tw-border-style);
|
|
2983
|
+
border-width: 1px;
|
|
2267
2984
|
}
|
|
2268
|
-
.\[
|
|
2269
|
-
border-
|
|
2270
|
-
border-bottom-right-radius: calc(var(--radius) * 0.8);
|
|
2985
|
+
.\[\&\>button\]\:border-\(--calendar-today-border\) > button {
|
|
2986
|
+
border-color: var(--calendar-today-border);
|
|
2271
2987
|
}
|
|
2272
|
-
.\[\&\>button\]\:bg-
|
|
2273
|
-
background-color: var(--
|
|
2988
|
+
.\[\&\>button\]\:bg-\(--calendar-range-background\) > button {
|
|
2989
|
+
background-color: var(--calendar-range-background);
|
|
2274
2990
|
}
|
|
2275
|
-
.\[\&\>button\]\:bg-
|
|
2276
|
-
background-color: var(--
|
|
2991
|
+
.\[\&\>button\]\:bg-\(--calendar-selected-background\) > button {
|
|
2992
|
+
background-color: var(--calendar-selected-background);
|
|
2277
2993
|
}
|
|
2278
|
-
.\[\&\>button\]\:
|
|
2279
|
-
color: var(--
|
|
2994
|
+
.\[\&\>button\]\:bg-\(--calendar-today-background\) > button {
|
|
2995
|
+
background-color: var(--calendar-today-background);
|
|
2280
2996
|
}
|
|
2281
|
-
.\[\&\>button\]\:text-
|
|
2282
|
-
color: var(--
|
|
2997
|
+
.\[\&\>button\]\:text-\(--calendar-range-foreground\) > button {
|
|
2998
|
+
color: var(--calendar-range-foreground);
|
|
2999
|
+
}
|
|
3000
|
+
.\[\&\>button\]\:text-\(--calendar-selected-foreground\) > button {
|
|
3001
|
+
color: var(--calendar-selected-foreground);
|
|
3002
|
+
}
|
|
3003
|
+
.\[\&\>button\]\:text-\(--calendar-today-foreground\) > button {
|
|
3004
|
+
color: var(--calendar-today-foreground);
|
|
2283
3005
|
}
|
|
2284
3006
|
@media (hover: hover) {
|
|
2285
|
-
.\[\&\>button\]\:hover\:bg-
|
|
2286
|
-
background-color: var(--
|
|
3007
|
+
.\[\&\>button\]\:hover\:bg-\(--calendar-selected-background\) > button:hover {
|
|
3008
|
+
background-color: var(--calendar-selected-background);
|
|
3009
|
+
}
|
|
3010
|
+
.\[\&\>button\]\:hover\:bg-\(--calendar-today-background\) > button:hover {
|
|
3011
|
+
background-color: var(--calendar-today-background);
|
|
3012
|
+
}
|
|
3013
|
+
.\[\&\>button\]\:hover\:text-\(--calendar-selected-foreground\) > button:hover {
|
|
3014
|
+
color: var(--calendar-selected-foreground);
|
|
3015
|
+
}
|
|
3016
|
+
.\[\&\>button\]\:hover\:text-\(--calendar-today-foreground\) > button:hover {
|
|
3017
|
+
color: var(--calendar-today-foreground);
|
|
2287
3018
|
}
|
|
2288
3019
|
}
|
|
2289
3020
|
.\[\&\>li\]\:mt-2 > li {
|
|
2290
3021
|
margin-top: calc(var(--spacing) * 2);
|
|
2291
3022
|
}
|
|
3023
|
+
.\[\&\>span\:last-child\]\:truncate > span:last-child {
|
|
3024
|
+
overflow: hidden;
|
|
3025
|
+
text-overflow: ellipsis;
|
|
3026
|
+
white-space: nowrap;
|
|
3027
|
+
}
|
|
2292
3028
|
.\[\&\>svg\]\:pointer-events-none > svg {
|
|
2293
3029
|
pointer-events: none;
|
|
2294
3030
|
}
|
|
@@ -2304,6 +3040,9 @@
|
|
|
2304
3040
|
width: calc(var(--spacing) * 4);
|
|
2305
3041
|
height: calc(var(--spacing) * 4);
|
|
2306
3042
|
}
|
|
3043
|
+
.\[\&\>svg\]\:shrink-0 > svg {
|
|
3044
|
+
flex-shrink: 0;
|
|
3045
|
+
}
|
|
2307
3046
|
.\[\&\>svg\]\:translate-y-0\.5 > svg {
|
|
2308
3047
|
--tw-translate-y: calc(var(--spacing) * 0.5);
|
|
2309
3048
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -2311,6 +3050,9 @@
|
|
|
2311
3050
|
.\[\&\>svg\]\:text-current > svg {
|
|
2312
3051
|
color: currentcolor;
|
|
2313
3052
|
}
|
|
3053
|
+
.\[\&\>svg\]\:text-sidebar-accent-foreground > svg {
|
|
3054
|
+
color: var(--sidebar-accent-foreground);
|
|
3055
|
+
}
|
|
2314
3056
|
.\[\&\>tr\]\:last\:border-b-0 > tr:last-child {
|
|
2315
3057
|
border-bottom-style: var(--tw-border-style);
|
|
2316
3058
|
border-bottom-width: 0px;
|
|
@@ -2324,6 +3066,18 @@
|
|
|
2324
3066
|
.\[\&\[data-panel-open\]\>svg\]\:rotate-180[data-panel-open] > svg {
|
|
2325
3067
|
rotate: 180deg;
|
|
2326
3068
|
}
|
|
3069
|
+
[data-side=left][data-collapsible=offcanvas] .\[\[data-side\=left\]\[data-collapsible\=offcanvas\]_\&\]\:-right-2 {
|
|
3070
|
+
right: calc(var(--spacing) * -2);
|
|
3071
|
+
}
|
|
3072
|
+
[data-side=left][data-state=collapsed] .\[\[data-side\=left\]\[data-state\=collapsed\]_\&\]\:cursor-e-resize {
|
|
3073
|
+
cursor: e-resize;
|
|
3074
|
+
}
|
|
3075
|
+
[data-side=right][data-collapsible=offcanvas] .\[\[data-side\=right\]\[data-collapsible\=offcanvas\]_\&\]\:-left-2 {
|
|
3076
|
+
left: calc(var(--spacing) * -2);
|
|
3077
|
+
}
|
|
3078
|
+
[data-side=right][data-state=collapsed] .\[\[data-side\=right\]\[data-state\=collapsed\]_\&\]\:cursor-w-resize {
|
|
3079
|
+
cursor: w-resize;
|
|
3080
|
+
}
|
|
2327
3081
|
}
|
|
2328
3082
|
@property --tw-animation-delay {
|
|
2329
3083
|
syntax: "*";
|
|
@@ -2410,6 +3164,7 @@
|
|
|
2410
3164
|
initial-value: 0;
|
|
2411
3165
|
}
|
|
2412
3166
|
:root {
|
|
3167
|
+
color-scheme: light;
|
|
2413
3168
|
--radius: 0.625rem;
|
|
2414
3169
|
--background: oklch(1 0 0);
|
|
2415
3170
|
--foreground: oklch(0.145 0 0);
|
|
@@ -2446,8 +3201,50 @@
|
|
|
2446
3201
|
--sidebar-accent-foreground: oklch(0.205 0 0);
|
|
2447
3202
|
--sidebar-border: oklch(0.922 0 0);
|
|
2448
3203
|
--sidebar-ring: oklch(0.708 0 0);
|
|
3204
|
+
--font-sans: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto,
|
|
3205
|
+
'Helvetica Neue', Arial, sans-serif;
|
|
3206
|
+
--background-image: none;
|
|
3207
|
+
--card-shadow: none;
|
|
3208
|
+
--shadow-color: oklch(0 0 0 / 10%);
|
|
3209
|
+
--overlay-background: oklch(0 0 0 / 50%);
|
|
3210
|
+
--switch-track: var(--input);
|
|
3211
|
+
--switch-track-checked: var(--primary);
|
|
3212
|
+
--switch-thumb: var(--card);
|
|
3213
|
+
--slider-track: var(--muted);
|
|
3214
|
+
--slider-range: var(--primary);
|
|
3215
|
+
--slider-thumb: var(--card);
|
|
3216
|
+
--radio-border: var(--input);
|
|
3217
|
+
--radio-checked: var(--primary);
|
|
3218
|
+
--progress-track: var(--muted);
|
|
3219
|
+
--progress-indicator: var(--primary);
|
|
3220
|
+
--pagination-active-background: var(--card);
|
|
3221
|
+
--pagination-active-border: var(--border);
|
|
3222
|
+
--pagination-active-radius: calc(var(--radius) * 0.8);
|
|
3223
|
+
--menu-hover-background: var(--accent);
|
|
3224
|
+
--menu-hover-foreground: var(--accent-foreground);
|
|
3225
|
+
--menu-active-background: var(--accent);
|
|
3226
|
+
--menu-active-foreground: var(--accent-foreground);
|
|
3227
|
+
--bubble-background: oklch(from var(--primary) 0.93 calc(c * 0.4) h);
|
|
3228
|
+
--bubble-hover-background: oklch(
|
|
3229
|
+
from var(--primary) 0.88 calc(c * 0.5) h
|
|
3230
|
+
);
|
|
3231
|
+
--calendar-day-hover-background: var(--accent);
|
|
3232
|
+
--calendar-day-hover-foreground: var(--accent-foreground);
|
|
3233
|
+
--calendar-selected-background: var(--primary);
|
|
3234
|
+
--calendar-selected-foreground: var(--primary-foreground);
|
|
3235
|
+
--calendar-today-background: var(--accent);
|
|
3236
|
+
--calendar-today-foreground: var(--accent-foreground);
|
|
3237
|
+
--calendar-today-border: var(--primary);
|
|
3238
|
+
--calendar-range-background: var(--accent);
|
|
3239
|
+
--calendar-range-foreground: var(--accent-foreground);
|
|
3240
|
+
--flex-gap: 12px;
|
|
3241
|
+
--flex-gap-sm: calc(var(--flex-gap) * 0.67);
|
|
3242
|
+
--flex-gap-md: calc(var(--flex-gap) * 1.33);
|
|
3243
|
+
--flex-gap-lg: calc(var(--flex-gap) * 2);
|
|
3244
|
+
--grid-gap: 16px;
|
|
2449
3245
|
}
|
|
2450
3246
|
[data-pactor-theme='dark'] {
|
|
3247
|
+
color-scheme: dark;
|
|
2451
3248
|
--background: oklch(0.145 0 0);
|
|
2452
3249
|
--foreground: oklch(0.985 0 0);
|
|
2453
3250
|
--card: oklch(0.205 0 0);
|
|
@@ -2483,6 +3280,62 @@
|
|
|
2483
3280
|
--sidebar-accent-foreground: oklch(0.985 0 0);
|
|
2484
3281
|
--sidebar-border: oklch(1 0 0 / 10%);
|
|
2485
3282
|
--sidebar-ring: oklch(0.556 0 0);
|
|
3283
|
+
--bubble-background: oklch(from var(--primary) 0.3 calc(c * 0.4) h);
|
|
3284
|
+
--bubble-hover-background: oklch(
|
|
3285
|
+
from var(--primary) 0.35 calc(c * 0.5) h
|
|
3286
|
+
);
|
|
3287
|
+
}
|
|
3288
|
+
@media (prefers-color-scheme: dark) {
|
|
3289
|
+
:root:not([data-pactor-theme='light']):not([data-pactor-theme='dark']) {
|
|
3290
|
+
color-scheme: dark;
|
|
3291
|
+
--background: oklch(0.145 0 0);
|
|
3292
|
+
--foreground: oklch(0.985 0 0);
|
|
3293
|
+
--card: oklch(0.205 0 0);
|
|
3294
|
+
--card-foreground: oklch(0.985 0 0);
|
|
3295
|
+
--popover: oklch(0.205 0 0);
|
|
3296
|
+
--popover-foreground: oklch(0.985 0 0);
|
|
3297
|
+
--primary: oklch(0.922 0 0);
|
|
3298
|
+
--primary-foreground: oklch(0.205 0 0);
|
|
3299
|
+
--secondary: oklch(0.269 0 0);
|
|
3300
|
+
--secondary-foreground: oklch(0.985 0 0);
|
|
3301
|
+
--muted: oklch(0.269 0 0);
|
|
3302
|
+
--muted-foreground: oklch(0.708 0 0);
|
|
3303
|
+
--accent: oklch(0.269 0 0);
|
|
3304
|
+
--accent-foreground: oklch(0.985 0 0);
|
|
3305
|
+
--destructive: oklch(0.704 0.191 22.216);
|
|
3306
|
+
--destructive-foreground: oklch(0.985 0 0);
|
|
3307
|
+
--success: oklch(0.696 0.17 162.48);
|
|
3308
|
+
--warning: oklch(0.769 0.188 70.08);
|
|
3309
|
+
--info: oklch(0.623 0.214 259.815);
|
|
3310
|
+
--border: oklch(1 0 0 / 10%);
|
|
3311
|
+
--input: oklch(1 0 0 / 15%);
|
|
3312
|
+
--ring: oklch(0.556 0 0);
|
|
3313
|
+
--chart-1: oklch(0.488 0.243 264.376);
|
|
3314
|
+
--chart-2: oklch(0.696 0.17 162.48);
|
|
3315
|
+
--chart-3: oklch(0.769 0.188 70.08);
|
|
3316
|
+
--chart-4: oklch(0.627 0.265 303.9);
|
|
3317
|
+
--chart-5: oklch(0.645 0.246 16.439);
|
|
3318
|
+
--sidebar: oklch(0.205 0 0);
|
|
3319
|
+
--sidebar-foreground: oklch(0.985 0 0);
|
|
3320
|
+
--sidebar-primary: oklch(0.488 0.243 264.376);
|
|
3321
|
+
--sidebar-primary-foreground: oklch(0.985 0 0);
|
|
3322
|
+
--sidebar-accent: oklch(0.269 0 0);
|
|
3323
|
+
--sidebar-accent-foreground: oklch(0.985 0 0);
|
|
3324
|
+
--sidebar-border: oklch(1 0 0 / 10%);
|
|
3325
|
+
--sidebar-ring: oklch(0.556 0 0);
|
|
3326
|
+
--bubble-background: oklch(from var(--primary) 0.3 calc(c * 0.4) h);
|
|
3327
|
+
--bubble-hover-background: oklch(
|
|
3328
|
+
from var(--primary) 0.35 calc(c * 0.5) h
|
|
3329
|
+
);
|
|
3330
|
+
}
|
|
3331
|
+
}
|
|
3332
|
+
@keyframes shimmer {
|
|
3333
|
+
0% {
|
|
3334
|
+
background-position: 200% 0;
|
|
3335
|
+
}
|
|
3336
|
+
100% {
|
|
3337
|
+
background-position: -200% 0;
|
|
3338
|
+
}
|
|
2486
3339
|
}
|
|
2487
3340
|
@layer base {
|
|
2488
3341
|
* {
|
|
@@ -2495,6 +3348,8 @@
|
|
|
2495
3348
|
body {
|
|
2496
3349
|
background-color: var(--background);
|
|
2497
3350
|
color: var(--foreground);
|
|
3351
|
+
background-image: var(--background-image);
|
|
3352
|
+
font-family: var(--font-sans);
|
|
2498
3353
|
}
|
|
2499
3354
|
}
|
|
2500
3355
|
@property --tw-translate-x {
|
|
@@ -2532,6 +3387,11 @@
|
|
|
2532
3387
|
syntax: "*";
|
|
2533
3388
|
inherits: false;
|
|
2534
3389
|
}
|
|
3390
|
+
@property --tw-scroll-snap-strictness {
|
|
3391
|
+
syntax: "*";
|
|
3392
|
+
inherits: false;
|
|
3393
|
+
initial-value: proximity;
|
|
3394
|
+
}
|
|
2535
3395
|
@property --tw-space-y-reverse {
|
|
2536
3396
|
syntax: "*";
|
|
2537
3397
|
inherits: false;
|
|
@@ -2805,6 +3665,7 @@
|
|
|
2805
3665
|
--tw-rotate-z: initial;
|
|
2806
3666
|
--tw-skew-x: initial;
|
|
2807
3667
|
--tw-skew-y: initial;
|
|
3668
|
+
--tw-scroll-snap-strictness: proximity;
|
|
2808
3669
|
--tw-space-y-reverse: 0;
|
|
2809
3670
|
--tw-border-style: solid;
|
|
2810
3671
|
--tw-leading: initial;
|