lightning_ui_kit 0.3.3 → 0.3.4
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.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/app/assets/stylesheets/lightning_ui_kit/application.css +1 -0
- data/app/assets/stylesheets/lightning_ui_kit/themes.css +15 -2
- data/app/assets/vendor/lightning_ui_kit.css +404 -68
- data/app/assets/vendor/lightning_ui_kit.js +3 -3
- data/app/components/lightning_ui_kit/accordion/item_component.html.erb +30 -0
- data/app/components/lightning_ui_kit/accordion/item_component.rb +13 -0
- data/app/components/lightning_ui_kit/accordion_component.html.erb +5 -0
- data/app/components/lightning_ui_kit/accordion_component.rb +22 -0
- data/app/components/lightning_ui_kit/alert_component.html.erb +14 -3
- data/app/components/lightning_ui_kit/alert_component.rb +58 -5
- data/app/components/lightning_ui_kit/card_component.html.erb +34 -0
- data/app/components/lightning_ui_kit/card_component.rb +22 -0
- data/app/components/lightning_ui_kit/layout_component.html.erb +3 -3
- data/app/components/lightning_ui_kit/radio_group/option_component.html.erb +1 -0
- data/app/components/lightning_ui_kit/radio_group/option_component.rb +14 -0
- data/app/components/lightning_ui_kit/radio_group_component.html.erb +60 -0
- data/app/components/lightning_ui_kit/radio_group_component.rb +70 -0
- data/app/components/lightning_ui_kit/tabs/tab_component.html.erb +1 -0
- data/app/components/lightning_ui_kit/tabs/tab_component.rb +8 -0
- data/app/components/lightning_ui_kit/tabs_component.html.erb +30 -0
- data/app/components/lightning_ui_kit/tabs_component.rb +65 -0
- data/app/javascript/lightning_ui_kit/controllers/radio_group_controller.js +74 -0
- data/app/javascript/lightning_ui_kit/controllers/tabs_controller.js +77 -0
- data/app/javascript/lightning_ui_kit/index.js +6 -2
- data/lib/lightning_ui_kit/builder.rb +16 -4
- data/lib/lightning_ui_kit/version.rb +1 -1
- metadata +18 -4
- data/app/components/lightning_ui_kit/banner_component.html.erb +0 -17
- data/app/components/lightning_ui_kit/banner_component.rb +0 -33
- /data/app/javascript/lightning_ui_kit/controllers/{banner_controller.js → alert_controller.js} +0 -0
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
--lui-color-white: #fff;
|
|
17
17
|
--lui-spacing: 0.25rem;
|
|
18
18
|
--lui-container-xs: 20rem;
|
|
19
|
+
--lui-container-md: 28rem;
|
|
19
20
|
--lui-container-3xl: 48rem;
|
|
20
21
|
--lui-container-6xl: 72rem;
|
|
21
22
|
--lui-text-xs: 0.75rem;
|
|
@@ -34,6 +35,7 @@
|
|
|
34
35
|
--lui-font-weight-medium: 500;
|
|
35
36
|
--lui-font-weight-semibold: 600;
|
|
36
37
|
--lui-font-weight-bold: 700;
|
|
38
|
+
--lui-tracking-tight: -0.025em;
|
|
37
39
|
--lui-tracking-widest: 0.1em;
|
|
38
40
|
--lui-leading-snug: 1.375;
|
|
39
41
|
--lui-leading-relaxed: 1.625;
|
|
@@ -231,6 +233,9 @@
|
|
|
231
233
|
.lui\:top-1\/2 {
|
|
232
234
|
top: calc(1 / 2 * 100%);
|
|
233
235
|
}
|
|
236
|
+
.lui\:top-4 {
|
|
237
|
+
top: calc(var(--lui-spacing) * 4);
|
|
238
|
+
}
|
|
234
239
|
.lui\:top-5 {
|
|
235
240
|
top: calc(var(--lui-spacing) * 5);
|
|
236
241
|
}
|
|
@@ -252,6 +257,9 @@
|
|
|
252
257
|
.lui\:left-1\/2 {
|
|
253
258
|
left: calc(1 / 2 * 100%);
|
|
254
259
|
}
|
|
260
|
+
.lui\:left-4 {
|
|
261
|
+
left: calc(var(--lui-spacing) * 4);
|
|
262
|
+
}
|
|
255
263
|
.lui\:isolate {
|
|
256
264
|
isolation: isolate;
|
|
257
265
|
}
|
|
@@ -264,6 +272,15 @@
|
|
|
264
272
|
.lui\:col-start-1 {
|
|
265
273
|
grid-column-start: 1;
|
|
266
274
|
}
|
|
275
|
+
.lui\:col-start-2 {
|
|
276
|
+
grid-column-start: 2;
|
|
277
|
+
}
|
|
278
|
+
.lui\:row-span-2 {
|
|
279
|
+
grid-row: span 2 / span 2;
|
|
280
|
+
}
|
|
281
|
+
.lui\:row-start-1 {
|
|
282
|
+
grid-row-start: 1;
|
|
283
|
+
}
|
|
267
284
|
.lui\:row-start-2 {
|
|
268
285
|
grid-row-start: 2;
|
|
269
286
|
}
|
|
@@ -282,12 +299,12 @@
|
|
|
282
299
|
.lui\:ms-2\.5 {
|
|
283
300
|
margin-inline-start: calc(var(--lui-spacing) * 2.5);
|
|
284
301
|
}
|
|
285
|
-
.lui\:me-2 {
|
|
286
|
-
margin-inline-end: calc(var(--lui-spacing) * 2);
|
|
287
|
-
}
|
|
288
302
|
.lui\:me-3 {
|
|
289
303
|
margin-inline-end: calc(var(--lui-spacing) * 3);
|
|
290
304
|
}
|
|
305
|
+
.lui\:mt-0\.5 {
|
|
306
|
+
margin-top: calc(var(--lui-spacing) * 0.5);
|
|
307
|
+
}
|
|
291
308
|
.lui\:mt-1 {
|
|
292
309
|
margin-top: calc(var(--lui-spacing) * 1);
|
|
293
310
|
}
|
|
@@ -297,12 +314,18 @@
|
|
|
297
314
|
.lui\:mt-2 {
|
|
298
315
|
margin-top: calc(var(--lui-spacing) * 2);
|
|
299
316
|
}
|
|
317
|
+
.lui\:mt-3 {
|
|
318
|
+
margin-top: calc(var(--lui-spacing) * 3);
|
|
319
|
+
}
|
|
300
320
|
.lui\:mt-4 {
|
|
301
321
|
margin-top: calc(var(--lui-spacing) * 4);
|
|
302
322
|
}
|
|
303
323
|
.lui\:mt-8 {
|
|
304
324
|
margin-top: calc(var(--lui-spacing) * 8);
|
|
305
325
|
}
|
|
326
|
+
.lui\:mb-1 {
|
|
327
|
+
margin-bottom: calc(var(--lui-spacing) * 1);
|
|
328
|
+
}
|
|
306
329
|
.lui\:mb-2 {
|
|
307
330
|
margin-bottom: calc(var(--lui-spacing) * 2);
|
|
308
331
|
}
|
|
@@ -342,9 +365,6 @@
|
|
|
342
365
|
.lui\:hidden {
|
|
343
366
|
display: none;
|
|
344
367
|
}
|
|
345
|
-
.lui\:inline {
|
|
346
|
-
display: inline;
|
|
347
|
-
}
|
|
348
368
|
.lui\:inline-block {
|
|
349
369
|
display: inline-block;
|
|
350
370
|
}
|
|
@@ -357,6 +377,10 @@
|
|
|
357
377
|
.lui\:aspect-square {
|
|
358
378
|
aspect-ratio: 1 / 1;
|
|
359
379
|
}
|
|
380
|
+
.lui\:size-2 {
|
|
381
|
+
width: calc(var(--lui-spacing) * 2);
|
|
382
|
+
height: calc(var(--lui-spacing) * 2);
|
|
383
|
+
}
|
|
360
384
|
.lui\:size-4 {
|
|
361
385
|
width: calc(var(--lui-spacing) * 4);
|
|
362
386
|
height: calc(var(--lui-spacing) * 4);
|
|
@@ -401,24 +425,24 @@
|
|
|
401
425
|
.lui\:h-3\.5 {
|
|
402
426
|
height: calc(var(--lui-spacing) * 3.5);
|
|
403
427
|
}
|
|
404
|
-
.lui\:h-4 {
|
|
405
|
-
height: calc(var(--lui-spacing) * 4);
|
|
406
|
-
}
|
|
407
|
-
.lui\:h-5 {
|
|
408
|
-
height: calc(var(--lui-spacing) * 5);
|
|
409
|
-
}
|
|
410
428
|
.lui\:h-6 {
|
|
411
429
|
height: calc(var(--lui-spacing) * 6);
|
|
412
430
|
}
|
|
413
431
|
.lui\:h-8 {
|
|
414
432
|
height: calc(var(--lui-spacing) * 8);
|
|
415
433
|
}
|
|
434
|
+
.lui\:h-9 {
|
|
435
|
+
height: calc(var(--lui-spacing) * 9);
|
|
436
|
+
}
|
|
416
437
|
.lui\:h-10 {
|
|
417
438
|
height: calc(var(--lui-spacing) * 10);
|
|
418
439
|
}
|
|
419
440
|
.lui\:h-11 {
|
|
420
441
|
height: calc(var(--lui-spacing) * 11);
|
|
421
442
|
}
|
|
443
|
+
.lui\:h-\[calc\(100\%-1px\)\] {
|
|
444
|
+
height: calc(100% - 1px);
|
|
445
|
+
}
|
|
422
446
|
.lui\:h-full {
|
|
423
447
|
height: 100%;
|
|
424
448
|
}
|
|
@@ -449,12 +473,6 @@
|
|
|
449
473
|
.lui\:w-3\.5 {
|
|
450
474
|
width: calc(var(--lui-spacing) * 3.5);
|
|
451
475
|
}
|
|
452
|
-
.lui\:w-4 {
|
|
453
|
-
width: calc(var(--lui-spacing) * 4);
|
|
454
|
-
}
|
|
455
|
-
.lui\:w-5 {
|
|
456
|
-
width: calc(var(--lui-spacing) * 5);
|
|
457
|
-
}
|
|
458
476
|
.lui\:w-6 {
|
|
459
477
|
width: calc(var(--lui-spacing) * 6);
|
|
460
478
|
}
|
|
@@ -476,6 +494,9 @@
|
|
|
476
494
|
.lui\:w-\[2\.25rem\] {
|
|
477
495
|
width: 2.25rem;
|
|
478
496
|
}
|
|
497
|
+
.lui\:w-fit {
|
|
498
|
+
width: fit-content;
|
|
499
|
+
}
|
|
479
500
|
.lui\:w-full {
|
|
480
501
|
width: 100%;
|
|
481
502
|
}
|
|
@@ -488,6 +509,9 @@
|
|
|
488
509
|
.lui\:max-w-\[150px\] {
|
|
489
510
|
max-width: 150px;
|
|
490
511
|
}
|
|
512
|
+
.lui\:max-w-md {
|
|
513
|
+
max-width: var(--lui-container-md);
|
|
514
|
+
}
|
|
491
515
|
.lui\:max-w-xs {
|
|
492
516
|
max-width: var(--lui-container-xs);
|
|
493
517
|
}
|
|
@@ -579,6 +603,9 @@
|
|
|
579
603
|
.lui\:appearance-none {
|
|
580
604
|
appearance: none;
|
|
581
605
|
}
|
|
606
|
+
.lui\:auto-rows-min {
|
|
607
|
+
grid-auto-rows: min-content;
|
|
608
|
+
}
|
|
582
609
|
.lui\:grid-cols-1 {
|
|
583
610
|
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
584
611
|
}
|
|
@@ -597,6 +624,9 @@
|
|
|
597
624
|
.lui\:grid-rows-\[1fr_auto\] {
|
|
598
625
|
grid-template-rows: 1fr auto;
|
|
599
626
|
}
|
|
627
|
+
.lui\:grid-rows-\[auto_auto\] {
|
|
628
|
+
grid-template-rows: auto auto;
|
|
629
|
+
}
|
|
600
630
|
.lui\:flex-col {
|
|
601
631
|
flex-direction: column;
|
|
602
632
|
}
|
|
@@ -612,6 +642,9 @@
|
|
|
612
642
|
.lui\:items-center {
|
|
613
643
|
align-items: center;
|
|
614
644
|
}
|
|
645
|
+
.lui\:items-start {
|
|
646
|
+
align-items: flex-start;
|
|
647
|
+
}
|
|
615
648
|
.lui\:justify-between {
|
|
616
649
|
justify-content: space-between;
|
|
617
650
|
}
|
|
@@ -645,6 +678,9 @@
|
|
|
645
678
|
.lui\:gap-4 {
|
|
646
679
|
gap: calc(var(--lui-spacing) * 4);
|
|
647
680
|
}
|
|
681
|
+
.lui\:gap-6 {
|
|
682
|
+
gap: calc(var(--lui-spacing) * 6);
|
|
683
|
+
}
|
|
648
684
|
.lui\:space-y-1 {
|
|
649
685
|
:where(& > :not(:last-child)) {
|
|
650
686
|
--tw-space-y-reverse: 0;
|
|
@@ -652,6 +688,13 @@
|
|
|
652
688
|
margin-block-end: calc(calc(var(--lui-spacing) * 1) * calc(1 - var(--tw-space-y-reverse)));
|
|
653
689
|
}
|
|
654
690
|
}
|
|
691
|
+
.lui\:space-y-2 {
|
|
692
|
+
:where(& > :not(:last-child)) {
|
|
693
|
+
--tw-space-y-reverse: 0;
|
|
694
|
+
margin-block-start: calc(calc(var(--lui-spacing) * 2) * var(--tw-space-y-reverse));
|
|
695
|
+
margin-block-end: calc(calc(var(--lui-spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
|
|
696
|
+
}
|
|
697
|
+
}
|
|
655
698
|
.lui\:space-y-2\.5 {
|
|
656
699
|
:where(& > :not(:last-child)) {
|
|
657
700
|
--tw-space-y-reverse: 0;
|
|
@@ -659,6 +702,13 @@
|
|
|
659
702
|
margin-block-end: calc(calc(var(--lui-spacing) * 2.5) * calc(1 - var(--tw-space-y-reverse)));
|
|
660
703
|
}
|
|
661
704
|
}
|
|
705
|
+
.lui\:space-y-3 {
|
|
706
|
+
:where(& > :not(:last-child)) {
|
|
707
|
+
--tw-space-y-reverse: 0;
|
|
708
|
+
margin-block-start: calc(calc(var(--lui-spacing) * 3) * var(--tw-space-y-reverse));
|
|
709
|
+
margin-block-end: calc(calc(var(--lui-spacing) * 3) * calc(1 - var(--tw-space-y-reverse)));
|
|
710
|
+
}
|
|
711
|
+
}
|
|
662
712
|
.lui\:space-y-4 {
|
|
663
713
|
:where(& > :not(:last-child)) {
|
|
664
714
|
--tw-space-y-reverse: 0;
|
|
@@ -688,9 +738,29 @@
|
|
|
688
738
|
.lui\:gap-y-1 {
|
|
689
739
|
row-gap: calc(var(--lui-spacing) * 1);
|
|
690
740
|
}
|
|
741
|
+
.lui\:divide-y {
|
|
742
|
+
:where(& > :not(:last-child)) {
|
|
743
|
+
--tw-divide-y-reverse: 0;
|
|
744
|
+
border-bottom-style: var(--tw-border-style);
|
|
745
|
+
border-top-style: var(--tw-border-style);
|
|
746
|
+
border-top-width: calc(1px * var(--tw-divide-y-reverse));
|
|
747
|
+
border-bottom-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
|
|
748
|
+
}
|
|
749
|
+
}
|
|
750
|
+
.lui\:divide-border {
|
|
751
|
+
:where(& > :not(:last-child)) {
|
|
752
|
+
border-color: var(--lui-theme-border);
|
|
753
|
+
}
|
|
754
|
+
}
|
|
691
755
|
.lui\:self-center {
|
|
692
756
|
align-self: center;
|
|
693
757
|
}
|
|
758
|
+
.lui\:self-start {
|
|
759
|
+
align-self: flex-start;
|
|
760
|
+
}
|
|
761
|
+
.lui\:justify-self-end {
|
|
762
|
+
justify-self: flex-end;
|
|
763
|
+
}
|
|
694
764
|
.lui\:truncate {
|
|
695
765
|
overflow: hidden;
|
|
696
766
|
text-overflow: ellipsis;
|
|
@@ -735,6 +805,9 @@
|
|
|
735
805
|
.lui\:rounded-md {
|
|
736
806
|
border-radius: var(--lui-radius-md);
|
|
737
807
|
}
|
|
808
|
+
.lui\:rounded-none {
|
|
809
|
+
border-radius: 0;
|
|
810
|
+
}
|
|
738
811
|
.lui\:rounded-xl {
|
|
739
812
|
border-radius: var(--lui-radius-xl);
|
|
740
813
|
}
|
|
@@ -784,10 +857,10 @@
|
|
|
784
857
|
.lui\:border-destructive-border {
|
|
785
858
|
border-color: var(--lui-theme-destructive-border);
|
|
786
859
|
}
|
|
787
|
-
.lui\:border-destructive-border\/
|
|
860
|
+
.lui\:border-destructive-border\/50 {
|
|
788
861
|
border-color: var(--lui-theme-destructive-border);
|
|
789
862
|
@supports (color: color-mix(in lab, red, red)) {
|
|
790
|
-
border-color: color-mix(in oklab, var(--lui-theme-destructive-border)
|
|
863
|
+
border-color: color-mix(in oklab, var(--lui-theme-destructive-border) 50%, transparent);
|
|
791
864
|
}
|
|
792
865
|
}
|
|
793
866
|
.lui\:border-foreground-faint {
|
|
@@ -802,30 +875,39 @@
|
|
|
802
875
|
.lui\:border-success-indicator {
|
|
803
876
|
border-color: var(--lui-theme-success-indicator);
|
|
804
877
|
}
|
|
878
|
+
.lui\:border-success-indicator\/50 {
|
|
879
|
+
border-color: var(--lui-theme-success-indicator);
|
|
880
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
881
|
+
border-color: color-mix(in oklab, var(--lui-theme-success-indicator) 50%, transparent);
|
|
882
|
+
}
|
|
883
|
+
}
|
|
805
884
|
.lui\:border-transparent {
|
|
806
885
|
border-color: transparent;
|
|
807
886
|
}
|
|
808
887
|
.lui\:border-warning-indicator {
|
|
809
888
|
border-color: var(--lui-theme-warning-indicator);
|
|
810
889
|
}
|
|
890
|
+
.lui\:border-warning-indicator\/50 {
|
|
891
|
+
border-color: var(--lui-theme-warning-indicator);
|
|
892
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
893
|
+
border-color: color-mix(in oklab, var(--lui-theme-warning-indicator) 50%, transparent);
|
|
894
|
+
}
|
|
895
|
+
}
|
|
811
896
|
.lui\:border-b-border {
|
|
812
897
|
border-bottom-color: var(--lui-theme-border);
|
|
813
898
|
}
|
|
814
899
|
.lui\:bg-\(--btn-border\) {
|
|
815
900
|
background-color: var(--btn-border);
|
|
816
901
|
}
|
|
902
|
+
.lui\:bg-\(--radio-indicator\) {
|
|
903
|
+
background-color: var(--radio-indicator);
|
|
904
|
+
}
|
|
817
905
|
.lui\:bg-blue-500 {
|
|
818
906
|
background-color: var(--lui-color-blue-500);
|
|
819
907
|
}
|
|
820
908
|
.lui\:bg-destructive {
|
|
821
909
|
background-color: var(--lui-theme-destructive);
|
|
822
910
|
}
|
|
823
|
-
.lui\:bg-destructive\/5 {
|
|
824
|
-
background-color: var(--lui-theme-destructive);
|
|
825
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
826
|
-
background-color: color-mix(in oklab, var(--lui-theme-destructive) 5%, transparent);
|
|
827
|
-
}
|
|
828
|
-
}
|
|
829
911
|
.lui\:bg-destructive\/15 {
|
|
830
912
|
background-color: var(--lui-theme-destructive);
|
|
831
913
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -844,9 +926,6 @@
|
|
|
844
926
|
.lui\:bg-interactive {
|
|
845
927
|
background-color: var(--lui-theme-interactive);
|
|
846
928
|
}
|
|
847
|
-
.lui\:bg-neutral-bg {
|
|
848
|
-
background-color: var(--lui-theme-neutral-bg);
|
|
849
|
-
}
|
|
850
929
|
.lui\:bg-success-bg {
|
|
851
930
|
background-color: var(--lui-theme-success-bg);
|
|
852
931
|
}
|
|
@@ -871,6 +950,9 @@
|
|
|
871
950
|
.lui\:bg-surface-overlay {
|
|
872
951
|
background-color: var(--lui-theme-surface-overlay);
|
|
873
952
|
}
|
|
953
|
+
.lui\:bg-surface-page {
|
|
954
|
+
background-color: var(--lui-theme-surface-page);
|
|
955
|
+
}
|
|
874
956
|
.lui\:bg-surface-secondary {
|
|
875
957
|
background-color: var(--lui-theme-surface-secondary);
|
|
876
958
|
}
|
|
@@ -958,6 +1040,9 @@
|
|
|
958
1040
|
.lui\:px-4 {
|
|
959
1041
|
padding-inline: calc(var(--lui-spacing) * 4);
|
|
960
1042
|
}
|
|
1043
|
+
.lui\:px-6 {
|
|
1044
|
+
padding-inline: calc(var(--lui-spacing) * 6);
|
|
1045
|
+
}
|
|
961
1046
|
.lui\:px-\[calc\(--spacing\(3\.5\)-1px\)\] {
|
|
962
1047
|
padding-inline: calc(calc(var(--lui-spacing) * 3.5) - 1px);
|
|
963
1048
|
}
|
|
@@ -976,8 +1061,11 @@
|
|
|
976
1061
|
.lui\:py-2\.5 {
|
|
977
1062
|
padding-block: calc(var(--lui-spacing) * 2.5);
|
|
978
1063
|
}
|
|
979
|
-
.lui\:py-
|
|
980
|
-
padding-block: calc(var(--lui-spacing) *
|
|
1064
|
+
.lui\:py-4 {
|
|
1065
|
+
padding-block: calc(var(--lui-spacing) * 4);
|
|
1066
|
+
}
|
|
1067
|
+
.lui\:py-6 {
|
|
1068
|
+
padding-block: calc(var(--lui-spacing) * 6);
|
|
981
1069
|
}
|
|
982
1070
|
.lui\:py-9 {
|
|
983
1071
|
padding-block: calc(var(--lui-spacing) * 9);
|
|
@@ -985,12 +1073,12 @@
|
|
|
985
1073
|
.lui\:py-\[calc\(--spacing\(2\.5\)-1px\)\] {
|
|
986
1074
|
padding-block: calc(calc(var(--lui-spacing) * 2.5) - 1px);
|
|
987
1075
|
}
|
|
988
|
-
.lui\:pt-0 {
|
|
989
|
-
padding-top: calc(var(--lui-spacing) * 0);
|
|
990
|
-
}
|
|
991
1076
|
.lui\:pt-1 {
|
|
992
1077
|
padding-top: calc(var(--lui-spacing) * 1);
|
|
993
1078
|
}
|
|
1079
|
+
.lui\:pt-2 {
|
|
1080
|
+
padding-top: calc(var(--lui-spacing) * 2);
|
|
1081
|
+
}
|
|
994
1082
|
.lui\:pt-3 {
|
|
995
1083
|
padding-top: calc(var(--lui-spacing) * 3);
|
|
996
1084
|
}
|
|
@@ -1003,6 +1091,9 @@
|
|
|
1003
1091
|
.lui\:pr-3 {
|
|
1004
1092
|
padding-right: calc(var(--lui-spacing) * 3);
|
|
1005
1093
|
}
|
|
1094
|
+
.lui\:pr-4 {
|
|
1095
|
+
padding-right: calc(var(--lui-spacing) * 4);
|
|
1096
|
+
}
|
|
1006
1097
|
.lui\:pr-10 {
|
|
1007
1098
|
padding-right: calc(var(--lui-spacing) * 10);
|
|
1008
1099
|
}
|
|
@@ -1018,6 +1109,9 @@
|
|
|
1018
1109
|
.lui\:pl-5 {
|
|
1019
1110
|
padding-left: calc(var(--lui-spacing) * 5);
|
|
1020
1111
|
}
|
|
1112
|
+
.lui\:pl-11 {
|
|
1113
|
+
padding-left: calc(var(--lui-spacing) * 11);
|
|
1114
|
+
}
|
|
1021
1115
|
.lui\:pl-\[calc\(--spacing\(3\.5\)-1px\)\] {
|
|
1022
1116
|
padding-left: calc(calc(var(--lui-spacing) * 3.5) - 1px);
|
|
1023
1117
|
}
|
|
@@ -1062,6 +1156,10 @@
|
|
|
1062
1156
|
font-size: var(--lui-text-sm);
|
|
1063
1157
|
line-height: calc(var(--lui-spacing) * 6);
|
|
1064
1158
|
}
|
|
1159
|
+
.lui\:text-sm\/relaxed {
|
|
1160
|
+
font-size: var(--lui-text-sm);
|
|
1161
|
+
line-height: var(--lui-leading-relaxed);
|
|
1162
|
+
}
|
|
1065
1163
|
.lui\:text-xl {
|
|
1066
1164
|
font-size: var(--lui-text-xl);
|
|
1067
1165
|
line-height: var(--tw-leading, var(--lui-text-xl--line-height));
|
|
@@ -1084,6 +1182,10 @@
|
|
|
1084
1182
|
--tw-leading: 18px;
|
|
1085
1183
|
line-height: 18px;
|
|
1086
1184
|
}
|
|
1185
|
+
.lui\:leading-none {
|
|
1186
|
+
--tw-leading: 1;
|
|
1187
|
+
line-height: 1;
|
|
1188
|
+
}
|
|
1087
1189
|
.lui\:leading-relaxed {
|
|
1088
1190
|
--tw-leading: var(--lui-leading-relaxed);
|
|
1089
1191
|
line-height: var(--lui-leading-relaxed);
|
|
@@ -1108,6 +1210,10 @@
|
|
|
1108
1210
|
--tw-font-weight: var(--lui-font-weight-semibold);
|
|
1109
1211
|
font-weight: var(--lui-font-weight-semibold);
|
|
1110
1212
|
}
|
|
1213
|
+
.lui\:tracking-tight {
|
|
1214
|
+
--tw-tracking: var(--lui-tracking-tight);
|
|
1215
|
+
letter-spacing: var(--lui-tracking-tight);
|
|
1216
|
+
}
|
|
1111
1217
|
.lui\:tracking-widest {
|
|
1112
1218
|
--tw-tracking: var(--lui-tracking-widest);
|
|
1113
1219
|
letter-spacing: var(--lui-tracking-widest);
|
|
@@ -1154,9 +1260,6 @@
|
|
|
1154
1260
|
.lui\:text-interactive {
|
|
1155
1261
|
color: var(--lui-theme-interactive);
|
|
1156
1262
|
}
|
|
1157
|
-
.lui\:text-neutral-text {
|
|
1158
|
-
color: var(--lui-theme-neutral-text);
|
|
1159
|
-
}
|
|
1160
1263
|
.lui\:text-red-600 {
|
|
1161
1264
|
color: var(--lui-color-red-600);
|
|
1162
1265
|
}
|
|
@@ -1222,6 +1325,14 @@
|
|
|
1222
1325
|
.lui\:ring-border {
|
|
1223
1326
|
--tw-ring-color: var(--lui-theme-border);
|
|
1224
1327
|
}
|
|
1328
|
+
.lui\:outline-hidden {
|
|
1329
|
+
--tw-outline-style: none;
|
|
1330
|
+
outline-style: none;
|
|
1331
|
+
@media (forced-colors: active) {
|
|
1332
|
+
outline: 2px solid transparent;
|
|
1333
|
+
outline-offset: 2px;
|
|
1334
|
+
}
|
|
1335
|
+
}
|
|
1225
1336
|
.lui\:outline {
|
|
1226
1337
|
outline-style: var(--tw-outline-style);
|
|
1227
1338
|
outline-width: 1px;
|
|
@@ -1235,6 +1346,16 @@
|
|
|
1235
1346
|
outline-color: color-mix(in oklab, var(--lui-color-black) var(--ring-opacity), transparent);
|
|
1236
1347
|
}
|
|
1237
1348
|
}
|
|
1349
|
+
.lui\:backdrop-blur-\[24px\] {
|
|
1350
|
+
--tw-backdrop-blur: blur(24px);
|
|
1351
|
+
-webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
|
|
1352
|
+
backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
|
|
1353
|
+
}
|
|
1354
|
+
.lui\:backdrop-saturate-150 {
|
|
1355
|
+
--tw-backdrop-saturate: saturate(150%);
|
|
1356
|
+
-webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
|
|
1357
|
+
backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
|
|
1358
|
+
}
|
|
1238
1359
|
.lui\:transition {
|
|
1239
1360
|
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
|
|
1240
1361
|
transition-timing-function: var(--tw-ease, var(--lui-default-transition-timing-function));
|
|
@@ -1276,6 +1397,10 @@
|
|
|
1276
1397
|
--tw-duration: 300ms;
|
|
1277
1398
|
transition-duration: 300ms;
|
|
1278
1399
|
}
|
|
1400
|
+
.lui\:ease-\[cubic-bezier\(0\.16\,1\,0\.3\,1\)\] {
|
|
1401
|
+
--tw-ease: cubic-bezier(0.16,1,0.3,1);
|
|
1402
|
+
transition-timing-function: cubic-bezier(0.16,1,0.3,1);
|
|
1403
|
+
}
|
|
1279
1404
|
.lui\:ease-in-out {
|
|
1280
1405
|
--tw-ease: var(--lui-ease-in-out);
|
|
1281
1406
|
transition-timing-function: var(--lui-ease-in-out);
|
|
@@ -1333,6 +1458,15 @@
|
|
|
1333
1458
|
.lui\:\[--gutter\:--spacing\(8\)\] {
|
|
1334
1459
|
--gutter: calc(var(--lui-spacing) * 8);
|
|
1335
1460
|
}
|
|
1461
|
+
.lui\:\[--radio-checked-bg\:var\(--lui-theme-surface-invert\)\] {
|
|
1462
|
+
--radio-checked-bg: var(--lui-theme-surface-invert);
|
|
1463
|
+
}
|
|
1464
|
+
.lui\:\[--radio-checked-border\:var\(--lui-theme-border-invert\)\] {
|
|
1465
|
+
--radio-checked-border: var(--lui-theme-border-invert);
|
|
1466
|
+
}
|
|
1467
|
+
.lui\:\[--radio-indicator\:var\(--lui-theme-foreground-invert\)\] {
|
|
1468
|
+
--radio-indicator: var(--lui-theme-foreground-invert);
|
|
1469
|
+
}
|
|
1336
1470
|
.lui\:\[--ring-opacity\:20\%\] {
|
|
1337
1471
|
--ring-opacity: 20%;
|
|
1338
1472
|
}
|
|
@@ -1417,6 +1551,11 @@
|
|
|
1417
1551
|
background-color: var(--checkbox-checked-border);
|
|
1418
1552
|
}
|
|
1419
1553
|
}
|
|
1554
|
+
.lui\:group-data-checked\:bg-\(--radio-checked-border\) {
|
|
1555
|
+
&:is(:where(.lui\:group)[data-checked] *) {
|
|
1556
|
+
background-color: var(--radio-checked-border);
|
|
1557
|
+
}
|
|
1558
|
+
}
|
|
1420
1559
|
.lui\:group-data-checked\:bg-\(--switch\) {
|
|
1421
1560
|
&:is(:where(.lui\:group)[data-checked] *) {
|
|
1422
1561
|
background-color: var(--switch);
|
|
@@ -1470,6 +1609,14 @@
|
|
|
1470
1609
|
}
|
|
1471
1610
|
}
|
|
1472
1611
|
}
|
|
1612
|
+
.lui\:group-data-disabled\:\[--radio-indicator\:var\(--lui-theme-foreground\)\]\/50 {
|
|
1613
|
+
&:is(:where(.lui\:group)[data-disabled] *) {
|
|
1614
|
+
--radio-indicator: var(--lui-theme-foreground);
|
|
1615
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1616
|
+
--radio-indicator: color-mix(in oklab, var(--lui-theme-foreground) 50%, transparent);
|
|
1617
|
+
}
|
|
1618
|
+
}
|
|
1619
|
+
}
|
|
1473
1620
|
.lui\:group-data-checked\:group-data-disabled\:bg-white {
|
|
1474
1621
|
&:is(:where(.lui\:group)[data-checked] *) {
|
|
1475
1622
|
&:is(:where(.lui\:group)[data-disabled] *) {
|
|
@@ -1628,6 +1775,12 @@
|
|
|
1628
1775
|
border-radius: calc(var(--lui-radius-lg) - 1px);
|
|
1629
1776
|
}
|
|
1630
1777
|
}
|
|
1778
|
+
.lui\:before\:rounded-full {
|
|
1779
|
+
&::before {
|
|
1780
|
+
content: var(--tw-content);
|
|
1781
|
+
border-radius: calc(infinity * 1px);
|
|
1782
|
+
}
|
|
1783
|
+
}
|
|
1631
1784
|
.lui\:before\:bg-\(--btn-bg\) {
|
|
1632
1785
|
&::before {
|
|
1633
1786
|
content: var(--tw-content);
|
|
@@ -1655,6 +1808,14 @@
|
|
|
1655
1808
|
}
|
|
1656
1809
|
}
|
|
1657
1810
|
}
|
|
1811
|
+
.lui\:group-data-checked\:before\:bg-\(--radio-checked-bg\) {
|
|
1812
|
+
&:is(:where(.lui\:group)[data-checked] *) {
|
|
1813
|
+
&::before {
|
|
1814
|
+
content: var(--tw-content);
|
|
1815
|
+
background-color: var(--radio-checked-bg);
|
|
1816
|
+
}
|
|
1817
|
+
}
|
|
1818
|
+
}
|
|
1658
1819
|
.lui\:group-data-disabled\:before\:bg-transparent {
|
|
1659
1820
|
&:is(:where(.lui\:group)[data-disabled] *) {
|
|
1660
1821
|
&::before {
|
|
@@ -1681,12 +1842,24 @@
|
|
|
1681
1842
|
inset: calc(var(--lui-spacing) * 0);
|
|
1682
1843
|
}
|
|
1683
1844
|
}
|
|
1845
|
+
.lui\:after\:inset-x-0 {
|
|
1846
|
+
&::after {
|
|
1847
|
+
content: var(--tw-content);
|
|
1848
|
+
inset-inline: calc(var(--lui-spacing) * 0);
|
|
1849
|
+
}
|
|
1850
|
+
}
|
|
1684
1851
|
.lui\:after\:-top-\[1px\] {
|
|
1685
1852
|
&::after {
|
|
1686
1853
|
content: var(--tw-content);
|
|
1687
1854
|
top: calc(1px * -1);
|
|
1688
1855
|
}
|
|
1689
1856
|
}
|
|
1857
|
+
.lui\:after\:bottom-\[-5px\] {
|
|
1858
|
+
&::after {
|
|
1859
|
+
content: var(--tw-content);
|
|
1860
|
+
bottom: -5px;
|
|
1861
|
+
}
|
|
1862
|
+
}
|
|
1690
1863
|
.lui\:after\:left-\[1px\] {
|
|
1691
1864
|
&::after {
|
|
1692
1865
|
content: var(--tw-content);
|
|
@@ -1699,6 +1872,12 @@
|
|
|
1699
1872
|
z-index: calc(10 * -1);
|
|
1700
1873
|
}
|
|
1701
1874
|
}
|
|
1875
|
+
.lui\:after\:h-0\.5 {
|
|
1876
|
+
&::after {
|
|
1877
|
+
content: var(--tw-content);
|
|
1878
|
+
height: calc(var(--lui-spacing) * 0.5);
|
|
1879
|
+
}
|
|
1880
|
+
}
|
|
1702
1881
|
.lui\:after\:h-\[8\.2px\] {
|
|
1703
1882
|
&::after {
|
|
1704
1883
|
content: var(--tw-content);
|
|
@@ -1729,6 +1908,12 @@
|
|
|
1729
1908
|
border-radius: calc(var(--lui-radius-lg) - 1px);
|
|
1730
1909
|
}
|
|
1731
1910
|
}
|
|
1911
|
+
.lui\:after\:rounded-full {
|
|
1912
|
+
&::after {
|
|
1913
|
+
content: var(--tw-content);
|
|
1914
|
+
border-radius: calc(infinity * 1px);
|
|
1915
|
+
}
|
|
1916
|
+
}
|
|
1732
1917
|
.lui\:after\:rounded-lg {
|
|
1733
1918
|
&::after {
|
|
1734
1919
|
content: var(--tw-content);
|
|
@@ -1796,6 +1981,18 @@
|
|
|
1796
1981
|
border-left-color: var(--lui-theme-warning-indicator);
|
|
1797
1982
|
}
|
|
1798
1983
|
}
|
|
1984
|
+
.lui\:after\:bg-foreground {
|
|
1985
|
+
&::after {
|
|
1986
|
+
content: var(--tw-content);
|
|
1987
|
+
background-color: var(--lui-theme-foreground);
|
|
1988
|
+
}
|
|
1989
|
+
}
|
|
1990
|
+
.lui\:after\:opacity-0 {
|
|
1991
|
+
&::after {
|
|
1992
|
+
content: var(--tw-content);
|
|
1993
|
+
opacity: 0%;
|
|
1994
|
+
}
|
|
1995
|
+
}
|
|
1799
1996
|
.lui\:after\:shadow-\[inset_0_1px_--theme\(--color-white\/15\%\)\] {
|
|
1800
1997
|
&::after {
|
|
1801
1998
|
content: var(--tw-content);
|
|
@@ -1822,6 +2019,14 @@
|
|
|
1822
2019
|
--tw-ring-color: transparent;
|
|
1823
2020
|
}
|
|
1824
2021
|
}
|
|
2022
|
+
.lui\:after\:transition-opacity {
|
|
2023
|
+
&::after {
|
|
2024
|
+
content: var(--tw-content);
|
|
2025
|
+
transition-property: opacity;
|
|
2026
|
+
transition-timing-function: var(--tw-ease, var(--lui-default-transition-timing-function));
|
|
2027
|
+
transition-duration: var(--tw-duration, var(--lui-default-transition-duration));
|
|
2028
|
+
}
|
|
2029
|
+
}
|
|
1825
2030
|
.lui\:after\:ring-inset {
|
|
1826
2031
|
&::after {
|
|
1827
2032
|
content: var(--tw-content);
|
|
@@ -2045,6 +2250,33 @@
|
|
|
2045
2250
|
outline-style: none;
|
|
2046
2251
|
}
|
|
2047
2252
|
}
|
|
2253
|
+
.lui\:focus-visible\:outline {
|
|
2254
|
+
&:focus-visible {
|
|
2255
|
+
outline-style: var(--tw-outline-style);
|
|
2256
|
+
outline-width: 1px;
|
|
2257
|
+
}
|
|
2258
|
+
}
|
|
2259
|
+
.lui\:focus-visible\:outline-2 {
|
|
2260
|
+
&:focus-visible {
|
|
2261
|
+
outline-style: var(--tw-outline-style);
|
|
2262
|
+
outline-width: 2px;
|
|
2263
|
+
}
|
|
2264
|
+
}
|
|
2265
|
+
.lui\:focus-visible\:outline-offset-2 {
|
|
2266
|
+
&:focus-visible {
|
|
2267
|
+
outline-offset: 2px;
|
|
2268
|
+
}
|
|
2269
|
+
}
|
|
2270
|
+
.lui\:focus-visible\:outline-offset-\[-2px\] {
|
|
2271
|
+
&:focus-visible {
|
|
2272
|
+
outline-offset: -2px;
|
|
2273
|
+
}
|
|
2274
|
+
}
|
|
2275
|
+
.lui\:focus-visible\:outline-focus {
|
|
2276
|
+
&:focus-visible {
|
|
2277
|
+
outline-color: var(--lui-theme-focus);
|
|
2278
|
+
}
|
|
2279
|
+
}
|
|
2048
2280
|
.lui\:active\:bg-destructive {
|
|
2049
2281
|
&:active {
|
|
2050
2282
|
background-color: var(--lui-theme-destructive);
|
|
@@ -2078,6 +2310,11 @@
|
|
|
2078
2310
|
}
|
|
2079
2311
|
}
|
|
2080
2312
|
}
|
|
2313
|
+
.lui\:disabled\:pointer-events-none {
|
|
2314
|
+
&:disabled {
|
|
2315
|
+
pointer-events: none;
|
|
2316
|
+
}
|
|
2317
|
+
}
|
|
2081
2318
|
.lui\:disabled\:cursor-not-allowed {
|
|
2082
2319
|
&:disabled {
|
|
2083
2320
|
cursor: not-allowed;
|
|
@@ -2263,11 +2500,45 @@
|
|
|
2263
2500
|
transition-timing-function: var(--lui-ease-in);
|
|
2264
2501
|
}
|
|
2265
2502
|
}
|
|
2503
|
+
.lui\:data-\[active\]\:border-border {
|
|
2504
|
+
&[data-active] {
|
|
2505
|
+
border-color: var(--lui-theme-border);
|
|
2506
|
+
}
|
|
2507
|
+
}
|
|
2508
|
+
.lui\:data-\[active\]\:bg-surface {
|
|
2509
|
+
&[data-active] {
|
|
2510
|
+
background-color: var(--lui-theme-surface);
|
|
2511
|
+
}
|
|
2512
|
+
}
|
|
2266
2513
|
.lui\:data-\[active\]\:bg-surface-hover {
|
|
2267
2514
|
&[data-active] {
|
|
2268
2515
|
background-color: var(--lui-theme-surface-hover);
|
|
2269
2516
|
}
|
|
2270
2517
|
}
|
|
2518
|
+
.lui\:data-\[active\]\:bg-transparent {
|
|
2519
|
+
&[data-active] {
|
|
2520
|
+
background-color: transparent;
|
|
2521
|
+
}
|
|
2522
|
+
}
|
|
2523
|
+
.lui\:data-\[active\]\:text-foreground {
|
|
2524
|
+
&[data-active] {
|
|
2525
|
+
color: var(--lui-theme-foreground);
|
|
2526
|
+
}
|
|
2527
|
+
}
|
|
2528
|
+
.lui\:data-\[active\]\:shadow-sm {
|
|
2529
|
+
&[data-active] {
|
|
2530
|
+
--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));
|
|
2531
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2532
|
+
}
|
|
2533
|
+
}
|
|
2534
|
+
.lui\:data-\[active\]\:after\:opacity-100 {
|
|
2535
|
+
&[data-active] {
|
|
2536
|
+
&::after {
|
|
2537
|
+
content: var(--tw-content);
|
|
2538
|
+
opacity: 100%;
|
|
2539
|
+
}
|
|
2540
|
+
}
|
|
2541
|
+
}
|
|
2271
2542
|
.lui\:data-\[disabled\]\:pointer-events-none {
|
|
2272
2543
|
&[data-disabled] {
|
|
2273
2544
|
pointer-events: none;
|
|
@@ -2390,30 +2661,6 @@
|
|
|
2390
2661
|
}
|
|
2391
2662
|
}
|
|
2392
2663
|
}
|
|
2393
|
-
.lui\:\*\:data-\[slot\=header\]\:bg-destructive\/10 {
|
|
2394
|
-
:is(& > *) {
|
|
2395
|
-
&[data-slot="header"] {
|
|
2396
|
-
background-color: var(--lui-theme-destructive);
|
|
2397
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
2398
|
-
background-color: color-mix(in oklab, var(--lui-theme-destructive) 10%, transparent);
|
|
2399
|
-
}
|
|
2400
|
-
}
|
|
2401
|
-
}
|
|
2402
|
-
}
|
|
2403
|
-
.lui\:\*\:data-\[slot\=header\]\:bg-neutral-bg {
|
|
2404
|
-
:is(& > *) {
|
|
2405
|
-
&[data-slot="header"] {
|
|
2406
|
-
background-color: var(--lui-theme-neutral-bg);
|
|
2407
|
-
}
|
|
2408
|
-
}
|
|
2409
|
-
}
|
|
2410
|
-
.lui\:\*\:data-\[slot\=header\]\:text-destructive-text {
|
|
2411
|
-
:is(& > *) {
|
|
2412
|
-
&[data-slot="header"] {
|
|
2413
|
-
color: var(--lui-theme-destructive-text);
|
|
2414
|
-
}
|
|
2415
|
-
}
|
|
2416
|
-
}
|
|
2417
2664
|
.lui\:\*\:data-\[slot\=icon\]\:-mx-0\.5 {
|
|
2418
2665
|
:is(& > *) {
|
|
2419
2666
|
&[data-slot="icon"] {
|
|
@@ -2606,6 +2853,11 @@
|
|
|
2606
2853
|
flex-direction: row;
|
|
2607
2854
|
}
|
|
2608
2855
|
}
|
|
2856
|
+
.lui\:sm\:gap-3 {
|
|
2857
|
+
@media (width >= 40rem) {
|
|
2858
|
+
gap: calc(var(--lui-spacing) * 3);
|
|
2859
|
+
}
|
|
2860
|
+
}
|
|
2609
2861
|
.lui\:sm\:rounded-2xl {
|
|
2610
2862
|
@media (width >= 40rem) {
|
|
2611
2863
|
border-radius: var(--lui-radius-2xl);
|
|
@@ -2823,11 +3075,6 @@
|
|
|
2823
3075
|
border-radius: var(--lui-radius-lg);
|
|
2824
3076
|
}
|
|
2825
3077
|
}
|
|
2826
|
-
.lui\:lg\:bg-surface-aside {
|
|
2827
|
-
@media (width >= 64rem) {
|
|
2828
|
-
background-color: var(--lui-theme-surface-aside);
|
|
2829
|
-
}
|
|
2830
|
-
}
|
|
2831
3078
|
.lui\:lg\:bg-surface-secondary {
|
|
2832
3079
|
@media (width >= 64rem) {
|
|
2833
3080
|
background-color: var(--lui-theme-surface-secondary);
|
|
@@ -2891,6 +3138,16 @@
|
|
|
2891
3138
|
--checkbox-checked-bg: Highlight;
|
|
2892
3139
|
}
|
|
2893
3140
|
}
|
|
3141
|
+
.lui\:forced-colors\:\[--radio-checked-bg\:Highlight\] {
|
|
3142
|
+
@media (forced-colors: active) {
|
|
3143
|
+
--radio-checked-bg: Highlight;
|
|
3144
|
+
}
|
|
3145
|
+
}
|
|
3146
|
+
.lui\:forced-colors\:\[--radio-indicator\:HighlightText\] {
|
|
3147
|
+
@media (forced-colors: active) {
|
|
3148
|
+
--radio-indicator: HighlightText;
|
|
3149
|
+
}
|
|
3150
|
+
}
|
|
2894
3151
|
.lui\:forced-colors\:\[--switch-bg\:Highlight\] {
|
|
2895
3152
|
@media (forced-colors: active) {
|
|
2896
3153
|
--switch-bg: Highlight;
|
|
@@ -2903,6 +3160,13 @@
|
|
|
2903
3160
|
}
|
|
2904
3161
|
}
|
|
2905
3162
|
}
|
|
3163
|
+
.lui\:forced-colors\:group-data-disabled\:\[--radio-indicator\:Highlight\] {
|
|
3164
|
+
@media (forced-colors: active) {
|
|
3165
|
+
&:is(:where(.lui\:group)[data-disabled] *) {
|
|
3166
|
+
--radio-indicator: Highlight;
|
|
3167
|
+
}
|
|
3168
|
+
}
|
|
3169
|
+
}
|
|
2906
3170
|
.lui\:\[\&_optgroup\]\:font-semibold {
|
|
2907
3171
|
& optgroup {
|
|
2908
3172
|
--tw-font-weight: var(--lui-font-weight-semibold);
|
|
@@ -2924,6 +3188,11 @@
|
|
|
2924
3188
|
margin-top: calc(var(--lui-spacing) * 3);
|
|
2925
3189
|
}
|
|
2926
3190
|
}
|
|
3191
|
+
.lui\:\[\&\>\[data-slot\=description\]\+\[data-slot\=options\]\]\:mt-3 {
|
|
3192
|
+
&>[data-slot=description]+[data-slot=options] {
|
|
3193
|
+
margin-top: calc(var(--lui-spacing) * 3);
|
|
3194
|
+
}
|
|
3195
|
+
}
|
|
2927
3196
|
.lui\:\[\&\>\[data-slot\=label\]\+\[data-slot\=control\]\]\:mt-3 {
|
|
2928
3197
|
&>[data-slot=label]+[data-slot=control] {
|
|
2929
3198
|
margin-top: calc(var(--lui-spacing) * 3);
|
|
@@ -2934,12 +3203,22 @@
|
|
|
2934
3203
|
margin-top: calc(var(--lui-spacing) * 1);
|
|
2935
3204
|
}
|
|
2936
3205
|
}
|
|
3206
|
+
.lui\:\[\&\>\[data-slot\=label\]\+\[data-slot\=options\]\]\:mt-3 {
|
|
3207
|
+
&>[data-slot=label]+[data-slot=options] {
|
|
3208
|
+
margin-top: calc(var(--lui-spacing) * 3);
|
|
3209
|
+
}
|
|
3210
|
+
}
|
|
3211
|
+
.lui\:\[\&\>\[data-slot\=options\]\+\[data-slot\=error\]\]\:mt-3 {
|
|
3212
|
+
&>[data-slot=options]+[data-slot=error] {
|
|
3213
|
+
margin-top: calc(var(--lui-spacing) * 3);
|
|
3214
|
+
}
|
|
3215
|
+
}
|
|
2937
3216
|
}
|
|
2938
3217
|
:root {
|
|
2939
3218
|
--lui-theme-surface: #fff;
|
|
2940
3219
|
--lui-theme-surface-secondary: oklch(0.985 0 0);
|
|
2941
3220
|
--lui-theme-surface-tertiary: oklch(0.967 0.001 286.375);
|
|
2942
|
-
--lui-theme-surface-
|
|
3221
|
+
--lui-theme-surface-page: #f0f0ee;
|
|
2943
3222
|
--lui-theme-surface-input: #fff;
|
|
2944
3223
|
--lui-theme-surface-invert: oklch(0.21 0.006 285.885);
|
|
2945
3224
|
--lui-theme-surface-overlay: oklch(0.141 0.005 285.823 / 25%);
|
|
@@ -2977,7 +3256,7 @@
|
|
|
2977
3256
|
--lui-theme-surface: oklch(0.141 0.005 285.823);
|
|
2978
3257
|
--lui-theme-surface-secondary: oklch(0.21 0.006 285.885);
|
|
2979
3258
|
--lui-theme-surface-tertiary: oklch(0.274 0.006 286.033);
|
|
2980
|
-
--lui-theme-surface-
|
|
3259
|
+
--lui-theme-surface-page: oklch(0.141 0.005 285.823);
|
|
2981
3260
|
--lui-theme-surface-input: color-mix(in oklab, white 5%, transparent);
|
|
2982
3261
|
--lui-theme-surface-invert: oklch(0.985 0 0);
|
|
2983
3262
|
--lui-theme-surface-overlay: oklch(0 0 0 / 50%);
|
|
@@ -3011,6 +3290,12 @@
|
|
|
3011
3290
|
--lui-theme-spinner-primary: oklch(0.705 0.015 286.067);
|
|
3012
3291
|
--lui-theme-spinner-secondary: oklch(0.442 0.017 285.786);
|
|
3013
3292
|
}
|
|
3293
|
+
.lui-page-gradient {
|
|
3294
|
+
background-image: radial-gradient(ellipse at 20% 50%, rgba(200,210,230,0.35) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(220,205,235,0.25) 0%, transparent 50%);
|
|
3295
|
+
}
|
|
3296
|
+
.lui-theme-dark .lui-page-gradient {
|
|
3297
|
+
background-image: radial-gradient(ellipse at 20% 50%, rgba(40,50,80,0.4) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(60,40,80,0.3) 0%, transparent 50%);
|
|
3298
|
+
}
|
|
3014
3299
|
@keyframes icon-bounce {
|
|
3015
3300
|
0% {
|
|
3016
3301
|
scale: 1;
|
|
@@ -3080,6 +3365,11 @@
|
|
|
3080
3365
|
inherits: false;
|
|
3081
3366
|
initial-value: 0;
|
|
3082
3367
|
}
|
|
3368
|
+
@property --tw-divide-y-reverse {
|
|
3369
|
+
syntax: "*";
|
|
3370
|
+
inherits: false;
|
|
3371
|
+
initial-value: 0;
|
|
3372
|
+
}
|
|
3083
3373
|
@property --tw-border-style {
|
|
3084
3374
|
syntax: "*";
|
|
3085
3375
|
inherits: false;
|
|
@@ -3167,6 +3457,42 @@
|
|
|
3167
3457
|
inherits: false;
|
|
3168
3458
|
initial-value: solid;
|
|
3169
3459
|
}
|
|
3460
|
+
@property --tw-backdrop-blur {
|
|
3461
|
+
syntax: "*";
|
|
3462
|
+
inherits: false;
|
|
3463
|
+
}
|
|
3464
|
+
@property --tw-backdrop-brightness {
|
|
3465
|
+
syntax: "*";
|
|
3466
|
+
inherits: false;
|
|
3467
|
+
}
|
|
3468
|
+
@property --tw-backdrop-contrast {
|
|
3469
|
+
syntax: "*";
|
|
3470
|
+
inherits: false;
|
|
3471
|
+
}
|
|
3472
|
+
@property --tw-backdrop-grayscale {
|
|
3473
|
+
syntax: "*";
|
|
3474
|
+
inherits: false;
|
|
3475
|
+
}
|
|
3476
|
+
@property --tw-backdrop-hue-rotate {
|
|
3477
|
+
syntax: "*";
|
|
3478
|
+
inherits: false;
|
|
3479
|
+
}
|
|
3480
|
+
@property --tw-backdrop-invert {
|
|
3481
|
+
syntax: "*";
|
|
3482
|
+
inherits: false;
|
|
3483
|
+
}
|
|
3484
|
+
@property --tw-backdrop-opacity {
|
|
3485
|
+
syntax: "*";
|
|
3486
|
+
inherits: false;
|
|
3487
|
+
}
|
|
3488
|
+
@property --tw-backdrop-saturate {
|
|
3489
|
+
syntax: "*";
|
|
3490
|
+
inherits: false;
|
|
3491
|
+
}
|
|
3492
|
+
@property --tw-backdrop-sepia {
|
|
3493
|
+
syntax: "*";
|
|
3494
|
+
inherits: false;
|
|
3495
|
+
}
|
|
3170
3496
|
@property --tw-duration {
|
|
3171
3497
|
syntax: "*";
|
|
3172
3498
|
inherits: false;
|
|
@@ -3205,6 +3531,7 @@
|
|
|
3205
3531
|
--tw-skew-x: initial;
|
|
3206
3532
|
--tw-skew-y: initial;
|
|
3207
3533
|
--tw-space-y-reverse: 0;
|
|
3534
|
+
--tw-divide-y-reverse: 0;
|
|
3208
3535
|
--tw-border-style: solid;
|
|
3209
3536
|
--tw-leading: initial;
|
|
3210
3537
|
--tw-font-weight: initial;
|
|
@@ -3224,6 +3551,15 @@
|
|
|
3224
3551
|
--tw-ring-offset-color: #fff;
|
|
3225
3552
|
--tw-ring-offset-shadow: 0 0 #0000;
|
|
3226
3553
|
--tw-outline-style: solid;
|
|
3554
|
+
--tw-backdrop-blur: initial;
|
|
3555
|
+
--tw-backdrop-brightness: initial;
|
|
3556
|
+
--tw-backdrop-contrast: initial;
|
|
3557
|
+
--tw-backdrop-grayscale: initial;
|
|
3558
|
+
--tw-backdrop-hue-rotate: initial;
|
|
3559
|
+
--tw-backdrop-invert: initial;
|
|
3560
|
+
--tw-backdrop-opacity: initial;
|
|
3561
|
+
--tw-backdrop-saturate: initial;
|
|
3562
|
+
--tw-backdrop-sepia: initial;
|
|
3227
3563
|
--tw-duration: initial;
|
|
3228
3564
|
--tw-ease: initial;
|
|
3229
3565
|
--tw-content: "";
|