lynote-ui 0.0.5 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/style.css +704 -693
- package/package.json +10 -1
package/dist/style.css
CHANGED
|
@@ -686,6 +686,15 @@
|
|
|
686
686
|
overflow: hidden;
|
|
687
687
|
}
|
|
688
688
|
|
|
689
|
+
.no-scrollbar {
|
|
690
|
+
-ms-overflow-style: none;
|
|
691
|
+
scrollbar-width: none;
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
.no-scrollbar::-webkit-scrollbar {
|
|
695
|
+
display: none;
|
|
696
|
+
}
|
|
697
|
+
|
|
689
698
|
.block {
|
|
690
699
|
display: block;
|
|
691
700
|
}
|
|
@@ -2425,10 +2434,6 @@
|
|
|
2425
2434
|
opacity: .5;
|
|
2426
2435
|
}
|
|
2427
2436
|
|
|
2428
|
-
.group-has-data-horizontal\/field\:text-balance:is(:where(.group\/field):has([data-horizontal]) *) {
|
|
2429
|
-
text-wrap: balance;
|
|
2430
|
-
}
|
|
2431
|
-
|
|
2432
2437
|
.group-has-data-\[sidebar\=menu-action\]\/menu-item\:pr-8:is(:where(.group\/menu-item):has([data-sidebar="menu-action"]) *) {
|
|
2433
2438
|
padding-right: calc(var(--spacing) * 8);
|
|
2434
2439
|
}
|
|
@@ -2456,6 +2461,10 @@
|
|
|
2456
2461
|
align-self: flex-start;
|
|
2457
2462
|
}
|
|
2458
2463
|
|
|
2464
|
+
.group-has-data-horizontal\/field\:text-balance:is(:where(.group\/field):has(:where([data-orientation="horizontal"])) *) {
|
|
2465
|
+
text-wrap: balance;
|
|
2466
|
+
}
|
|
2467
|
+
|
|
2459
2468
|
.group-has-\[\>input\]\/input-group\:pt-2:is(:where(.group\/input-group):has( > input) *) {
|
|
2460
2469
|
padding-top: calc(var(--spacing) * 2);
|
|
2461
2470
|
}
|
|
@@ -2480,34 +2489,10 @@
|
|
|
2480
2489
|
display: flex;
|
|
2481
2490
|
}
|
|
2482
2491
|
|
|
2483
|
-
.group-data-
|
|
2484
|
-
height: calc(var(--spacing) * 8);
|
|
2485
|
-
}
|
|
2486
|
-
|
|
2487
|
-
.group-data-open\/navigation-menu-trigger\:rotate-180:is(:where(.group\/navigation-menu-trigger)[data-open] *), .group-data-popup-open\/navigation-menu-trigger\:rotate-180:is(:where(.group\/navigation-menu-trigger)[data-popup-open] *) {
|
|
2492
|
+
.group-data-popup-open\/navigation-menu-trigger\:rotate-180:is(:where(.group\/navigation-menu-trigger)[data-popup-open] *) {
|
|
2488
2493
|
rotate: 180deg;
|
|
2489
2494
|
}
|
|
2490
2495
|
|
|
2491
|
-
.group-data-selected\/command-item\:text-foreground:is(:where(.group\/command-item)[data-selected] *) {
|
|
2492
|
-
color: var(--foreground);
|
|
2493
|
-
}
|
|
2494
|
-
|
|
2495
|
-
.group-data-vertical\/tabs\:h-fit:is(:where(.group\/tabs)[data-vertical] *) {
|
|
2496
|
-
height: fit-content;
|
|
2497
|
-
}
|
|
2498
|
-
|
|
2499
|
-
.group-data-vertical\/tabs\:w-full:is(:where(.group\/tabs)[data-vertical] *) {
|
|
2500
|
-
width: 100%;
|
|
2501
|
-
}
|
|
2502
|
-
|
|
2503
|
-
.group-data-vertical\/tabs\:flex-col:is(:where(.group\/tabs)[data-vertical] *) {
|
|
2504
|
-
flex-direction: column;
|
|
2505
|
-
}
|
|
2506
|
-
|
|
2507
|
-
.group-data-vertical\/tabs\:justify-start:is(:where(.group\/tabs)[data-vertical] *) {
|
|
2508
|
-
justify-content: flex-start;
|
|
2509
|
-
}
|
|
2510
|
-
|
|
2511
2496
|
.group-data-\[checked\=true\]\/command-item\:opacity-100:is(:where(.group\/command-item)[data-checked="true"] *) {
|
|
2512
2497
|
opacity: 1;
|
|
2513
2498
|
}
|
|
@@ -2768,6 +2753,34 @@
|
|
|
2768
2753
|
transition-duration: .3s;
|
|
2769
2754
|
}
|
|
2770
2755
|
|
|
2756
|
+
.group-data-open\/navigation-menu-trigger\:rotate-180:is(:is(:where(.group\/navigation-menu-trigger):where([data-state="open"]), :where(.group\/navigation-menu-trigger):where([data-open]:not([data-open="false"]))) *) {
|
|
2757
|
+
rotate: 180deg;
|
|
2758
|
+
}
|
|
2759
|
+
|
|
2760
|
+
.group-data-selected\/command-item\:text-foreground:is(:where(.group\/command-item):where([data-selected="true"]) *) {
|
|
2761
|
+
color: var(--foreground);
|
|
2762
|
+
}
|
|
2763
|
+
|
|
2764
|
+
.group-data-horizontal\/tabs\:h-8:is(:where(.group\/tabs):where([data-orientation="horizontal"]) *) {
|
|
2765
|
+
height: calc(var(--spacing) * 8);
|
|
2766
|
+
}
|
|
2767
|
+
|
|
2768
|
+
.group-data-vertical\/tabs\:h-fit:is(:where(.group\/tabs):where([data-orientation="vertical"]) *) {
|
|
2769
|
+
height: fit-content;
|
|
2770
|
+
}
|
|
2771
|
+
|
|
2772
|
+
.group-data-vertical\/tabs\:w-full:is(:where(.group\/tabs):where([data-orientation="vertical"]) *) {
|
|
2773
|
+
width: 100%;
|
|
2774
|
+
}
|
|
2775
|
+
|
|
2776
|
+
.group-data-vertical\/tabs\:flex-col:is(:where(.group\/tabs):where([data-orientation="vertical"]) *) {
|
|
2777
|
+
flex-direction: column;
|
|
2778
|
+
}
|
|
2779
|
+
|
|
2780
|
+
.group-data-vertical\/tabs\:justify-start:is(:where(.group\/tabs):where([data-orientation="vertical"]) *) {
|
|
2781
|
+
justify-content: flex-start;
|
|
2782
|
+
}
|
|
2783
|
+
|
|
2771
2784
|
@media (hover: hover) {
|
|
2772
2785
|
.peer-hover\/menu-button\:text-sidebar-accent-foreground:is(:where(.peer\/menu-button):hover ~ *) {
|
|
2773
2786
|
color: var(--sidebar-accent-foreground);
|
|
@@ -2782,10 +2795,6 @@
|
|
|
2782
2795
|
opacity: .5;
|
|
2783
2796
|
}
|
|
2784
2797
|
|
|
2785
|
-
.peer-data-active\/menu-button\:text-sidebar-accent-foreground:is(:where(.peer\/menu-button)[data-active] ~ *) {
|
|
2786
|
-
color: var(--sidebar-accent-foreground);
|
|
2787
|
-
}
|
|
2788
|
-
|
|
2789
2798
|
.peer-data-\[size\=default\]\/menu-button\:top-1\.5:is(:where(.peer\/menu-button)[data-size="default"] ~ *) {
|
|
2790
2799
|
top: calc(var(--spacing) * 1.5);
|
|
2791
2800
|
}
|
|
@@ -2798,6 +2807,10 @@
|
|
|
2798
2807
|
top: calc(var(--spacing) * 1);
|
|
2799
2808
|
}
|
|
2800
2809
|
|
|
2810
|
+
.peer-data-active\/menu-button\:text-sidebar-accent-foreground:is(:is(:where(.peer\/menu-button):where([data-state="active"]), :where(.peer\/menu-button):where([data-active]:not([data-active="false"]))) ~ *) {
|
|
2811
|
+
color: var(--sidebar-accent-foreground);
|
|
2812
|
+
}
|
|
2813
|
+
|
|
2801
2814
|
.selection\:bg-primary ::selection {
|
|
2802
2815
|
background-color: var(--primary);
|
|
2803
2816
|
}
|
|
@@ -2963,41 +2976,41 @@
|
|
|
2963
2976
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
2964
2977
|
}
|
|
2965
2978
|
|
|
2966
|
-
.group-data
|
|
2979
|
+
.group-data-\[collapsible\=offcanvas\]\:after\:left-full:is(:where(.group)[data-collapsible="offcanvas"] *):after {
|
|
2980
|
+
content: var(--tw-content);
|
|
2981
|
+
left: 100%;
|
|
2982
|
+
}
|
|
2983
|
+
|
|
2984
|
+
.group-data-horizontal\/tabs\:after\:inset-x-0:is(:where(.group\/tabs):where([data-orientation="horizontal"]) *):after {
|
|
2967
2985
|
content: var(--tw-content);
|
|
2968
2986
|
inset-inline: calc(var(--spacing) * 0);
|
|
2969
2987
|
}
|
|
2970
2988
|
|
|
2971
|
-
.group-data-horizontal\/tabs\:after\:bottom-\[-5px\]:is(:where(.group\/tabs)[data-horizontal] *):after {
|
|
2989
|
+
.group-data-horizontal\/tabs\:after\:bottom-\[-5px\]:is(:where(.group\/tabs):where([data-orientation="horizontal"]) *):after {
|
|
2972
2990
|
content: var(--tw-content);
|
|
2973
2991
|
bottom: -5px;
|
|
2974
2992
|
}
|
|
2975
2993
|
|
|
2976
|
-
.group-data-horizontal\/tabs\:after\:h-0\.5:is(:where(.group\/tabs)[data-horizontal] *):after {
|
|
2994
|
+
.group-data-horizontal\/tabs\:after\:h-0\.5:is(:where(.group\/tabs):where([data-orientation="horizontal"]) *):after {
|
|
2977
2995
|
content: var(--tw-content);
|
|
2978
2996
|
height: calc(var(--spacing) * .5);
|
|
2979
2997
|
}
|
|
2980
2998
|
|
|
2981
|
-
.group-data-vertical\/tabs\:after\:inset-y-0:is(:where(.group\/tabs)[data-vertical] *):after {
|
|
2999
|
+
.group-data-vertical\/tabs\:after\:inset-y-0:is(:where(.group\/tabs):where([data-orientation="vertical"]) *):after {
|
|
2982
3000
|
content: var(--tw-content);
|
|
2983
3001
|
inset-block: calc(var(--spacing) * 0);
|
|
2984
3002
|
}
|
|
2985
3003
|
|
|
2986
|
-
.group-data-vertical\/tabs\:after\:-right-1:is(:where(.group\/tabs)[data-vertical] *):after {
|
|
3004
|
+
.group-data-vertical\/tabs\:after\:-right-1:is(:where(.group\/tabs):where([data-orientation="vertical"]) *):after {
|
|
2987
3005
|
content: var(--tw-content);
|
|
2988
3006
|
right: calc(var(--spacing) * -1);
|
|
2989
3007
|
}
|
|
2990
3008
|
|
|
2991
|
-
.group-data-vertical\/tabs\:after\:w-0\.5:is(:where(.group\/tabs)[data-vertical] *):after {
|
|
3009
|
+
.group-data-vertical\/tabs\:after\:w-0\.5:is(:where(.group\/tabs):where([data-orientation="vertical"]) *):after {
|
|
2992
3010
|
content: var(--tw-content);
|
|
2993
3011
|
width: calc(var(--spacing) * .5);
|
|
2994
3012
|
}
|
|
2995
3013
|
|
|
2996
|
-
.group-data-\[collapsible\=offcanvas\]\:after\:left-full:is(:where(.group)[data-collapsible="offcanvas"] *):after {
|
|
2997
|
-
content: var(--tw-content);
|
|
2998
|
-
left: 100%;
|
|
2999
|
-
}
|
|
3000
|
-
|
|
3001
3014
|
.first\:rounded-l-md:first-child {
|
|
3002
3015
|
border-top-left-radius: calc(var(--radius) * .8);
|
|
3003
3016
|
border-bottom-left-radius: calc(var(--radius) * .8);
|
|
@@ -3376,26 +3389,6 @@
|
|
|
3376
3389
|
}
|
|
3377
3390
|
}
|
|
3378
3391
|
|
|
3379
|
-
.has-data-checked\:border-primary\/30:has([data-checked]) {
|
|
3380
|
-
border-color: var(--primary);
|
|
3381
|
-
}
|
|
3382
|
-
|
|
3383
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
3384
|
-
.has-data-checked\:border-primary\/30:has([data-checked]) {
|
|
3385
|
-
border-color: color-mix(in oklab, var(--primary) 30%, transparent);
|
|
3386
|
-
}
|
|
3387
|
-
}
|
|
3388
|
-
|
|
3389
|
-
.has-data-checked\:bg-primary\/5:has([data-checked]) {
|
|
3390
|
-
background-color: var(--primary);
|
|
3391
|
-
}
|
|
3392
|
-
|
|
3393
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
3394
|
-
.has-data-checked\:bg-primary\/5:has([data-checked]) {
|
|
3395
|
-
background-color: color-mix(in oklab, var(--primary) 5%, transparent);
|
|
3396
|
-
}
|
|
3397
|
-
}
|
|
3398
|
-
|
|
3399
3392
|
.has-data-\[icon\=inline-end\]\:pr-1\.5:has([data-icon="inline-end"]) {
|
|
3400
3393
|
padding-right: calc(var(--spacing) * 1.5);
|
|
3401
3394
|
}
|
|
@@ -3472,6 +3465,26 @@
|
|
|
3472
3465
|
background-color: var(--sidebar);
|
|
3473
3466
|
}
|
|
3474
3467
|
|
|
3468
|
+
.has-data-checked\:border-primary\/30:has(:where([data-state="checked"]), :where([data-checked]:not([data-checked="false"]))) {
|
|
3469
|
+
border-color: var(--primary);
|
|
3470
|
+
}
|
|
3471
|
+
|
|
3472
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3473
|
+
.has-data-checked\:border-primary\/30:has(:where([data-state="checked"]), :where([data-checked]:not([data-checked="false"]))) {
|
|
3474
|
+
border-color: color-mix(in oklab, var(--primary) 30%, transparent);
|
|
3475
|
+
}
|
|
3476
|
+
}
|
|
3477
|
+
|
|
3478
|
+
.has-data-checked\:bg-primary\/5:has(:where([data-state="checked"]), :where([data-checked]:not([data-checked="false"]))) {
|
|
3479
|
+
background-color: var(--primary);
|
|
3480
|
+
}
|
|
3481
|
+
|
|
3482
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3483
|
+
.has-data-checked\:bg-primary\/5:has(:where([data-state="checked"]), :where([data-checked]:not([data-checked="false"]))) {
|
|
3484
|
+
background-color: color-mix(in oklab, var(--primary) 5%, transparent);
|
|
3485
|
+
}
|
|
3486
|
+
}
|
|
3487
|
+
|
|
3475
3488
|
.has-\[\[data-slot\=input-group-control\]\:focus-visible\]\:border-ring:has([data-slot="input-group-control"]:focus-visible) {
|
|
3476
3489
|
border-color: var(--ring);
|
|
3477
3490
|
}
|
|
@@ -3702,482 +3715,182 @@
|
|
|
3702
3715
|
flex-direction: column;
|
|
3703
3716
|
}
|
|
3704
3717
|
|
|
3705
|
-
.data-
|
|
3706
|
-
|
|
3718
|
+
.data-empty\:p-0[data-empty] {
|
|
3719
|
+
padding: calc(var(--spacing) * 0);
|
|
3707
3720
|
}
|
|
3708
3721
|
|
|
3709
|
-
.data-
|
|
3710
|
-
|
|
3722
|
+
.data-ending-style\:h-0[data-ending-style] {
|
|
3723
|
+
height: calc(var(--spacing) * 0);
|
|
3711
3724
|
}
|
|
3712
3725
|
|
|
3713
|
-
|
|
3714
|
-
|
|
3715
|
-
|
|
3716
|
-
|
|
3726
|
+
.data-ending-style\:scale-90[data-ending-style] {
|
|
3727
|
+
--tw-scale-x: 90%;
|
|
3728
|
+
--tw-scale-y: 90%;
|
|
3729
|
+
--tw-scale-z: 90%;
|
|
3730
|
+
scale: var(--tw-scale-x) var(--tw-scale-y);
|
|
3717
3731
|
}
|
|
3718
3732
|
|
|
3719
|
-
.data-
|
|
3720
|
-
|
|
3733
|
+
.data-ending-style\:opacity-0[data-ending-style] {
|
|
3734
|
+
opacity: 0;
|
|
3721
3735
|
}
|
|
3722
3736
|
|
|
3723
|
-
.data-
|
|
3724
|
-
--tw-
|
|
3725
|
-
|
|
3737
|
+
.data-ending-style\:duration-150[data-ending-style] {
|
|
3738
|
+
--tw-duration: .15s;
|
|
3739
|
+
transition-duration: .15s;
|
|
3726
3740
|
}
|
|
3727
3741
|
|
|
3728
|
-
.data-
|
|
3729
|
-
color: var(--
|
|
3742
|
+
.data-highlighted\:bg-accent[data-highlighted] {
|
|
3743
|
+
background-color: var(--accent);
|
|
3730
3744
|
}
|
|
3731
3745
|
|
|
3732
|
-
.data-
|
|
3733
|
-
color: var(--
|
|
3746
|
+
.data-highlighted\:text-accent-foreground[data-highlighted], :is(.not-data-\[variant\=destructive\]\:data-highlighted\:\*\*\:text-accent-foreground:not([data-variant="destructive"])[data-highlighted] *) {
|
|
3747
|
+
color: var(--accent-foreground);
|
|
3734
3748
|
}
|
|
3735
3749
|
|
|
3736
|
-
.
|
|
3737
|
-
|
|
3738
|
-
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
3750
|
+
.data-inset\:pl-7[data-inset] {
|
|
3751
|
+
padding-left: calc(var(--spacing) * 7);
|
|
3739
3752
|
}
|
|
3740
3753
|
|
|
3741
|
-
.
|
|
3742
|
-
|
|
3754
|
+
.data-instant\:transition-none[data-instant] {
|
|
3755
|
+
transition-property: none;
|
|
3743
3756
|
}
|
|
3744
3757
|
|
|
3745
|
-
.
|
|
3746
|
-
--
|
|
3747
|
-
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
3758
|
+
.data-placeholder\:text-muted-foreground[data-placeholder] {
|
|
3759
|
+
color: var(--muted-foreground);
|
|
3748
3760
|
}
|
|
3749
3761
|
|
|
3750
|
-
.
|
|
3751
|
-
|
|
3752
|
-
opacity: 1;
|
|
3762
|
+
.data-popup-open\:bg-accent[data-popup-open] {
|
|
3763
|
+
background-color: var(--accent);
|
|
3753
3764
|
}
|
|
3754
3765
|
|
|
3755
|
-
|
|
3756
|
-
|
|
3757
|
-
background-color: var(--muted);
|
|
3758
|
-
}
|
|
3766
|
+
.data-popup-open\:bg-muted\/50[data-popup-open] {
|
|
3767
|
+
background-color: var(--muted);
|
|
3759
3768
|
}
|
|
3760
3769
|
|
|
3761
|
-
|
|
3762
|
-
|
|
3770
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3771
|
+
.data-popup-open\:bg-muted\/50[data-popup-open] {
|
|
3772
|
+
background-color: color-mix(in oklab, var(--muted) 50%, transparent);
|
|
3773
|
+
}
|
|
3763
3774
|
}
|
|
3764
3775
|
|
|
3765
|
-
.data-
|
|
3766
|
-
|
|
3776
|
+
.data-popup-open\:text-accent-foreground[data-popup-open] {
|
|
3777
|
+
color: var(--accent-foreground);
|
|
3767
3778
|
}
|
|
3768
3779
|
|
|
3769
|
-
|
|
3770
|
-
|
|
3780
|
+
@media (hover: hover) {
|
|
3781
|
+
.data-popup-open\:hover\:bg-muted[data-popup-open]:hover {
|
|
3782
|
+
background-color: var(--muted);
|
|
3783
|
+
}
|
|
3771
3784
|
}
|
|
3772
3785
|
|
|
3773
|
-
.data-
|
|
3774
|
-
color:
|
|
3786
|
+
.data-pressed\:bg-transparent[data-pressed] {
|
|
3787
|
+
background-color: #0000;
|
|
3775
3788
|
}
|
|
3776
3789
|
|
|
3777
|
-
|
|
3778
|
-
|
|
3779
|
-
|
|
3790
|
+
:is(.\*\:data-slot\:rounded-r-none > *)[data-slot] {
|
|
3791
|
+
border-top-right-radius: 0;
|
|
3792
|
+
border-bottom-right-radius: 0;
|
|
3780
3793
|
}
|
|
3781
3794
|
|
|
3782
|
-
|
|
3783
|
-
|
|
3795
|
+
:is(.\*\:data-slot\:rounded-b-none > *)[data-slot] {
|
|
3796
|
+
border-bottom-right-radius: 0;
|
|
3797
|
+
border-bottom-left-radius: 0;
|
|
3784
3798
|
}
|
|
3785
3799
|
|
|
3786
|
-
.data-
|
|
3787
|
-
|
|
3800
|
+
.data-starting-style\:h-0[data-starting-style] {
|
|
3801
|
+
height: calc(var(--spacing) * 0);
|
|
3788
3802
|
}
|
|
3789
3803
|
|
|
3790
|
-
.data-
|
|
3791
|
-
|
|
3804
|
+
.data-starting-style\:scale-90[data-starting-style] {
|
|
3805
|
+
--tw-scale-x: 90%;
|
|
3806
|
+
--tw-scale-y: 90%;
|
|
3807
|
+
--tw-scale-z: 90%;
|
|
3808
|
+
scale: var(--tw-scale-x) var(--tw-scale-y);
|
|
3792
3809
|
}
|
|
3793
3810
|
|
|
3794
|
-
.data-
|
|
3795
|
-
|
|
3811
|
+
.data-starting-style\:opacity-0[data-starting-style] {
|
|
3812
|
+
opacity: 0;
|
|
3796
3813
|
}
|
|
3797
3814
|
|
|
3798
|
-
.data
|
|
3799
|
-
|
|
3815
|
+
.data-\[active\=true\]\:z-10[data-active="true"] {
|
|
3816
|
+
z-index: 10;
|
|
3800
3817
|
}
|
|
3801
3818
|
|
|
3802
|
-
.
|
|
3803
|
-
|
|
3819
|
+
.data-\[active\=true\]\:border-ring[data-active="true"] {
|
|
3820
|
+
border-color: var(--ring);
|
|
3804
3821
|
}
|
|
3805
3822
|
|
|
3806
|
-
.
|
|
3807
|
-
--tw-
|
|
3823
|
+
.data-\[active\=true\]\:ring-\[3px\][data-active="true"] {
|
|
3824
|
+
--tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
3825
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
3808
3826
|
}
|
|
3809
3827
|
|
|
3810
|
-
.
|
|
3811
|
-
--tw-
|
|
3828
|
+
.data-\[active\=true\]\:ring-ring\/50[data-active="true"] {
|
|
3829
|
+
--tw-ring-color: var(--ring);
|
|
3812
3830
|
}
|
|
3813
3831
|
|
|
3814
|
-
|
|
3815
|
-
|
|
3832
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3833
|
+
.data-\[active\=true\]\:ring-ring\/50[data-active="true"] {
|
|
3834
|
+
--tw-ring-color: color-mix(in oklab, var(--ring) 50%, transparent);
|
|
3835
|
+
}
|
|
3816
3836
|
}
|
|
3817
3837
|
|
|
3818
|
-
.data-
|
|
3819
|
-
|
|
3838
|
+
.data-\[active\=true\]\:aria-invalid\:border-destructive[data-active="true"][aria-invalid="true"] {
|
|
3839
|
+
border-color: var(--destructive);
|
|
3820
3840
|
}
|
|
3821
3841
|
|
|
3822
|
-
.data-
|
|
3823
|
-
|
|
3842
|
+
.data-\[active\=true\]\:aria-invalid\:ring-destructive\/20[data-active="true"][aria-invalid="true"] {
|
|
3843
|
+
--tw-ring-color: var(--destructive);
|
|
3824
3844
|
}
|
|
3825
3845
|
|
|
3826
|
-
|
|
3827
|
-
|
|
3846
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3847
|
+
.data-\[active\=true\]\:aria-invalid\:ring-destructive\/20[data-active="true"][aria-invalid="true"] {
|
|
3848
|
+
--tw-ring-color: color-mix(in oklab, var(--destructive) 20%, transparent);
|
|
3849
|
+
}
|
|
3828
3850
|
}
|
|
3829
3851
|
|
|
3830
|
-
.data-
|
|
3831
|
-
|
|
3852
|
+
.data-\[align-trigger\=true\]\:animate-none[data-align-trigger="true"] {
|
|
3853
|
+
animation: none;
|
|
3832
3854
|
}
|
|
3833
3855
|
|
|
3834
|
-
.data-
|
|
3835
|
-
|
|
3836
|
-
--tw-scale-y: 90%;
|
|
3837
|
-
--tw-scale-z: 90%;
|
|
3838
|
-
scale: var(--tw-scale-x) var(--tw-scale-y);
|
|
3856
|
+
.data-\[chips\=true\]\:min-w-\(--anchor-width\)[data-chips="true"] {
|
|
3857
|
+
min-width: var(--anchor-width);
|
|
3839
3858
|
}
|
|
3840
3859
|
|
|
3841
|
-
.data-
|
|
3842
|
-
|
|
3860
|
+
.data-\[disabled\=true\]\:pointer-events-none[data-disabled="true"] {
|
|
3861
|
+
pointer-events: none;
|
|
3843
3862
|
}
|
|
3844
3863
|
|
|
3845
|
-
.data
|
|
3846
|
-
|
|
3847
|
-
transition-duration: .15s;
|
|
3864
|
+
.data-\[disabled\=true\]\:opacity-50[data-disabled="true"] {
|
|
3865
|
+
opacity: .5;
|
|
3848
3866
|
}
|
|
3849
3867
|
|
|
3850
|
-
.data
|
|
3851
|
-
|
|
3868
|
+
.data-\[empty\=true\]\:text-muted-foreground[data-empty="true"] {
|
|
3869
|
+
color: var(--muted-foreground);
|
|
3852
3870
|
}
|
|
3853
3871
|
|
|
3854
|
-
.data
|
|
3855
|
-
color: var(--
|
|
3872
|
+
.data-\[invalid\=true\]\:text-destructive[data-invalid="true"] {
|
|
3873
|
+
color: var(--destructive);
|
|
3856
3874
|
}
|
|
3857
3875
|
|
|
3858
|
-
.data-
|
|
3859
|
-
|
|
3876
|
+
.data-\[motion\=from-end\]\:slide-in-from-right-52[data-motion="from-end"] {
|
|
3877
|
+
--tw-enter-translate-x: calc(52*var(--spacing));
|
|
3860
3878
|
}
|
|
3861
3879
|
|
|
3862
|
-
.data-
|
|
3863
|
-
|
|
3880
|
+
.data-\[motion\=from-start\]\:slide-in-from-left-52[data-motion="from-start"] {
|
|
3881
|
+
--tw-enter-translate-x: calc(52*var(--spacing)*-1);
|
|
3864
3882
|
}
|
|
3865
3883
|
|
|
3866
|
-
.data-
|
|
3867
|
-
|
|
3884
|
+
.data-\[motion\=to-end\]\:slide-out-to-right-52[data-motion="to-end"] {
|
|
3885
|
+
--tw-exit-translate-x: calc(52*var(--spacing));
|
|
3868
3886
|
}
|
|
3869
3887
|
|
|
3870
|
-
.data-
|
|
3871
|
-
|
|
3888
|
+
.data-\[motion\=to-start\]\:slide-out-to-left-52[data-motion="to-start"] {
|
|
3889
|
+
--tw-exit-translate-x: calc(52*var(--spacing)*-1);
|
|
3872
3890
|
}
|
|
3873
3891
|
|
|
3874
|
-
.data
|
|
3875
|
-
|
|
3876
|
-
}
|
|
3877
|
-
|
|
3878
|
-
.data-horizontal\:w-auto[data-horizontal] {
|
|
3879
|
-
width: auto;
|
|
3880
|
-
}
|
|
3881
|
-
|
|
3882
|
-
.data-horizontal\:w-full[data-horizontal] {
|
|
3883
|
-
width: 100%;
|
|
3884
|
-
}
|
|
3885
|
-
|
|
3886
|
-
.data-horizontal\:flex-col[data-horizontal] {
|
|
3887
|
-
flex-direction: column;
|
|
3888
|
-
}
|
|
3889
|
-
|
|
3890
|
-
.data-horizontal\:border-t[data-horizontal] {
|
|
3891
|
-
border-top-style: var(--tw-border-style);
|
|
3892
|
-
border-top-width: 1px;
|
|
3893
|
-
}
|
|
3894
|
-
|
|
3895
|
-
.data-horizontal\:border-t-transparent[data-horizontal] {
|
|
3896
|
-
border-top-color: #0000;
|
|
3897
|
-
}
|
|
3898
|
-
|
|
3899
|
-
.data-inset\:pl-7[data-inset] {
|
|
3900
|
-
padding-left: calc(var(--spacing) * 7);
|
|
3901
|
-
}
|
|
3902
|
-
|
|
3903
|
-
.data-instant\:transition-none[data-instant] {
|
|
3904
|
-
transition-property: none;
|
|
3905
|
-
}
|
|
3906
|
-
|
|
3907
|
-
.data-open\:animate-accordion-down[data-open] {
|
|
3908
|
-
animation: accordion-down var(--tw-animation-duration, var(--tw-duration, .2s))var(--tw-ease, ease-out)var(--tw-animation-delay, 0s)var(--tw-animation-iteration-count, 1)var(--tw-animation-direction, normal)var(--tw-animation-fill-mode, none);
|
|
3909
|
-
}
|
|
3910
|
-
|
|
3911
|
-
.data-open\:animate-in[data-open] {
|
|
3912
|
-
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);
|
|
3913
|
-
}
|
|
3914
|
-
|
|
3915
|
-
.data-open\:bg-accent[data-open] {
|
|
3916
|
-
background-color: var(--accent);
|
|
3917
|
-
}
|
|
3918
|
-
|
|
3919
|
-
.data-open\:bg-muted\/50[data-open] {
|
|
3920
|
-
background-color: var(--muted);
|
|
3921
|
-
}
|
|
3922
|
-
|
|
3923
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
3924
|
-
.data-open\:bg-muted\/50[data-open] {
|
|
3925
|
-
background-color: color-mix(in oklab, var(--muted) 50%, transparent);
|
|
3926
|
-
}
|
|
3927
|
-
}
|
|
3928
|
-
|
|
3929
|
-
.data-open\:text-accent-foreground[data-open] {
|
|
3930
|
-
color: var(--accent-foreground);
|
|
3931
|
-
}
|
|
3932
|
-
|
|
3933
|
-
.data-open\:fade-in-0[data-open] {
|
|
3934
|
-
--tw-enter-opacity: 0;
|
|
3935
|
-
}
|
|
3936
|
-
|
|
3937
|
-
.data-open\:zoom-in-95[data-open] {
|
|
3938
|
-
--tw-enter-scale: .95;
|
|
3939
|
-
}
|
|
3940
|
-
|
|
3941
|
-
.group-data-\[viewport\=false\]\/navigation-menu\:data-open\:animate-in:is(:where(.group\/navigation-menu)[data-viewport="false"] *)[data-open] {
|
|
3942
|
-
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);
|
|
3943
|
-
}
|
|
3944
|
-
|
|
3945
|
-
.group-data-\[viewport\=false\]\/navigation-menu\:data-open\:fade-in-0:is(:where(.group\/navigation-menu)[data-viewport="false"] *)[data-open] {
|
|
3946
|
-
--tw-enter-opacity: 0;
|
|
3947
|
-
}
|
|
3948
|
-
|
|
3949
|
-
.group-data-\[viewport\=false\]\/navigation-menu\:data-open\:zoom-in-95:is(:where(.group\/navigation-menu)[data-viewport="false"] *)[data-open] {
|
|
3950
|
-
--tw-enter-scale: .95;
|
|
3951
|
-
}
|
|
3952
|
-
|
|
3953
|
-
@media (hover: hover) {
|
|
3954
|
-
.data-open\:hover\:bg-muted[data-open]:hover {
|
|
3955
|
-
background-color: var(--muted);
|
|
3956
|
-
}
|
|
3957
|
-
|
|
3958
|
-
.data-open\:hover\:bg-sidebar-accent[data-open]:hover {
|
|
3959
|
-
background-color: var(--sidebar-accent);
|
|
3960
|
-
}
|
|
3961
|
-
|
|
3962
|
-
.data-open\:hover\:text-sidebar-accent-foreground[data-open]:hover {
|
|
3963
|
-
color: var(--sidebar-accent-foreground);
|
|
3964
|
-
}
|
|
3965
|
-
}
|
|
3966
|
-
|
|
3967
|
-
.data-open\:focus\:bg-muted[data-open]:focus {
|
|
3968
|
-
background-color: var(--muted);
|
|
3969
|
-
}
|
|
3970
|
-
|
|
3971
|
-
.data-placeholder\:text-muted-foreground[data-placeholder] {
|
|
3972
|
-
color: var(--muted-foreground);
|
|
3973
|
-
}
|
|
3974
|
-
|
|
3975
|
-
.data-popup-open\:bg-accent[data-popup-open] {
|
|
3976
|
-
background-color: var(--accent);
|
|
3977
|
-
}
|
|
3978
|
-
|
|
3979
|
-
.data-popup-open\:bg-muted\/50[data-popup-open] {
|
|
3980
|
-
background-color: var(--muted);
|
|
3981
|
-
}
|
|
3982
|
-
|
|
3983
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
3984
|
-
.data-popup-open\:bg-muted\/50[data-popup-open] {
|
|
3985
|
-
background-color: color-mix(in oklab, var(--muted) 50%, transparent);
|
|
3986
|
-
}
|
|
3987
|
-
}
|
|
3988
|
-
|
|
3989
|
-
.data-popup-open\:text-accent-foreground[data-popup-open] {
|
|
3990
|
-
color: var(--accent-foreground);
|
|
3991
|
-
}
|
|
3992
|
-
|
|
3993
|
-
@media (hover: hover) {
|
|
3994
|
-
.data-popup-open\:hover\:bg-muted[data-popup-open]:hover {
|
|
3995
|
-
background-color: var(--muted);
|
|
3996
|
-
}
|
|
3997
|
-
}
|
|
3998
|
-
|
|
3999
|
-
.data-pressed\:bg-transparent[data-pressed] {
|
|
4000
|
-
background-color: #0000;
|
|
4001
|
-
}
|
|
4002
|
-
|
|
4003
|
-
.data-selected\:bg-muted[data-selected] {
|
|
4004
|
-
background-color: var(--muted);
|
|
4005
|
-
}
|
|
4006
|
-
|
|
4007
|
-
.data-selected\:text-foreground[data-selected] {
|
|
4008
|
-
color: var(--foreground);
|
|
4009
|
-
}
|
|
4010
|
-
|
|
4011
|
-
:is(.\*\:data-slot\:rounded-r-none > *)[data-slot] {
|
|
4012
|
-
border-top-right-radius: 0;
|
|
4013
|
-
border-bottom-right-radius: 0;
|
|
4014
|
-
}
|
|
4015
|
-
|
|
4016
|
-
:is(.\*\:data-slot\:rounded-b-none > *)[data-slot] {
|
|
4017
|
-
border-bottom-right-radius: 0;
|
|
4018
|
-
border-bottom-left-radius: 0;
|
|
4019
|
-
}
|
|
4020
|
-
|
|
4021
|
-
.data-starting-style\:h-0[data-starting-style] {
|
|
4022
|
-
height: calc(var(--spacing) * 0);
|
|
4023
|
-
}
|
|
4024
|
-
|
|
4025
|
-
.data-starting-style\:scale-90[data-starting-style] {
|
|
4026
|
-
--tw-scale-x: 90%;
|
|
4027
|
-
--tw-scale-y: 90%;
|
|
4028
|
-
--tw-scale-z: 90%;
|
|
4029
|
-
scale: var(--tw-scale-x) var(--tw-scale-y);
|
|
4030
|
-
}
|
|
4031
|
-
|
|
4032
|
-
.data-starting-style\:opacity-0[data-starting-style] {
|
|
4033
|
-
opacity: 0;
|
|
4034
|
-
}
|
|
4035
|
-
|
|
4036
|
-
.data-unchecked\:bg-input[data-unchecked] {
|
|
4037
|
-
background-color: var(--input);
|
|
4038
|
-
}
|
|
4039
|
-
|
|
4040
|
-
.group-data-\[size\=default\]\/switch\:data-unchecked\:translate-x-0:is(:where(.group\/switch)[data-size="default"] *)[data-unchecked], .group-data-\[size\=sm\]\/switch\:data-unchecked\:translate-x-0:is(:where(.group\/switch)[data-size="sm"] *)[data-unchecked] {
|
|
4041
|
-
--tw-translate-x: calc(var(--spacing) * 0);
|
|
4042
|
-
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
4043
|
-
}
|
|
4044
|
-
|
|
4045
|
-
.data-vertical\:my-px[data-vertical] {
|
|
4046
|
-
margin-block: 1px;
|
|
4047
|
-
}
|
|
4048
|
-
|
|
4049
|
-
.data-vertical\:h-auto[data-vertical] {
|
|
4050
|
-
height: auto;
|
|
4051
|
-
}
|
|
4052
|
-
|
|
4053
|
-
.data-vertical\:h-full[data-vertical] {
|
|
4054
|
-
height: 100%;
|
|
4055
|
-
}
|
|
4056
|
-
|
|
4057
|
-
.data-vertical\:min-h-40[data-vertical] {
|
|
4058
|
-
min-height: calc(var(--spacing) * 40);
|
|
4059
|
-
}
|
|
4060
|
-
|
|
4061
|
-
.data-vertical\:w-1[data-vertical] {
|
|
4062
|
-
width: calc(var(--spacing) * 1);
|
|
4063
|
-
}
|
|
4064
|
-
|
|
4065
|
-
.data-vertical\:w-2\.5[data-vertical] {
|
|
4066
|
-
width: calc(var(--spacing) * 2.5);
|
|
4067
|
-
}
|
|
4068
|
-
|
|
4069
|
-
.data-vertical\:w-auto[data-vertical] {
|
|
4070
|
-
width: auto;
|
|
4071
|
-
}
|
|
4072
|
-
|
|
4073
|
-
.data-vertical\:w-full[data-vertical] {
|
|
4074
|
-
width: 100%;
|
|
4075
|
-
}
|
|
4076
|
-
|
|
4077
|
-
.data-vertical\:w-px[data-vertical] {
|
|
4078
|
-
width: 1px;
|
|
4079
|
-
}
|
|
4080
|
-
|
|
4081
|
-
.data-vertical\:flex-col[data-vertical] {
|
|
4082
|
-
flex-direction: column;
|
|
4083
|
-
}
|
|
4084
|
-
|
|
4085
|
-
.data-vertical\:items-stretch[data-vertical] {
|
|
4086
|
-
align-items: stretch;
|
|
4087
|
-
}
|
|
4088
|
-
|
|
4089
|
-
.data-vertical\:self-stretch[data-vertical] {
|
|
4090
|
-
align-self: stretch;
|
|
4091
|
-
}
|
|
4092
|
-
|
|
4093
|
-
.data-vertical\:border-l[data-vertical] {
|
|
4094
|
-
border-left-style: var(--tw-border-style);
|
|
4095
|
-
border-left-width: 1px;
|
|
4096
|
-
}
|
|
4097
|
-
|
|
4098
|
-
.data-vertical\:border-l-transparent[data-vertical] {
|
|
4099
|
-
border-left-color: #0000;
|
|
4100
|
-
}
|
|
4101
|
-
|
|
4102
|
-
.data-\[active\=true\]\:z-10[data-active="true"] {
|
|
4103
|
-
z-index: 10;
|
|
4104
|
-
}
|
|
4105
|
-
|
|
4106
|
-
.data-\[active\=true\]\:border-ring[data-active="true"] {
|
|
4107
|
-
border-color: var(--ring);
|
|
4108
|
-
}
|
|
4109
|
-
|
|
4110
|
-
.data-\[active\=true\]\:ring-\[3px\][data-active="true"] {
|
|
4111
|
-
--tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
4112
|
-
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
4113
|
-
}
|
|
4114
|
-
|
|
4115
|
-
.data-\[active\=true\]\:ring-ring\/50[data-active="true"] {
|
|
4116
|
-
--tw-ring-color: var(--ring);
|
|
4117
|
-
}
|
|
4118
|
-
|
|
4119
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
4120
|
-
.data-\[active\=true\]\:ring-ring\/50[data-active="true"] {
|
|
4121
|
-
--tw-ring-color: color-mix(in oklab, var(--ring) 50%, transparent);
|
|
4122
|
-
}
|
|
4123
|
-
}
|
|
4124
|
-
|
|
4125
|
-
.data-\[active\=true\]\:aria-invalid\:border-destructive[data-active="true"][aria-invalid="true"] {
|
|
4126
|
-
border-color: var(--destructive);
|
|
4127
|
-
}
|
|
4128
|
-
|
|
4129
|
-
.data-\[active\=true\]\:aria-invalid\:ring-destructive\/20[data-active="true"][aria-invalid="true"] {
|
|
4130
|
-
--tw-ring-color: var(--destructive);
|
|
4131
|
-
}
|
|
4132
|
-
|
|
4133
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
4134
|
-
.data-\[active\=true\]\:aria-invalid\:ring-destructive\/20[data-active="true"][aria-invalid="true"] {
|
|
4135
|
-
--tw-ring-color: color-mix(in oklab, var(--destructive) 20%, transparent);
|
|
4136
|
-
}
|
|
4137
|
-
}
|
|
4138
|
-
|
|
4139
|
-
.data-\[align-trigger\=true\]\:animate-none[data-align-trigger="true"] {
|
|
4140
|
-
animation: none;
|
|
4141
|
-
}
|
|
4142
|
-
|
|
4143
|
-
.data-\[chips\=true\]\:min-w-\(--anchor-width\)[data-chips="true"] {
|
|
4144
|
-
min-width: var(--anchor-width);
|
|
4145
|
-
}
|
|
4146
|
-
|
|
4147
|
-
.data-\[disabled\=true\]\:pointer-events-none[data-disabled="true"] {
|
|
4148
|
-
pointer-events: none;
|
|
4149
|
-
}
|
|
4150
|
-
|
|
4151
|
-
.data-\[disabled\=true\]\:opacity-50[data-disabled="true"] {
|
|
4152
|
-
opacity: .5;
|
|
4153
|
-
}
|
|
4154
|
-
|
|
4155
|
-
.data-\[empty\=true\]\:text-muted-foreground[data-empty="true"] {
|
|
4156
|
-
color: var(--muted-foreground);
|
|
4157
|
-
}
|
|
4158
|
-
|
|
4159
|
-
.data-\[invalid\=true\]\:text-destructive[data-invalid="true"] {
|
|
4160
|
-
color: var(--destructive);
|
|
4161
|
-
}
|
|
4162
|
-
|
|
4163
|
-
.data-\[motion\=from-end\]\:slide-in-from-right-52[data-motion="from-end"] {
|
|
4164
|
-
--tw-enter-translate-x: calc(52*var(--spacing));
|
|
4165
|
-
}
|
|
4166
|
-
|
|
4167
|
-
.data-\[motion\=from-start\]\:slide-in-from-left-52[data-motion="from-start"] {
|
|
4168
|
-
--tw-enter-translate-x: calc(52*var(--spacing)*-1);
|
|
4169
|
-
}
|
|
4170
|
-
|
|
4171
|
-
.data-\[motion\=to-end\]\:slide-out-to-right-52[data-motion="to-end"] {
|
|
4172
|
-
--tw-exit-translate-x: calc(52*var(--spacing));
|
|
4173
|
-
}
|
|
4174
|
-
|
|
4175
|
-
.data-\[motion\=to-start\]\:slide-out-to-left-52[data-motion="to-start"] {
|
|
4176
|
-
--tw-exit-translate-x: calc(52*var(--spacing)*-1);
|
|
4177
|
-
}
|
|
4178
|
-
|
|
4179
|
-
.data-\[motion\^\=from-\]\:animate-in[data-motion^="from-"] {
|
|
4180
|
-
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);
|
|
3892
|
+
.data-\[motion\^\=from-\]\:animate-in[data-motion^="from-"] {
|
|
3893
|
+
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);
|
|
4181
3894
|
}
|
|
4182
3895
|
|
|
4183
3896
|
.data-\[motion\^\=from-\]\:fade-in[data-motion^="from-"] {
|
|
@@ -4667,22 +4380,22 @@
|
|
|
4667
4380
|
gap: calc(var(--spacing) * 1.5);
|
|
4668
4381
|
}
|
|
4669
4382
|
|
|
4670
|
-
.group-data-horizontal\/toggle-group\:data-\[spacing\=0\]\:first\:rounded-l-lg:is(:where(.group\/toggle-group)[data-horizontal] *)[data-spacing="0"]:first-child {
|
|
4383
|
+
.group-data-horizontal\/toggle-group\:data-\[spacing\=0\]\:first\:rounded-l-lg:is(:where(.group\/toggle-group):where([data-orientation="horizontal"]) *)[data-spacing="0"]:first-child {
|
|
4671
4384
|
border-top-left-radius: var(--radius);
|
|
4672
4385
|
border-bottom-left-radius: var(--radius);
|
|
4673
4386
|
}
|
|
4674
4387
|
|
|
4675
|
-
.group-data-vertical\/toggle-group\:data-\[spacing\=0\]\:first\:rounded-t-lg:is(:where(.group\/toggle-group)[data-vertical] *)[data-spacing="0"]:first-child {
|
|
4388
|
+
.group-data-vertical\/toggle-group\:data-\[spacing\=0\]\:first\:rounded-t-lg:is(:where(.group\/toggle-group):where([data-orientation="vertical"]) *)[data-spacing="0"]:first-child {
|
|
4676
4389
|
border-top-left-radius: var(--radius);
|
|
4677
4390
|
border-top-right-radius: var(--radius);
|
|
4678
4391
|
}
|
|
4679
4392
|
|
|
4680
|
-
.group-data-horizontal\/toggle-group\:data-\[spacing\=0\]\:last\:rounded-r-lg:is(:where(.group\/toggle-group)[data-horizontal] *)[data-spacing="0"]:last-child {
|
|
4393
|
+
.group-data-horizontal\/toggle-group\:data-\[spacing\=0\]\:last\:rounded-r-lg:is(:where(.group\/toggle-group):where([data-orientation="horizontal"]) *)[data-spacing="0"]:last-child {
|
|
4681
4394
|
border-top-right-radius: var(--radius);
|
|
4682
4395
|
border-bottom-right-radius: var(--radius);
|
|
4683
4396
|
}
|
|
4684
4397
|
|
|
4685
|
-
.group-data-vertical\/toggle-group\:data-\[spacing\=0\]\:last\:rounded-b-lg:is(:where(.group\/toggle-group)[data-vertical] *)[data-spacing="0"]:last-child {
|
|
4398
|
+
.group-data-vertical\/toggle-group\:data-\[spacing\=0\]\:last\:rounded-b-lg:is(:where(.group\/toggle-group):where([data-orientation="vertical"]) *)[data-spacing="0"]:last-child {
|
|
4686
4399
|
border-bottom-right-radius: var(--radius);
|
|
4687
4400
|
border-bottom-left-radius: var(--radius);
|
|
4688
4401
|
}
|
|
@@ -4751,22 +4464,22 @@
|
|
|
4751
4464
|
border-radius: 0;
|
|
4752
4465
|
}
|
|
4753
4466
|
|
|
4754
|
-
.group-data-horizontal\/toggle-group\:data-\[spacing\=0\]\:data-\[variant\=outline\]\:border-l-0:is(:where(.group\/toggle-group)[data-horizontal] *)[data-spacing="0"][data-variant="outline"] {
|
|
4467
|
+
.group-data-horizontal\/toggle-group\:data-\[spacing\=0\]\:data-\[variant\=outline\]\:border-l-0:is(:where(.group\/toggle-group):where([data-orientation="horizontal"]) *)[data-spacing="0"][data-variant="outline"] {
|
|
4755
4468
|
border-left-style: var(--tw-border-style);
|
|
4756
4469
|
border-left-width: 0;
|
|
4757
4470
|
}
|
|
4758
4471
|
|
|
4759
|
-
.group-data-vertical\/toggle-group\:data-\[spacing\=0\]\:data-\[variant\=outline\]\:border-t-0:is(:where(.group\/toggle-group)[data-vertical] *)[data-spacing="0"][data-variant="outline"] {
|
|
4472
|
+
.group-data-vertical\/toggle-group\:data-\[spacing\=0\]\:data-\[variant\=outline\]\:border-t-0:is(:where(.group\/toggle-group):where([data-orientation="vertical"]) *)[data-spacing="0"][data-variant="outline"] {
|
|
4760
4473
|
border-top-style: var(--tw-border-style);
|
|
4761
4474
|
border-top-width: 0;
|
|
4762
4475
|
}
|
|
4763
4476
|
|
|
4764
|
-
.group-data-horizontal\/toggle-group\:data-\[spacing\=0\]\:data-\[variant\=outline\]\:first\:border-l:is(:where(.group\/toggle-group)[data-horizontal] *)[data-spacing="0"][data-variant="outline"]:first-child {
|
|
4477
|
+
.group-data-horizontal\/toggle-group\:data-\[spacing\=0\]\:data-\[variant\=outline\]\:first\:border-l:is(:where(.group\/toggle-group):where([data-orientation="horizontal"]) *)[data-spacing="0"][data-variant="outline"]:first-child {
|
|
4765
4478
|
border-left-style: var(--tw-border-style);
|
|
4766
4479
|
border-left-width: 1px;
|
|
4767
4480
|
}
|
|
4768
4481
|
|
|
4769
|
-
.group-data-vertical\/toggle-group\:data-\[spacing\=0\]\:data-\[variant\=outline\]\:first\:border-t:is(:where(.group\/toggle-group)[data-vertical] *)[data-spacing="0"][data-variant="outline"]:first-child {
|
|
4482
|
+
.group-data-vertical\/toggle-group\:data-\[spacing\=0\]\:data-\[variant\=outline\]\:first\:border-t:is(:where(.group\/toggle-group):where([data-orientation="vertical"]) *)[data-spacing="0"][data-variant="outline"]:first-child {
|
|
4770
4483
|
border-top-style: var(--tw-border-style);
|
|
4771
4484
|
border-top-width: 1px;
|
|
4772
4485
|
}
|
|
@@ -4986,288 +4699,586 @@
|
|
|
4986
4699
|
}
|
|
4987
4700
|
}
|
|
4988
4701
|
|
|
4989
|
-
@container field-group (min-width: 28rem) {
|
|
4990
|
-
.\@md\/field-group\:flex-row {
|
|
4991
|
-
flex-direction: row;
|
|
4992
|
-
}
|
|
4702
|
+
@container field-group (min-width: 28rem) {
|
|
4703
|
+
.\@md\/field-group\:flex-row {
|
|
4704
|
+
flex-direction: row;
|
|
4705
|
+
}
|
|
4706
|
+
|
|
4707
|
+
.\@md\/field-group\:items-center {
|
|
4708
|
+
align-items: center;
|
|
4709
|
+
}
|
|
4710
|
+
|
|
4711
|
+
:is(.\@md\/field-group\:\*\:w-auto > *) {
|
|
4712
|
+
width: auto;
|
|
4713
|
+
}
|
|
4714
|
+
|
|
4715
|
+
.\@md\/field-group\:has-\[\>\[data-slot\=field-content\]\]\:items-start:has( > [data-slot="field-content"]) {
|
|
4716
|
+
align-items: flex-start;
|
|
4717
|
+
}
|
|
4718
|
+
|
|
4719
|
+
:is(.\@md\/field-group\:\*\:data-\[slot\=field-label\]\:flex-auto > *)[data-slot="field-label"] {
|
|
4720
|
+
flex: auto;
|
|
4721
|
+
}
|
|
4722
|
+
}
|
|
4723
|
+
|
|
4724
|
+
.ltr\:-translate-x-1\/2:where(:dir(ltr), [dir="ltr"], [dir="ltr"] *), .rtl\:-translate-x-1\/2:where(:dir(rtl), [dir="rtl"], [dir="rtl"] *) {
|
|
4725
|
+
--tw-translate-x: calc(calc(1 / 2 * 100%) * -1);
|
|
4726
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
4727
|
+
}
|
|
4728
|
+
|
|
4729
|
+
.dark\:border-input:is(.dark *) {
|
|
4730
|
+
border-color: var(--input);
|
|
4731
|
+
}
|
|
4732
|
+
|
|
4733
|
+
.dark\:bg-destructive\/20:is(.dark *) {
|
|
4734
|
+
background-color: var(--destructive);
|
|
4735
|
+
}
|
|
4736
|
+
|
|
4737
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4738
|
+
.dark\:bg-destructive\/20:is(.dark *) {
|
|
4739
|
+
background-color: color-mix(in oklab, var(--destructive) 20%, transparent);
|
|
4740
|
+
}
|
|
4741
|
+
}
|
|
4742
|
+
|
|
4743
|
+
.dark\:bg-input\/30:is(.dark *) {
|
|
4744
|
+
background-color: var(--input);
|
|
4745
|
+
}
|
|
4746
|
+
|
|
4747
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4748
|
+
.dark\:bg-input\/30:is(.dark *) {
|
|
4749
|
+
background-color: color-mix(in oklab, var(--input) 30%, transparent);
|
|
4750
|
+
}
|
|
4751
|
+
}
|
|
4752
|
+
|
|
4753
|
+
.dark\:bg-transparent:is(.dark *) {
|
|
4754
|
+
background-color: #0000;
|
|
4755
|
+
}
|
|
4756
|
+
|
|
4757
|
+
.dark\:text-muted-foreground:is(.dark *) {
|
|
4758
|
+
color: var(--muted-foreground);
|
|
4759
|
+
}
|
|
4760
|
+
|
|
4761
|
+
.dark\:after\:mix-blend-lighten:is(.dark *):after {
|
|
4762
|
+
content: var(--tw-content);
|
|
4763
|
+
mix-blend-mode: lighten;
|
|
4764
|
+
}
|
|
4765
|
+
|
|
4766
|
+
@media (hover: hover) {
|
|
4767
|
+
.dark\:hover\:bg-destructive\/30:is(.dark *):hover {
|
|
4768
|
+
background-color: var(--destructive);
|
|
4769
|
+
}
|
|
4770
|
+
|
|
4771
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4772
|
+
.dark\:hover\:bg-destructive\/30:is(.dark *):hover {
|
|
4773
|
+
background-color: color-mix(in oklab, var(--destructive) 30%, transparent);
|
|
4774
|
+
}
|
|
4775
|
+
}
|
|
4776
|
+
|
|
4777
|
+
.dark\:hover\:bg-input\/50:is(.dark *):hover {
|
|
4778
|
+
background-color: var(--input);
|
|
4779
|
+
}
|
|
4780
|
+
|
|
4781
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4782
|
+
.dark\:hover\:bg-input\/50:is(.dark *):hover {
|
|
4783
|
+
background-color: color-mix(in oklab, var(--input) 50%, transparent);
|
|
4784
|
+
}
|
|
4785
|
+
}
|
|
4786
|
+
|
|
4787
|
+
.dark\:hover\:bg-muted\/50:is(.dark *):hover {
|
|
4788
|
+
background-color: var(--muted);
|
|
4789
|
+
}
|
|
4790
|
+
|
|
4791
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4792
|
+
.dark\:hover\:bg-muted\/50:is(.dark *):hover {
|
|
4793
|
+
background-color: color-mix(in oklab, var(--muted) 50%, transparent);
|
|
4794
|
+
}
|
|
4795
|
+
}
|
|
4796
|
+
|
|
4797
|
+
.dark\:hover\:text-foreground:is(.dark *):hover {
|
|
4798
|
+
color: var(--foreground);
|
|
4799
|
+
}
|
|
4800
|
+
}
|
|
4801
|
+
|
|
4802
|
+
.dark\:focus-visible\:ring-destructive\/40:is(.dark *):focus-visible {
|
|
4803
|
+
--tw-ring-color: var(--destructive);
|
|
4804
|
+
}
|
|
4805
|
+
|
|
4806
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4807
|
+
.dark\:focus-visible\:ring-destructive\/40:is(.dark *):focus-visible {
|
|
4808
|
+
--tw-ring-color: color-mix(in oklab, var(--destructive) 40%, transparent);
|
|
4809
|
+
}
|
|
4810
|
+
}
|
|
4811
|
+
|
|
4812
|
+
.dark\:disabled\:bg-input\/80:is(.dark *):disabled {
|
|
4813
|
+
background-color: var(--input);
|
|
4814
|
+
}
|
|
4815
|
+
|
|
4816
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4817
|
+
.dark\:disabled\:bg-input\/80:is(.dark *):disabled {
|
|
4818
|
+
background-color: color-mix(in oklab, var(--input) 80%, transparent);
|
|
4819
|
+
}
|
|
4820
|
+
}
|
|
4821
|
+
|
|
4822
|
+
.dark\:disabled\:bg-transparent:is(.dark *):disabled {
|
|
4823
|
+
background-color: #0000;
|
|
4824
|
+
}
|
|
4825
|
+
|
|
4826
|
+
:where([data-slot="tooltip-content"]) .dark\:in-data-\[slot\=tooltip-content\]\:bg-background\/10:is(.dark *) {
|
|
4827
|
+
background-color: var(--background);
|
|
4828
|
+
}
|
|
4829
|
+
|
|
4830
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4831
|
+
:where([data-slot="tooltip-content"]) .dark\:in-data-\[slot\=tooltip-content\]\:bg-background\/10:is(.dark *) {
|
|
4832
|
+
background-color: color-mix(in oklab, var(--background) 10%, transparent);
|
|
4833
|
+
}
|
|
4834
|
+
}
|
|
4835
|
+
|
|
4836
|
+
.dark\:has-disabled\:bg-input\/80:is(.dark *):has(:disabled) {
|
|
4837
|
+
background-color: var(--input);
|
|
4838
|
+
}
|
|
4839
|
+
|
|
4840
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4841
|
+
.dark\:has-disabled\:bg-input\/80:is(.dark *):has(:disabled) {
|
|
4842
|
+
background-color: color-mix(in oklab, var(--input) 80%, transparent);
|
|
4843
|
+
}
|
|
4844
|
+
}
|
|
4845
|
+
|
|
4846
|
+
.dark\:has-aria-invalid\:border-destructive\/50:is(.dark *):has([aria-invalid="true"]) {
|
|
4847
|
+
border-color: var(--destructive);
|
|
4848
|
+
}
|
|
4849
|
+
|
|
4850
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4851
|
+
.dark\:has-aria-invalid\:border-destructive\/50:is(.dark *):has([aria-invalid="true"]) {
|
|
4852
|
+
border-color: color-mix(in oklab, var(--destructive) 50%, transparent);
|
|
4853
|
+
}
|
|
4854
|
+
}
|
|
4855
|
+
|
|
4856
|
+
.dark\:has-aria-invalid\:ring-destructive\/40:is(.dark *):has([aria-invalid="true"]) {
|
|
4857
|
+
--tw-ring-color: var(--destructive);
|
|
4858
|
+
}
|
|
4859
|
+
|
|
4860
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4861
|
+
.dark\:has-aria-invalid\:ring-destructive\/40:is(.dark *):has([aria-invalid="true"]) {
|
|
4862
|
+
--tw-ring-color: color-mix(in oklab, var(--destructive) 40%, transparent);
|
|
4863
|
+
}
|
|
4864
|
+
}
|
|
4865
|
+
|
|
4866
|
+
.dark\:has-data-checked\:border-primary\/20:is(.dark *):has(:where([data-state="checked"]), :where([data-checked]:not([data-checked="false"]))) {
|
|
4867
|
+
border-color: var(--primary);
|
|
4868
|
+
}
|
|
4869
|
+
|
|
4870
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4871
|
+
.dark\:has-data-checked\:border-primary\/20:is(.dark *):has(:where([data-state="checked"]), :where([data-checked]:not([data-checked="false"]))) {
|
|
4872
|
+
border-color: color-mix(in oklab, var(--primary) 20%, transparent);
|
|
4873
|
+
}
|
|
4874
|
+
}
|
|
4875
|
+
|
|
4876
|
+
.dark\:has-data-checked\:bg-primary\/10:is(.dark *):has(:where([data-state="checked"]), :where([data-checked]:not([data-checked="false"]))) {
|
|
4877
|
+
background-color: var(--primary);
|
|
4878
|
+
}
|
|
4879
|
+
|
|
4880
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4881
|
+
.dark\:has-data-checked\:bg-primary\/10:is(.dark *):has(:where([data-state="checked"]), :where([data-checked]:not([data-checked="false"]))) {
|
|
4882
|
+
background-color: color-mix(in oklab, var(--primary) 10%, transparent);
|
|
4883
|
+
}
|
|
4884
|
+
}
|
|
4885
|
+
|
|
4886
|
+
.dark\:has-\[\[data-slot\]\[aria-invalid\=true\]\]\:ring-destructive\/40:is(.dark *):has([data-slot][aria-invalid="true"]) {
|
|
4887
|
+
--tw-ring-color: var(--destructive);
|
|
4888
|
+
}
|
|
4889
|
+
|
|
4890
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4891
|
+
.dark\:has-\[\[data-slot\]\[aria-invalid\=true\]\]\:ring-destructive\/40:is(.dark *):has([data-slot][aria-invalid="true"]) {
|
|
4892
|
+
--tw-ring-color: color-mix(in oklab, var(--destructive) 40%, transparent);
|
|
4893
|
+
}
|
|
4894
|
+
}
|
|
4895
|
+
|
|
4896
|
+
.dark\:aria-invalid\:border-destructive\/50:is(.dark *)[aria-invalid="true"] {
|
|
4897
|
+
border-color: var(--destructive);
|
|
4898
|
+
}
|
|
4899
|
+
|
|
4900
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4901
|
+
.dark\:aria-invalid\:border-destructive\/50:is(.dark *)[aria-invalid="true"] {
|
|
4902
|
+
border-color: color-mix(in oklab, var(--destructive) 50%, transparent);
|
|
4903
|
+
}
|
|
4904
|
+
}
|
|
4905
|
+
|
|
4906
|
+
.dark\:aria-invalid\:ring-destructive\/40:is(.dark *)[aria-invalid="true"] {
|
|
4907
|
+
--tw-ring-color: var(--destructive);
|
|
4908
|
+
}
|
|
4909
|
+
|
|
4910
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4911
|
+
.dark\:aria-invalid\:ring-destructive\/40:is(.dark *)[aria-invalid="true"] {
|
|
4912
|
+
--tw-ring-color: color-mix(in oklab, var(--destructive) 40%, transparent);
|
|
4913
|
+
}
|
|
4914
|
+
}
|
|
4915
|
+
|
|
4916
|
+
.dark\:data-\[active\=true\]\:aria-invalid\:ring-destructive\/40:is(.dark *)[data-active="true"][aria-invalid="true"] {
|
|
4917
|
+
--tw-ring-color: var(--destructive);
|
|
4918
|
+
}
|
|
4919
|
+
|
|
4920
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4921
|
+
.dark\:data-\[active\=true\]\:aria-invalid\:ring-destructive\/40:is(.dark *)[data-active="true"][aria-invalid="true"] {
|
|
4922
|
+
--tw-ring-color: color-mix(in oklab, var(--destructive) 40%, transparent);
|
|
4923
|
+
}
|
|
4924
|
+
}
|
|
4925
|
+
|
|
4926
|
+
.dark\:data-\[variant\=destructive\]\:focus\:bg-destructive\/20:is(.dark *)[data-variant="destructive"]:focus {
|
|
4927
|
+
background-color: var(--destructive);
|
|
4928
|
+
}
|
|
4929
|
+
|
|
4930
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4931
|
+
.dark\:data-\[variant\=destructive\]\:focus\:bg-destructive\/20:is(.dark *)[data-variant="destructive"]:focus {
|
|
4932
|
+
background-color: color-mix(in oklab, var(--destructive) 20%, transparent);
|
|
4933
|
+
}
|
|
4934
|
+
}
|
|
4935
|
+
|
|
4936
|
+
.data-open\:animate-accordion-down:where([data-state="open"]), .data-open\:animate-accordion-down:where([data-open]:not([data-open="false"])) {
|
|
4937
|
+
animation: accordion-down var(--tw-animation-duration, var(--tw-duration, .2s))var(--tw-ease, ease-out)var(--tw-animation-delay, 0s)var(--tw-animation-iteration-count, 1)var(--tw-animation-direction, normal)var(--tw-animation-fill-mode, none);
|
|
4938
|
+
}
|
|
4939
|
+
|
|
4940
|
+
.data-open\:animate-in:where([data-state="open"]), .data-open\:animate-in:where([data-open]:not([data-open="false"])) {
|
|
4941
|
+
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);
|
|
4942
|
+
}
|
|
4943
|
+
|
|
4944
|
+
.data-open\:bg-accent:where([data-state="open"]), .data-open\:bg-accent:where([data-open]:not([data-open="false"])) {
|
|
4945
|
+
background-color: var(--accent);
|
|
4946
|
+
}
|
|
4947
|
+
|
|
4948
|
+
.data-open\:bg-muted\/50:where([data-state="open"]), .data-open\:bg-muted\/50:where([data-open]:not([data-open="false"])) {
|
|
4949
|
+
background-color: var(--muted);
|
|
4950
|
+
}
|
|
4951
|
+
|
|
4952
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4953
|
+
.data-open\:bg-muted\/50:where([data-state="open"]), .data-open\:bg-muted\/50:where([data-open]:not([data-open="false"])) {
|
|
4954
|
+
background-color: color-mix(in oklab, var(--muted) 50%, transparent);
|
|
4955
|
+
}
|
|
4956
|
+
}
|
|
4957
|
+
|
|
4958
|
+
.data-open\:text-accent-foreground:where([data-state="open"]), .data-open\:text-accent-foreground:where([data-open]:not([data-open="false"])) {
|
|
4959
|
+
color: var(--accent-foreground);
|
|
4960
|
+
}
|
|
4961
|
+
|
|
4962
|
+
.data-open\:fade-in-0:where([data-state="open"]), .data-open\:fade-in-0:where([data-open]:not([data-open="false"])) {
|
|
4963
|
+
--tw-enter-opacity: 0;
|
|
4964
|
+
}
|
|
4965
|
+
|
|
4966
|
+
.data-open\:zoom-in-95:where([data-state="open"]), .data-open\:zoom-in-95:where([data-open]:not([data-open="false"])) {
|
|
4967
|
+
--tw-enter-scale: .95;
|
|
4968
|
+
}
|
|
4969
|
+
|
|
4970
|
+
.group-data-\[viewport\=false\]\/navigation-menu\:data-open\:animate-in:is(:where(.group\/navigation-menu)[data-viewport="false"] *):where([data-state="open"]), .group-data-\[viewport\=false\]\/navigation-menu\:data-open\:animate-in:is(:where(.group\/navigation-menu)[data-viewport="false"] *):where([data-open]:not([data-open="false"])) {
|
|
4971
|
+
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);
|
|
4972
|
+
}
|
|
4973
|
+
|
|
4974
|
+
.group-data-\[viewport\=false\]\/navigation-menu\:data-open\:fade-in-0:is(:where(.group\/navigation-menu)[data-viewport="false"] *):where([data-state="open"]), .group-data-\[viewport\=false\]\/navigation-menu\:data-open\:fade-in-0:is(:where(.group\/navigation-menu)[data-viewport="false"] *):where([data-open]:not([data-open="false"])) {
|
|
4975
|
+
--tw-enter-opacity: 0;
|
|
4976
|
+
}
|
|
4977
|
+
|
|
4978
|
+
.group-data-\[viewport\=false\]\/navigation-menu\:data-open\:zoom-in-95:is(:where(.group\/navigation-menu)[data-viewport="false"] *):where([data-state="open"]), .group-data-\[viewport\=false\]\/navigation-menu\:data-open\:zoom-in-95:is(:where(.group\/navigation-menu)[data-viewport="false"] *):where([data-open]:not([data-open="false"])) {
|
|
4979
|
+
--tw-enter-scale: .95;
|
|
4980
|
+
}
|
|
4981
|
+
|
|
4982
|
+
@media (hover: hover) {
|
|
4983
|
+
:is(.data-open\:hover\:bg-muted:where([data-state="open"]), .data-open\:hover\:bg-muted:where([data-open]:not([data-open="false"]))):hover {
|
|
4984
|
+
background-color: var(--muted);
|
|
4985
|
+
}
|
|
4986
|
+
|
|
4987
|
+
:is(.data-open\:hover\:bg-sidebar-accent:where([data-state="open"]), .data-open\:hover\:bg-sidebar-accent:where([data-open]:not([data-open="false"]))):hover {
|
|
4988
|
+
background-color: var(--sidebar-accent);
|
|
4989
|
+
}
|
|
4990
|
+
|
|
4991
|
+
:is(.data-open\:hover\:text-sidebar-accent-foreground:where([data-state="open"]), .data-open\:hover\:text-sidebar-accent-foreground:where([data-open]:not([data-open="false"]))):hover {
|
|
4992
|
+
color: var(--sidebar-accent-foreground);
|
|
4993
|
+
}
|
|
4994
|
+
}
|
|
4995
|
+
|
|
4996
|
+
:is(.data-open\:focus\:bg-muted:where([data-state="open"]), .data-open\:focus\:bg-muted:where([data-open]:not([data-open="false"]))):focus {
|
|
4997
|
+
background-color: var(--muted);
|
|
4998
|
+
}
|
|
4999
|
+
|
|
5000
|
+
.data-closed\:animate-accordion-up:where([data-state="closed"]), .data-closed\:animate-accordion-up:where([data-closed]:not([data-closed="false"])) {
|
|
5001
|
+
animation: accordion-up var(--tw-animation-duration, var(--tw-duration, .2s))var(--tw-ease, ease-out)var(--tw-animation-delay, 0s)var(--tw-animation-iteration-count, 1)var(--tw-animation-direction, normal)var(--tw-animation-fill-mode, none);
|
|
5002
|
+
}
|
|
5003
|
+
|
|
5004
|
+
.data-closed\:animate-out:where([data-state="closed"]), .data-closed\:animate-out:where([data-closed]:not([data-closed="false"])) {
|
|
5005
|
+
animation: exit 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);
|
|
5006
|
+
}
|
|
5007
|
+
|
|
5008
|
+
.data-closed\:overflow-hidden:where([data-state="closed"]), .data-closed\:overflow-hidden:where([data-closed]:not([data-closed="false"])) {
|
|
5009
|
+
overflow: hidden;
|
|
5010
|
+
}
|
|
5011
|
+
|
|
5012
|
+
.data-closed\:fade-out-0:where([data-state="closed"]), .data-closed\:fade-out-0:where([data-closed]:not([data-closed="false"])) {
|
|
5013
|
+
--tw-exit-opacity: 0;
|
|
5014
|
+
}
|
|
5015
|
+
|
|
5016
|
+
.data-closed\:zoom-out-95:where([data-state="closed"]), .data-closed\:zoom-out-95:where([data-closed]:not([data-closed="false"])) {
|
|
5017
|
+
--tw-exit-scale: .95;
|
|
5018
|
+
}
|
|
5019
|
+
|
|
5020
|
+
.group-data-\[viewport\=false\]\/navigation-menu\:data-closed\:animate-out:is(:where(.group\/navigation-menu)[data-viewport="false"] *):where([data-state="closed"]), .group-data-\[viewport\=false\]\/navigation-menu\:data-closed\:animate-out:is(:where(.group\/navigation-menu)[data-viewport="false"] *):where([data-closed]:not([data-closed="false"])) {
|
|
5021
|
+
animation: exit 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);
|
|
5022
|
+
}
|
|
4993
5023
|
|
|
4994
|
-
|
|
4995
|
-
|
|
4996
|
-
|
|
5024
|
+
.group-data-\[viewport\=false\]\/navigation-menu\:data-closed\:fade-out-0:is(:where(.group\/navigation-menu)[data-viewport="false"] *):where([data-state="closed"]), .group-data-\[viewport\=false\]\/navigation-menu\:data-closed\:fade-out-0:is(:where(.group\/navigation-menu)[data-viewport="false"] *):where([data-closed]:not([data-closed="false"])) {
|
|
5025
|
+
--tw-exit-opacity: 0;
|
|
5026
|
+
}
|
|
4997
5027
|
|
|
4998
|
-
|
|
4999
|
-
|
|
5000
|
-
|
|
5028
|
+
.group-data-\[viewport\=false\]\/navigation-menu\:data-closed\:zoom-out-95:is(:where(.group\/navigation-menu)[data-viewport="false"] *):where([data-state="closed"]), .group-data-\[viewport\=false\]\/navigation-menu\:data-closed\:zoom-out-95:is(:where(.group\/navigation-menu)[data-viewport="false"] *):where([data-closed]:not([data-closed="false"])) {
|
|
5029
|
+
--tw-exit-scale: .95;
|
|
5030
|
+
}
|
|
5001
5031
|
|
|
5002
|
-
|
|
5003
|
-
|
|
5004
|
-
|
|
5032
|
+
.data-checked\:border-primary:where([data-state="checked"]), .data-checked\:border-primary:where([data-checked]:not([data-checked="false"])) {
|
|
5033
|
+
border-color: var(--primary);
|
|
5034
|
+
}
|
|
5005
5035
|
|
|
5006
|
-
|
|
5007
|
-
|
|
5008
|
-
}
|
|
5036
|
+
.data-checked\:bg-primary:where([data-state="checked"]), .data-checked\:bg-primary:where([data-checked]:not([data-checked="false"])) {
|
|
5037
|
+
background-color: var(--primary);
|
|
5009
5038
|
}
|
|
5010
5039
|
|
|
5011
|
-
.
|
|
5012
|
-
|
|
5040
|
+
.data-checked\:text-primary-foreground:where([data-state="checked"]), .data-checked\:text-primary-foreground:where([data-checked]:not([data-checked="false"])) {
|
|
5041
|
+
color: var(--primary-foreground);
|
|
5042
|
+
}
|
|
5043
|
+
|
|
5044
|
+
.group-data-\[size\=default\]\/switch\:data-checked\:translate-x-\[calc\(100\%-2px\)\]:is(:where(.group\/switch)[data-size="default"] *):where([data-state="checked"]), .group-data-\[size\=default\]\/switch\:data-checked\:translate-x-\[calc\(100\%-2px\)\]:is(:where(.group\/switch)[data-size="default"] *):where([data-checked]:not([data-checked="false"])), .group-data-\[size\=sm\]\/switch\:data-checked\:translate-x-\[calc\(100\%-2px\)\]:is(:where(.group\/switch)[data-size="sm"] *):where([data-state="checked"]), .group-data-\[size\=sm\]\/switch\:data-checked\:translate-x-\[calc\(100\%-2px\)\]:is(:where(.group\/switch)[data-size="sm"] *):where([data-checked]:not([data-checked="false"])) {
|
|
5045
|
+
--tw-translate-x: calc(100% - 2px);
|
|
5013
5046
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
5014
5047
|
}
|
|
5015
5048
|
|
|
5016
|
-
|
|
5017
|
-
|
|
5018
|
-
|
|
5019
|
-
}
|
|
5049
|
+
.dark\:data-checked\:bg-primary:is(.dark *):where([data-state="checked"]), .dark\:data-checked\:bg-primary:is(.dark *):where([data-checked]:not([data-checked="false"])) {
|
|
5050
|
+
background-color: var(--primary);
|
|
5051
|
+
}
|
|
5020
5052
|
|
|
5021
|
-
|
|
5022
|
-
|
|
5023
|
-
|
|
5053
|
+
.dark\:data-checked\:bg-primary-foreground:is(.dark *):where([data-state="checked"]), .dark\:data-checked\:bg-primary-foreground:is(.dark *):where([data-checked]:not([data-checked="false"])) {
|
|
5054
|
+
background-color: var(--primary-foreground);
|
|
5055
|
+
}
|
|
5024
5056
|
|
|
5025
|
-
|
|
5026
|
-
|
|
5027
|
-
|
|
5028
|
-
}
|
|
5029
|
-
}
|
|
5057
|
+
.data-unchecked\:bg-input:where([data-state="unchecked"]), .data-unchecked\:bg-input:where([data-unchecked]:not([data-unchecked="false"])) {
|
|
5058
|
+
background-color: var(--input);
|
|
5059
|
+
}
|
|
5030
5060
|
|
|
5031
|
-
|
|
5032
|
-
|
|
5033
|
-
|
|
5061
|
+
.group-data-\[size\=default\]\/switch\:data-unchecked\:translate-x-0:is(:where(.group\/switch)[data-size="default"] *):where([data-state="unchecked"]), .group-data-\[size\=default\]\/switch\:data-unchecked\:translate-x-0:is(:where(.group\/switch)[data-size="default"] *):where([data-unchecked]:not([data-unchecked="false"])), .group-data-\[size\=sm\]\/switch\:data-unchecked\:translate-x-0:is(:where(.group\/switch)[data-size="sm"] *):where([data-state="unchecked"]), .group-data-\[size\=sm\]\/switch\:data-unchecked\:translate-x-0:is(:where(.group\/switch)[data-size="sm"] *):where([data-unchecked]:not([data-unchecked="false"])) {
|
|
5062
|
+
--tw-translate-x: calc(var(--spacing) * 0);
|
|
5063
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
5064
|
+
}
|
|
5034
5065
|
|
|
5035
|
-
|
|
5036
|
-
|
|
5037
|
-
|
|
5038
|
-
}
|
|
5039
|
-
}
|
|
5066
|
+
.dark\:data-unchecked\:bg-foreground:is(.dark *):where([data-state="unchecked"]), .dark\:data-unchecked\:bg-foreground:is(.dark *):where([data-unchecked]:not([data-unchecked="false"])) {
|
|
5067
|
+
background-color: var(--foreground);
|
|
5068
|
+
}
|
|
5040
5069
|
|
|
5041
|
-
|
|
5042
|
-
|
|
5043
|
-
|
|
5070
|
+
.dark\:data-unchecked\:bg-input\/80:is(.dark *):where([data-state="unchecked"]), .dark\:data-unchecked\:bg-input\/80:is(.dark *):where([data-unchecked]:not([data-unchecked="false"])) {
|
|
5071
|
+
background-color: var(--input);
|
|
5072
|
+
}
|
|
5044
5073
|
|
|
5045
|
-
|
|
5046
|
-
|
|
5074
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
5075
|
+
.dark\:data-unchecked\:bg-input\/80:is(.dark *):where([data-state="unchecked"]), .dark\:data-unchecked\:bg-input\/80:is(.dark *):where([data-unchecked]:not([data-unchecked="false"])) {
|
|
5076
|
+
background-color: color-mix(in oklab, var(--input) 80%, transparent);
|
|
5047
5077
|
}
|
|
5078
|
+
}
|
|
5048
5079
|
|
|
5049
|
-
|
|
5050
|
-
|
|
5051
|
-
|
|
5052
|
-
}
|
|
5080
|
+
.data-selected\:bg-muted:where([data-selected="true"]) {
|
|
5081
|
+
background-color: var(--muted);
|
|
5082
|
+
}
|
|
5053
5083
|
|
|
5054
|
-
|
|
5055
|
-
|
|
5056
|
-
|
|
5057
|
-
}
|
|
5084
|
+
.data-selected\:text-foreground:where([data-selected="true"]) {
|
|
5085
|
+
color: var(--foreground);
|
|
5086
|
+
}
|
|
5058
5087
|
|
|
5059
|
-
|
|
5060
|
-
|
|
5061
|
-
|
|
5062
|
-
}
|
|
5063
|
-
}
|
|
5088
|
+
.data-disabled\:pointer-events-none:where([data-disabled="true"]), .data-disabled\:pointer-events-none:where([data-disabled]:not([data-disabled="false"])) {
|
|
5089
|
+
pointer-events: none;
|
|
5090
|
+
}
|
|
5064
5091
|
|
|
5065
|
-
|
|
5066
|
-
|
|
5067
|
-
|
|
5092
|
+
.data-disabled\:cursor-not-allowed:where([data-disabled="true"]), .data-disabled\:cursor-not-allowed:where([data-disabled]:not([data-disabled="false"])) {
|
|
5093
|
+
cursor: not-allowed;
|
|
5094
|
+
}
|
|
5068
5095
|
|
|
5069
|
-
|
|
5070
|
-
|
|
5071
|
-
|
|
5072
|
-
}
|
|
5073
|
-
}
|
|
5096
|
+
.data-disabled\:opacity-50:where([data-disabled="true"]), .data-disabled\:opacity-50:where([data-disabled]:not([data-disabled="false"])) {
|
|
5097
|
+
opacity: .5;
|
|
5098
|
+
}
|
|
5074
5099
|
|
|
5075
|
-
|
|
5076
|
-
|
|
5077
|
-
|
|
5100
|
+
.data-active\:bg-background:where([data-state="active"]), .data-active\:bg-background:where([data-active]:not([data-active="false"])) {
|
|
5101
|
+
background-color: var(--background);
|
|
5102
|
+
}
|
|
5078
5103
|
|
|
5079
|
-
|
|
5080
|
-
|
|
5081
|
-
|
|
5082
|
-
}
|
|
5083
|
-
}
|
|
5104
|
+
.data-active\:bg-muted\/50:where([data-state="active"]), .data-active\:bg-muted\/50:where([data-active]:not([data-active="false"])) {
|
|
5105
|
+
background-color: var(--muted);
|
|
5106
|
+
}
|
|
5084
5107
|
|
|
5085
|
-
|
|
5086
|
-
|
|
5087
|
-
|
|
5108
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
5109
|
+
.data-active\:bg-muted\/50:where([data-state="active"]), .data-active\:bg-muted\/50:where([data-active]:not([data-active="false"])) {
|
|
5110
|
+
background-color: color-mix(in oklab, var(--muted) 50%, transparent);
|
|
5088
5111
|
}
|
|
5112
|
+
}
|
|
5089
5113
|
|
|
5090
|
-
|
|
5091
|
-
|
|
5092
|
-
|
|
5114
|
+
.data-active\:bg-sidebar-accent:where([data-state="active"]), .data-active\:bg-sidebar-accent:where([data-active]:not([data-active="false"])) {
|
|
5115
|
+
background-color: var(--sidebar-accent);
|
|
5116
|
+
}
|
|
5093
5117
|
|
|
5094
|
-
|
|
5095
|
-
|
|
5096
|
-
|
|
5097
|
-
|
|
5098
|
-
}
|
|
5118
|
+
.data-active\:font-medium:where([data-state="active"]), .data-active\:font-medium:where([data-active]:not([data-active="false"])) {
|
|
5119
|
+
--tw-font-weight: var(--font-weight-medium);
|
|
5120
|
+
font-weight: var(--font-weight-medium);
|
|
5121
|
+
}
|
|
5099
5122
|
|
|
5100
|
-
|
|
5101
|
-
|
|
5102
|
-
|
|
5123
|
+
.data-active\:text-foreground:where([data-state="active"]), .data-active\:text-foreground:where([data-active]:not([data-active="false"])) {
|
|
5124
|
+
color: var(--foreground);
|
|
5125
|
+
}
|
|
5103
5126
|
|
|
5104
|
-
|
|
5105
|
-
|
|
5106
|
-
|
|
5107
|
-
}
|
|
5108
|
-
}
|
|
5127
|
+
.data-active\:text-sidebar-accent-foreground:where([data-state="active"]), .data-active\:text-sidebar-accent-foreground:where([data-active]:not([data-active="false"])) {
|
|
5128
|
+
color: var(--sidebar-accent-foreground);
|
|
5129
|
+
}
|
|
5109
5130
|
|
|
5110
|
-
|
|
5111
|
-
|
|
5112
|
-
|
|
5131
|
+
.group-data-\[variant\=default\]\/tabs-list\:data-active\:shadow-sm:is(:where(.group\/tabs-list)[data-variant="default"] *):where([data-state="active"]), .group-data-\[variant\=default\]\/tabs-list\:data-active\:shadow-sm:is(:where(.group\/tabs-list)[data-variant="default"] *):where([data-active]:not([data-active="false"])) {
|
|
5132
|
+
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, #0000001a), 0 1px 2px -1px var(--tw-shadow-color, #0000001a);
|
|
5133
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
5134
|
+
}
|
|
5113
5135
|
|
|
5114
|
-
|
|
5115
|
-
|
|
5116
|
-
|
|
5136
|
+
.group-data-\[variant\=line\]\/tabs-list\:data-active\:bg-transparent:is(:where(.group\/tabs-list)[data-variant="line"] *):where([data-state="active"]), .group-data-\[variant\=line\]\/tabs-list\:data-active\:bg-transparent:is(:where(.group\/tabs-list)[data-variant="line"] *):where([data-active]:not([data-active="false"])) {
|
|
5137
|
+
background-color: #0000;
|
|
5138
|
+
}
|
|
5117
5139
|
|
|
5118
|
-
|
|
5119
|
-
|
|
5120
|
-
|
|
5121
|
-
|
|
5122
|
-
}
|
|
5140
|
+
.group-data-\[variant\=line\]\/tabs-list\:data-active\:shadow-none:is(:where(.group\/tabs-list)[data-variant="line"] *):where([data-state="active"]), .group-data-\[variant\=line\]\/tabs-list\:data-active\:shadow-none:is(:where(.group\/tabs-list)[data-variant="line"] *):where([data-active]:not([data-active="false"])) {
|
|
5141
|
+
--tw-shadow: 0 0 #0000;
|
|
5142
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
5143
|
+
}
|
|
5123
5144
|
|
|
5124
|
-
|
|
5125
|
-
|
|
5126
|
-
|
|
5145
|
+
:is(.group-data-\[variant\=line\]\/tabs-list\:data-active\:after\:opacity-100:is(:where(.group\/tabs-list)[data-variant="line"] *):where([data-state="active"]), .group-data-\[variant\=line\]\/tabs-list\:data-active\:after\:opacity-100:is(:where(.group\/tabs-list)[data-variant="line"] *):where([data-active]:not([data-active="false"]))):after {
|
|
5146
|
+
content: var(--tw-content);
|
|
5147
|
+
opacity: 1;
|
|
5148
|
+
}
|
|
5127
5149
|
|
|
5128
|
-
|
|
5129
|
-
|
|
5130
|
-
|
|
5131
|
-
}
|
|
5150
|
+
@media (hover: hover) {
|
|
5151
|
+
:is(.data-active\:hover\:bg-muted:where([data-state="active"]), .data-active\:hover\:bg-muted:where([data-active]:not([data-active="false"]))):hover {
|
|
5152
|
+
background-color: var(--muted);
|
|
5132
5153
|
}
|
|
5154
|
+
}
|
|
5133
5155
|
|
|
5134
|
-
|
|
5135
|
-
|
|
5136
|
-
|
|
5156
|
+
:is(.data-active\:focus\:bg-muted:where([data-state="active"]), .data-active\:focus\:bg-muted:where([data-active]:not([data-active="false"]))):focus {
|
|
5157
|
+
background-color: var(--muted);
|
|
5158
|
+
}
|
|
5137
5159
|
|
|
5138
|
-
|
|
5139
|
-
|
|
5140
|
-
|
|
5141
|
-
}
|
|
5142
|
-
}
|
|
5160
|
+
.dark\:data-active\:border-input:is(.dark *):where([data-state="active"]), .dark\:data-active\:border-input:is(.dark *):where([data-active]:not([data-active="false"])) {
|
|
5161
|
+
border-color: var(--input);
|
|
5162
|
+
}
|
|
5143
5163
|
|
|
5144
|
-
|
|
5145
|
-
|
|
5146
|
-
|
|
5164
|
+
.dark\:data-active\:bg-input\/30:is(.dark *):where([data-state="active"]), .dark\:data-active\:bg-input\/30:is(.dark *):where([data-active]:not([data-active="false"])) {
|
|
5165
|
+
background-color: var(--input);
|
|
5166
|
+
}
|
|
5147
5167
|
|
|
5148
|
-
|
|
5149
|
-
|
|
5150
|
-
|
|
5151
|
-
}
|
|
5168
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
5169
|
+
.dark\:data-active\:bg-input\/30:is(.dark *):where([data-state="active"]), .dark\:data-active\:bg-input\/30:is(.dark *):where([data-active]:not([data-active="false"])) {
|
|
5170
|
+
background-color: color-mix(in oklab, var(--input) 30%, transparent);
|
|
5152
5171
|
}
|
|
5172
|
+
}
|
|
5153
5173
|
|
|
5154
|
-
|
|
5155
|
-
|
|
5156
|
-
|
|
5174
|
+
.dark\:data-active\:text-foreground:is(.dark *):where([data-state="active"]), .dark\:data-active\:text-foreground:is(.dark *):where([data-active]:not([data-active="false"])) {
|
|
5175
|
+
color: var(--foreground);
|
|
5176
|
+
}
|
|
5157
5177
|
|
|
5158
|
-
|
|
5159
|
-
|
|
5160
|
-
|
|
5161
|
-
}
|
|
5162
|
-
}
|
|
5178
|
+
.dark\:group-data-\[variant\=line\]\/tabs-list\:data-active\:border-transparent:is(.dark *):is(:where(.group\/tabs-list)[data-variant="line"] *):where([data-state="active"]), .dark\:group-data-\[variant\=line\]\/tabs-list\:data-active\:border-transparent:is(.dark *):is(:where(.group\/tabs-list)[data-variant="line"] *):where([data-active]:not([data-active="false"])) {
|
|
5179
|
+
border-color: #0000;
|
|
5180
|
+
}
|
|
5163
5181
|
|
|
5164
|
-
|
|
5165
|
-
|
|
5166
|
-
|
|
5182
|
+
.dark\:group-data-\[variant\=line\]\/tabs-list\:data-active\:bg-transparent:is(.dark *):is(:where(.group\/tabs-list)[data-variant="line"] *):where([data-state="active"]), .dark\:group-data-\[variant\=line\]\/tabs-list\:data-active\:bg-transparent:is(.dark *):is(:where(.group\/tabs-list)[data-variant="line"] *):where([data-active]:not([data-active="false"])) {
|
|
5183
|
+
background-color: #0000;
|
|
5184
|
+
}
|
|
5167
5185
|
|
|
5168
|
-
|
|
5169
|
-
|
|
5170
|
-
|
|
5171
|
-
}
|
|
5172
|
-
}
|
|
5186
|
+
.data-horizontal\:mx-px:where([data-orientation="horizontal"]) {
|
|
5187
|
+
margin-inline: 1px;
|
|
5188
|
+
}
|
|
5173
5189
|
|
|
5174
|
-
|
|
5175
|
-
|
|
5176
|
-
|
|
5190
|
+
.data-horizontal\:h-1:where([data-orientation="horizontal"]) {
|
|
5191
|
+
height: calc(var(--spacing) * 1);
|
|
5192
|
+
}
|
|
5177
5193
|
|
|
5178
|
-
|
|
5179
|
-
|
|
5180
|
-
|
|
5181
|
-
}
|
|
5182
|
-
}
|
|
5194
|
+
.data-horizontal\:h-2\.5:where([data-orientation="horizontal"]) {
|
|
5195
|
+
height: calc(var(--spacing) * 2.5);
|
|
5196
|
+
}
|
|
5183
5197
|
|
|
5184
|
-
|
|
5185
|
-
|
|
5186
|
-
|
|
5198
|
+
.data-horizontal\:h-full:where([data-orientation="horizontal"]) {
|
|
5199
|
+
height: 100%;
|
|
5200
|
+
}
|
|
5187
5201
|
|
|
5188
|
-
|
|
5189
|
-
|
|
5190
|
-
|
|
5191
|
-
}
|
|
5192
|
-
}
|
|
5202
|
+
.data-horizontal\:h-px:where([data-orientation="horizontal"]) {
|
|
5203
|
+
height: 1px;
|
|
5204
|
+
}
|
|
5193
5205
|
|
|
5194
|
-
|
|
5195
|
-
|
|
5196
|
-
|
|
5206
|
+
.data-horizontal\:w-auto:where([data-orientation="horizontal"]) {
|
|
5207
|
+
width: auto;
|
|
5208
|
+
}
|
|
5197
5209
|
|
|
5198
|
-
|
|
5199
|
-
|
|
5200
|
-
|
|
5201
|
-
}
|
|
5202
|
-
}
|
|
5210
|
+
.data-horizontal\:w-full:where([data-orientation="horizontal"]) {
|
|
5211
|
+
width: 100%;
|
|
5212
|
+
}
|
|
5203
5213
|
|
|
5204
|
-
|
|
5205
|
-
|
|
5206
|
-
|
|
5214
|
+
.data-horizontal\:flex-col:where([data-orientation="horizontal"]) {
|
|
5215
|
+
flex-direction: column;
|
|
5216
|
+
}
|
|
5207
5217
|
|
|
5208
|
-
|
|
5209
|
-
|
|
5210
|
-
|
|
5218
|
+
.data-horizontal\:border-t:where([data-orientation="horizontal"]) {
|
|
5219
|
+
border-top-style: var(--tw-border-style);
|
|
5220
|
+
border-top-width: 1px;
|
|
5221
|
+
}
|
|
5211
5222
|
|
|
5212
|
-
|
|
5213
|
-
|
|
5214
|
-
|
|
5215
|
-
}
|
|
5216
|
-
}
|
|
5223
|
+
.data-horizontal\:border-t-transparent:where([data-orientation="horizontal"]) {
|
|
5224
|
+
border-top-color: #0000;
|
|
5225
|
+
}
|
|
5217
5226
|
|
|
5218
|
-
|
|
5219
|
-
|
|
5220
|
-
|
|
5227
|
+
.data-vertical\:my-px:where([data-orientation="vertical"]) {
|
|
5228
|
+
margin-block: 1px;
|
|
5229
|
+
}
|
|
5221
5230
|
|
|
5222
|
-
|
|
5223
|
-
|
|
5224
|
-
|
|
5231
|
+
.data-vertical\:h-auto:where([data-orientation="vertical"]) {
|
|
5232
|
+
height: auto;
|
|
5233
|
+
}
|
|
5225
5234
|
|
|
5226
|
-
|
|
5227
|
-
|
|
5228
|
-
|
|
5235
|
+
.data-vertical\:h-full:where([data-orientation="vertical"]) {
|
|
5236
|
+
height: 100%;
|
|
5237
|
+
}
|
|
5229
5238
|
|
|
5230
|
-
|
|
5231
|
-
|
|
5232
|
-
|
|
5239
|
+
.data-vertical\:min-h-40:where([data-orientation="vertical"]) {
|
|
5240
|
+
min-height: calc(var(--spacing) * 40);
|
|
5241
|
+
}
|
|
5233
5242
|
|
|
5234
|
-
|
|
5235
|
-
|
|
5236
|
-
|
|
5243
|
+
.data-vertical\:w-1:where([data-orientation="vertical"]) {
|
|
5244
|
+
width: calc(var(--spacing) * 1);
|
|
5245
|
+
}
|
|
5237
5246
|
|
|
5238
|
-
|
|
5239
|
-
|
|
5240
|
-
|
|
5247
|
+
.data-vertical\:w-2\.5:where([data-orientation="vertical"]) {
|
|
5248
|
+
width: calc(var(--spacing) * 2.5);
|
|
5249
|
+
}
|
|
5241
5250
|
|
|
5242
|
-
|
|
5243
|
-
|
|
5244
|
-
|
|
5251
|
+
.data-vertical\:w-auto:where([data-orientation="vertical"]) {
|
|
5252
|
+
width: auto;
|
|
5253
|
+
}
|
|
5245
5254
|
|
|
5246
|
-
|
|
5247
|
-
|
|
5248
|
-
|
|
5249
|
-
}
|
|
5250
|
-
}
|
|
5255
|
+
.data-vertical\:w-full:where([data-orientation="vertical"]) {
|
|
5256
|
+
width: 100%;
|
|
5257
|
+
}
|
|
5251
5258
|
|
|
5252
|
-
|
|
5253
|
-
|
|
5254
|
-
|
|
5259
|
+
.data-vertical\:w-px:where([data-orientation="vertical"]) {
|
|
5260
|
+
width: 1px;
|
|
5261
|
+
}
|
|
5255
5262
|
|
|
5256
|
-
|
|
5257
|
-
|
|
5258
|
-
|
|
5259
|
-
}
|
|
5260
|
-
}
|
|
5263
|
+
.data-vertical\:flex-col:where([data-orientation="vertical"]) {
|
|
5264
|
+
flex-direction: column;
|
|
5265
|
+
}
|
|
5261
5266
|
|
|
5262
|
-
|
|
5263
|
-
|
|
5264
|
-
|
|
5267
|
+
.data-vertical\:items-stretch:where([data-orientation="vertical"]) {
|
|
5268
|
+
align-items: stretch;
|
|
5269
|
+
}
|
|
5265
5270
|
|
|
5266
|
-
|
|
5267
|
-
|
|
5268
|
-
|
|
5269
|
-
|
|
5270
|
-
|
|
5271
|
+
.data-vertical\:self-stretch:where([data-orientation="vertical"]) {
|
|
5272
|
+
align-self: stretch;
|
|
5273
|
+
}
|
|
5274
|
+
|
|
5275
|
+
.data-vertical\:border-l:where([data-orientation="vertical"]) {
|
|
5276
|
+
border-left-style: var(--tw-border-style);
|
|
5277
|
+
border-left-width: 1px;
|
|
5278
|
+
}
|
|
5279
|
+
|
|
5280
|
+
.data-vertical\:border-l-transparent:where([data-orientation="vertical"]) {
|
|
5281
|
+
border-left-color: #0000;
|
|
5271
5282
|
}
|
|
5272
5283
|
|
|
5273
5284
|
.\[\&_\.recharts-cartesian-axis-tick_text\]\:fill-muted-foreground .recharts-cartesian-axis-tick text {
|
|
@@ -5569,10 +5580,6 @@
|
|
|
5569
5580
|
color: var(--accent-foreground);
|
|
5570
5581
|
}
|
|
5571
5582
|
|
|
5572
|
-
:is(.data-selected\:\*\:\[svg\]\:text-foreground[data-selected] > *):is(svg) {
|
|
5573
|
-
color: var(--foreground);
|
|
5574
|
-
}
|
|
5575
|
-
|
|
5576
5583
|
:is(.data-\[variant\=destructive\]\:\*\:\[svg\]\:text-destructive[data-variant="destructive"] > *):is(svg) {
|
|
5577
5584
|
color: var(--destructive);
|
|
5578
5585
|
}
|
|
@@ -5581,6 +5588,10 @@
|
|
|
5581
5588
|
color: var(--destructive) !important;
|
|
5582
5589
|
}
|
|
5583
5590
|
|
|
5591
|
+
:is(.data-selected\:\*\:\[svg\]\:text-foreground:where([data-selected="true"]) > *):is(svg) {
|
|
5592
|
+
color: var(--foreground);
|
|
5593
|
+
}
|
|
5594
|
+
|
|
5584
5595
|
:is(.\*\:\[svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-4 > *):is(svg:not([class*="size-"])) {
|
|
5585
5596
|
width: calc(var(--spacing) * 4);
|
|
5586
5597
|
height: calc(var(--spacing) * 4);
|
|
@@ -6259,13 +6270,13 @@
|
|
|
6259
6270
|
}
|
|
6260
6271
|
|
|
6261
6272
|
to {
|
|
6262
|
-
height: var(--radix-accordion-content-height, var(--
|
|
6273
|
+
height: var(--radix-accordion-content-height, var(--accordion-panel-height, auto));
|
|
6263
6274
|
}
|
|
6264
6275
|
}
|
|
6265
6276
|
|
|
6266
6277
|
@keyframes accordion-up {
|
|
6267
6278
|
from {
|
|
6268
|
-
height: var(--radix-accordion-content-height, var(--
|
|
6279
|
+
height: var(--radix-accordion-content-height, var(--accordion-panel-height, auto));
|
|
6269
6280
|
}
|
|
6270
6281
|
|
|
6271
6282
|
to {
|