@steedos-widgets/amis-object 3.6.2-beta.7 → 3.6.2-beta.9
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/amis/AmisGlobalHeader.d.ts +1 -31
- package/dist/amis/AmisRecordDetail.d.ts +1 -0
- package/dist/amis-object.cjs.css +319 -225
- package/dist/amis-object.cjs.js +242 -122
- package/dist/amis-object.cjs.js.map +1 -1
- package/dist/amis-object.esm.css +319 -225
- package/dist/amis-object.esm.js +243 -123
- package/dist/amis-object.esm.js.map +1 -1
- package/dist/amis-object.umd.css +319 -225
- package/dist/amis-object.umd.js +91 -53
- package/dist/amis-object.umd.js.map +1 -1
- package/dist/assets.json +21 -21
- package/dist/tailwind-base.css +37 -6
- package/package.json +3 -3
package/dist/amis-object.esm.css
CHANGED
|
@@ -10,14 +10,17 @@
|
|
|
10
10
|
--Table-borderColor: #e5e7eb;
|
|
11
11
|
--Table-borderWidth: 1px;
|
|
12
12
|
--Table-fontSize: 13px;
|
|
13
|
+
--Table-fixedRight-boxShadow: none;
|
|
13
14
|
--Table-thead-borderColor: rgb(209 213 219);
|
|
14
15
|
--Table-thead-fontSize: 13px;
|
|
15
16
|
--Table-thead-bg: rgb(243 244 246);
|
|
17
|
+
--Table-thead-borderColor: var(--Table-borderColor);
|
|
16
18
|
--Table-toolbar-marginY: 0;
|
|
19
|
+
--Table-thead-borderWidth: 1px;
|
|
20
|
+
--Table-bg: white;
|
|
17
21
|
--TableCell-paddingY: 0.3rem;
|
|
18
22
|
--TableCell-paddingX: 0.5rem;
|
|
19
23
|
--TableCell--edge-paddingX: 0.5rem;
|
|
20
|
-
--Table-thead-borderWidth: 1px;
|
|
21
24
|
--text--muted-color: #d9dcde;
|
|
22
25
|
--Collapse-content-fontSize: 14px;
|
|
23
26
|
--Collapse-border: 0;
|
|
@@ -26,6 +29,7 @@
|
|
|
26
29
|
--Collapse-header-onHover-bg: #EEEEEE;
|
|
27
30
|
--Collapse-header-padding: 4px;
|
|
28
31
|
--Collapse-content-padding: 4px;
|
|
32
|
+
--collapse-default-bg-color: unset;
|
|
29
33
|
--Button-height: 2rem;
|
|
30
34
|
--Button-paddingX: 16px;
|
|
31
35
|
--button-size-default-top-right-border-radius: 0.25rem;
|
|
@@ -49,6 +53,8 @@
|
|
|
49
53
|
--DropDown-caret-marginLeft: 0;
|
|
50
54
|
--Tabs--vertical-width: 180px;
|
|
51
55
|
--Tabs-link-maxWidth: 180px;
|
|
56
|
+
--Tabs-content-bg: unset;
|
|
57
|
+
--drawer-content-paddingTop: 0;
|
|
52
58
|
}
|
|
53
59
|
|
|
54
60
|
.steedos-header-container .antd-Nav-Menu {
|
|
@@ -340,6 +346,13 @@ fieldset.antd-Collapse > legend{
|
|
|
340
346
|
}
|
|
341
347
|
/* === end === */
|
|
342
348
|
|
|
349
|
+
.steedos-record-related-crud {
|
|
350
|
+
--Table-thead-bg: white;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
.steedos-record-related-crud .antd-Table-table > thead > tr > th:not(:last-child) {
|
|
354
|
+
border-right: 0px;
|
|
355
|
+
}
|
|
343
356
|
|
|
344
357
|
.ant-dropdown-menu {
|
|
345
358
|
border: 1px solid #e5e5e5;
|
|
@@ -417,9 +430,9 @@ fieldset.antd-Collapse > legend{
|
|
|
417
430
|
text-align: left;
|
|
418
431
|
}
|
|
419
432
|
|
|
420
|
-
.antd-Tabs {
|
|
433
|
+
/* .antd-Tabs {
|
|
421
434
|
margin: 1rem;
|
|
422
|
-
}
|
|
435
|
+
} */
|
|
423
436
|
/* @tailwind base; */
|
|
424
437
|
.container {
|
|
425
438
|
width: 100%
|
|
@@ -449,6 +462,21 @@ fieldset.antd-Collapse > legend{
|
|
|
449
462
|
max-width: 1536px
|
|
450
463
|
}
|
|
451
464
|
}
|
|
465
|
+
@media (min-width: 1600px) {
|
|
466
|
+
.container {
|
|
467
|
+
max-width: 1600px
|
|
468
|
+
}
|
|
469
|
+
}
|
|
470
|
+
@media (min-width: 1800px) {
|
|
471
|
+
.container {
|
|
472
|
+
max-width: 1800px
|
|
473
|
+
}
|
|
474
|
+
}
|
|
475
|
+
@media (min-width: 2000px) {
|
|
476
|
+
.container {
|
|
477
|
+
max-width: 2000px
|
|
478
|
+
}
|
|
479
|
+
}
|
|
452
480
|
.visible {
|
|
453
481
|
visibility: visible
|
|
454
482
|
}
|
|
@@ -468,32 +496,29 @@ fieldset.antd-Collapse > legend{
|
|
|
468
496
|
position: sticky
|
|
469
497
|
}
|
|
470
498
|
.inset-0 {
|
|
471
|
-
|
|
472
|
-
right: 0px;
|
|
473
|
-
bottom: 0px;
|
|
474
|
-
left: 0px
|
|
475
|
-
}
|
|
476
|
-
.top-0 {
|
|
477
|
-
top: 0px
|
|
499
|
+
inset: 0px
|
|
478
500
|
}
|
|
479
|
-
.
|
|
480
|
-
|
|
501
|
+
.bottom-4 {
|
|
502
|
+
bottom: 1rem
|
|
481
503
|
}
|
|
482
504
|
.left-0 {
|
|
483
505
|
left: 0px
|
|
484
506
|
}
|
|
485
|
-
.
|
|
486
|
-
|
|
507
|
+
.right-0 {
|
|
508
|
+
right: 0px
|
|
487
509
|
}
|
|
488
510
|
.right-4 {
|
|
489
511
|
right: 1rem
|
|
490
512
|
}
|
|
491
|
-
.
|
|
492
|
-
|
|
513
|
+
.top-0 {
|
|
514
|
+
top: 0px
|
|
493
515
|
}
|
|
494
516
|
.z-10 {
|
|
495
517
|
z-index: 10
|
|
496
518
|
}
|
|
519
|
+
.z-20 {
|
|
520
|
+
z-index: 20
|
|
521
|
+
}
|
|
497
522
|
.z-40 {
|
|
498
523
|
z-index: 40
|
|
499
524
|
}
|
|
@@ -503,9 +528,6 @@ fieldset.antd-Collapse > legend{
|
|
|
503
528
|
.m-0 {
|
|
504
529
|
margin: 0px
|
|
505
530
|
}
|
|
506
|
-
.m-1 {
|
|
507
|
-
margin: 0.25rem
|
|
508
|
-
}
|
|
509
531
|
.m-2 {
|
|
510
532
|
margin: 0.5rem
|
|
511
533
|
}
|
|
@@ -513,20 +535,20 @@ fieldset.antd-Collapse > legend{
|
|
|
513
535
|
margin-top: 0.5rem;
|
|
514
536
|
margin-bottom: 0.5rem
|
|
515
537
|
}
|
|
516
|
-
|
|
517
|
-
margin-
|
|
538
|
+
.\!mb-6 {
|
|
539
|
+
margin-bottom: 1.5rem !important
|
|
518
540
|
}
|
|
519
|
-
|
|
520
|
-
margin-
|
|
541
|
+
.-mb-4 {
|
|
542
|
+
margin-bottom: -1rem
|
|
521
543
|
}
|
|
522
|
-
|
|
523
|
-
margin-
|
|
544
|
+
.-ml-1 {
|
|
545
|
+
margin-left: -0.25rem
|
|
524
546
|
}
|
|
525
|
-
.-
|
|
526
|
-
margin-
|
|
547
|
+
.-ml-px {
|
|
548
|
+
margin-left: -1px
|
|
527
549
|
}
|
|
528
|
-
.mb-
|
|
529
|
-
margin-bottom:
|
|
550
|
+
.mb-0 {
|
|
551
|
+
margin-bottom: 0px
|
|
530
552
|
}
|
|
531
553
|
.mb-1 {
|
|
532
554
|
margin-bottom: 0.25rem
|
|
@@ -534,23 +556,17 @@ fieldset.antd-Collapse > legend{
|
|
|
534
556
|
.mb-2 {
|
|
535
557
|
margin-bottom: 0.5rem
|
|
536
558
|
}
|
|
537
|
-
.
|
|
538
|
-
margin-
|
|
539
|
-
}
|
|
540
|
-
.-mb-4 {
|
|
541
|
-
margin-bottom: -1rem
|
|
542
|
-
}
|
|
543
|
-
.mr-4 {
|
|
544
|
-
margin-right: 1rem
|
|
559
|
+
.mb-3 {
|
|
560
|
+
margin-bottom: 0.75rem
|
|
545
561
|
}
|
|
546
|
-
.
|
|
547
|
-
margin-
|
|
562
|
+
.mb-4 {
|
|
563
|
+
margin-bottom: 1rem
|
|
548
564
|
}
|
|
549
|
-
.
|
|
550
|
-
margin-
|
|
565
|
+
.mb-\[-3px\] {
|
|
566
|
+
margin-bottom: -3px
|
|
551
567
|
}
|
|
552
|
-
.
|
|
553
|
-
margin-
|
|
568
|
+
.ml-1 {
|
|
569
|
+
margin-left: 0.25rem
|
|
554
570
|
}
|
|
555
571
|
.ml-2 {
|
|
556
572
|
margin-left: 0.5rem
|
|
@@ -558,29 +574,35 @@ fieldset.antd-Collapse > legend{
|
|
|
558
574
|
.ml-4 {
|
|
559
575
|
margin-left: 1rem
|
|
560
576
|
}
|
|
561
|
-
|
|
562
|
-
margin-
|
|
577
|
+
.mr-0 {
|
|
578
|
+
margin-right: 0px
|
|
579
|
+
}
|
|
580
|
+
.mr-1 {
|
|
581
|
+
margin-right: 0.25rem
|
|
582
|
+
}
|
|
583
|
+
.mr-2 {
|
|
584
|
+
margin-right: 0.5rem
|
|
563
585
|
}
|
|
564
586
|
.mr-3 {
|
|
565
587
|
margin-right: 0.75rem
|
|
566
588
|
}
|
|
567
|
-
.
|
|
568
|
-
margin-
|
|
589
|
+
.mr-4 {
|
|
590
|
+
margin-right: 1rem
|
|
569
591
|
}
|
|
570
|
-
.mt
|
|
571
|
-
margin-top:
|
|
592
|
+
.mt-0 {
|
|
593
|
+
margin-top: 0px
|
|
594
|
+
}
|
|
595
|
+
.mt-0\.5 {
|
|
596
|
+
margin-top: 0.125rem
|
|
572
597
|
}
|
|
573
598
|
.mt-1 {
|
|
574
599
|
margin-top: 0.25rem
|
|
575
600
|
}
|
|
576
|
-
|
|
577
|
-
margin-
|
|
578
|
-
}
|
|
579
|
-
.-ml-1 {
|
|
580
|
-
margin-left: -0.25rem
|
|
601
|
+
.mt-2 {
|
|
602
|
+
margin-top: 0.5rem
|
|
581
603
|
}
|
|
582
|
-
.
|
|
583
|
-
margin-
|
|
604
|
+
.mt-\[50px\] {
|
|
605
|
+
margin-top: 50px
|
|
584
606
|
}
|
|
585
607
|
.block {
|
|
586
608
|
display: block
|
|
@@ -609,11 +631,20 @@ fieldset.antd-Collapse > legend{
|
|
|
609
631
|
.hidden {
|
|
610
632
|
display: none
|
|
611
633
|
}
|
|
634
|
+
.\!h-10 {
|
|
635
|
+
height: 2.5rem !important
|
|
636
|
+
}
|
|
637
|
+
.h-10 {
|
|
638
|
+
height: 2.5rem
|
|
639
|
+
}
|
|
640
|
+
.h-12 {
|
|
641
|
+
height: 3rem
|
|
642
|
+
}
|
|
612
643
|
.h-14 {
|
|
613
644
|
height: 3.5rem
|
|
614
645
|
}
|
|
615
|
-
.h-
|
|
616
|
-
height:
|
|
646
|
+
.h-4 {
|
|
647
|
+
height: 1rem
|
|
617
648
|
}
|
|
618
649
|
.h-5 {
|
|
619
650
|
height: 1.25rem
|
|
@@ -621,94 +652,91 @@ fieldset.antd-Collapse > legend{
|
|
|
621
652
|
.h-6 {
|
|
622
653
|
height: 1.5rem
|
|
623
654
|
}
|
|
624
|
-
.h-4 {
|
|
625
|
-
height: 1rem
|
|
626
|
-
}
|
|
627
|
-
.h-12 {
|
|
628
|
-
height: 3rem
|
|
629
|
-
}
|
|
630
|
-
.h-10 {
|
|
631
|
-
height: 2.5rem
|
|
632
|
-
}
|
|
633
|
-
.\!h-10 {
|
|
634
|
-
height: 2.5rem !important
|
|
635
|
-
}
|
|
636
|
-
.h-\[50px\] {
|
|
637
|
-
height: 50px
|
|
638
|
-
}
|
|
639
655
|
.h-7 {
|
|
640
656
|
height: 1.75rem
|
|
641
657
|
}
|
|
642
658
|
.h-8 {
|
|
643
659
|
height: 2rem
|
|
644
660
|
}
|
|
645
|
-
.
|
|
646
|
-
|
|
661
|
+
.h-\[50px\] {
|
|
662
|
+
height: 50px
|
|
647
663
|
}
|
|
648
|
-
.
|
|
649
|
-
|
|
664
|
+
.h-full {
|
|
665
|
+
height: 100%
|
|
650
666
|
}
|
|
651
667
|
.\!max-h-\[80vh\] {
|
|
652
668
|
max-height: 80vh !important
|
|
653
669
|
}
|
|
654
|
-
.
|
|
655
|
-
|
|
670
|
+
.max-h-12 {
|
|
671
|
+
max-height: 3rem
|
|
656
672
|
}
|
|
657
|
-
.
|
|
658
|
-
|
|
673
|
+
.max-h-96 {
|
|
674
|
+
max-height: 24rem
|
|
659
675
|
}
|
|
660
|
-
.
|
|
661
|
-
|
|
676
|
+
.max-h-\[80vh\] {
|
|
677
|
+
max-height: 80vh
|
|
662
678
|
}
|
|
663
|
-
|
|
664
|
-
width:
|
|
679
|
+
.\!w-10 {
|
|
680
|
+
width: 2.5rem !important
|
|
665
681
|
}
|
|
666
|
-
|
|
667
|
-
width:
|
|
682
|
+
.\!w-full {
|
|
683
|
+
width: 100% !important
|
|
684
|
+
}
|
|
685
|
+
.w-1\/3 {
|
|
686
|
+
width: 33.333333%
|
|
668
687
|
}
|
|
669
688
|
.w-10 {
|
|
670
689
|
width: 2.5rem
|
|
671
690
|
}
|
|
672
|
-
.w-auto {
|
|
673
|
-
width: auto
|
|
674
|
-
}
|
|
675
691
|
.w-12 {
|
|
676
692
|
width: 3rem
|
|
677
693
|
}
|
|
678
|
-
.w-
|
|
679
|
-
width:
|
|
694
|
+
.w-14 {
|
|
695
|
+
width: 3.5rem
|
|
680
696
|
}
|
|
681
|
-
|
|
682
|
-
width:
|
|
697
|
+
.w-4 {
|
|
698
|
+
width: 1rem
|
|
699
|
+
}
|
|
700
|
+
.w-6 {
|
|
701
|
+
width: 1.5rem
|
|
683
702
|
}
|
|
684
703
|
.w-64 {
|
|
685
704
|
width: 16rem
|
|
686
705
|
}
|
|
706
|
+
.w-8 {
|
|
707
|
+
width: 2rem
|
|
708
|
+
}
|
|
687
709
|
.w-96 {
|
|
688
710
|
width: 24rem
|
|
689
711
|
}
|
|
690
|
-
|
|
691
|
-
width:
|
|
712
|
+
.w-\[240px\] {
|
|
713
|
+
width: 240px
|
|
692
714
|
}
|
|
693
|
-
.w-
|
|
694
|
-
width:
|
|
715
|
+
.w-auto {
|
|
716
|
+
width: auto
|
|
695
717
|
}
|
|
696
718
|
.w-fit {
|
|
697
719
|
width: -moz-fit-content;
|
|
698
720
|
width: fit-content
|
|
699
721
|
}
|
|
722
|
+
.w-full {
|
|
723
|
+
width: 100%
|
|
724
|
+
}
|
|
700
725
|
.\!min-w-\[160px\] {
|
|
701
726
|
min-width: 160px !important
|
|
702
727
|
}
|
|
728
|
+
.min-w-56 {
|
|
729
|
+
min-width: 14rem
|
|
730
|
+
}
|
|
731
|
+
.min-w-\[200px\] {
|
|
732
|
+
min-width: 200px
|
|
733
|
+
}
|
|
703
734
|
.min-w-\[240px\] {
|
|
704
735
|
min-width: 240px
|
|
705
736
|
}
|
|
706
737
|
.min-w-\[300px\] {
|
|
707
738
|
min-width: 300px
|
|
708
739
|
}
|
|
709
|
-
.min-w-\[200px\] {
|
|
710
|
-
min-width: 200px
|
|
711
|
-
}
|
|
712
740
|
.min-w-\[388px\] {
|
|
713
741
|
min-width: 388px
|
|
714
742
|
}
|
|
@@ -718,18 +746,18 @@ fieldset.antd-Collapse > legend{
|
|
|
718
746
|
.max-w-md {
|
|
719
747
|
max-width: 28rem
|
|
720
748
|
}
|
|
721
|
-
.flex-
|
|
722
|
-
flex:
|
|
749
|
+
.flex-1 {
|
|
750
|
+
flex: 1 1 0%
|
|
723
751
|
}
|
|
724
752
|
.flex-auto {
|
|
725
753
|
flex: 1 1 auto
|
|
726
754
|
}
|
|
755
|
+
.flex-initial {
|
|
756
|
+
flex: 0 1 auto
|
|
757
|
+
}
|
|
727
758
|
.flex-none {
|
|
728
759
|
flex: none
|
|
729
760
|
}
|
|
730
|
-
.flex-1 {
|
|
731
|
-
flex: 1 1 0%
|
|
732
|
-
}
|
|
733
761
|
.flex-shrink-0 {
|
|
734
762
|
flex-shrink: 0
|
|
735
763
|
}
|
|
@@ -751,6 +779,9 @@ fieldset.antd-Collapse > legend{
|
|
|
751
779
|
.animate-spin {
|
|
752
780
|
animation: spin 1s linear infinite
|
|
753
781
|
}
|
|
782
|
+
.grid-cols-1 {
|
|
783
|
+
grid-template-columns: repeat(1, minmax(0, 1fr))
|
|
784
|
+
}
|
|
754
785
|
.flex-row {
|
|
755
786
|
flex-direction: row
|
|
756
787
|
}
|
|
@@ -813,18 +844,18 @@ fieldset.antd-Collapse > legend{
|
|
|
813
844
|
.break-words {
|
|
814
845
|
overflow-wrap: break-word
|
|
815
846
|
}
|
|
816
|
-
.rounded-full {
|
|
817
|
-
border-radius: 9999px
|
|
818
|
-
}
|
|
819
847
|
.rounded {
|
|
820
848
|
border-radius: 0.25rem
|
|
821
849
|
}
|
|
822
|
-
.rounded-
|
|
823
|
-
border-radius:
|
|
850
|
+
.rounded-full {
|
|
851
|
+
border-radius: 9999px
|
|
824
852
|
}
|
|
825
853
|
.rounded-md {
|
|
826
854
|
border-radius: 0.375rem
|
|
827
855
|
}
|
|
856
|
+
.rounded-xl {
|
|
857
|
+
border-radius: 0.75rem
|
|
858
|
+
}
|
|
828
859
|
.border-0 {
|
|
829
860
|
border-width: 0px
|
|
830
861
|
}
|
|
@@ -832,9 +863,6 @@ fieldset.antd-Collapse > legend{
|
|
|
832
863
|
border-top-width: 1px;
|
|
833
864
|
border-bottom-width: 1px
|
|
834
865
|
}
|
|
835
|
-
.border-t {
|
|
836
|
-
border-top-width: 1px
|
|
837
|
-
}
|
|
838
866
|
.border-b {
|
|
839
867
|
border-bottom-width: 1px
|
|
840
868
|
}
|
|
@@ -847,132 +875,129 @@ fieldset.antd-Collapse > legend{
|
|
|
847
875
|
.border-solid {
|
|
848
876
|
border-style: solid
|
|
849
877
|
}
|
|
850
|
-
.border-none {
|
|
851
|
-
border-style: none
|
|
852
|
-
}
|
|
853
878
|
.\!border-none {
|
|
854
879
|
border-style: none !important
|
|
855
880
|
}
|
|
856
|
-
.border-
|
|
857
|
-
|
|
858
|
-
border-color: rgb(209 213 219 / var(--tw-border-opacity))
|
|
881
|
+
.border-none {
|
|
882
|
+
border-style: none
|
|
859
883
|
}
|
|
860
884
|
.border-gray-200 {
|
|
861
885
|
--tw-border-opacity: 1;
|
|
862
886
|
border-color: rgb(229 231 235 / var(--tw-border-opacity))
|
|
863
887
|
}
|
|
888
|
+
.border-gray-300 {
|
|
889
|
+
--tw-border-opacity: 1;
|
|
890
|
+
border-color: rgb(209 213 219 / var(--tw-border-opacity))
|
|
891
|
+
}
|
|
864
892
|
.border-sky-500 {
|
|
865
893
|
--tw-border-opacity: 1;
|
|
866
894
|
border-color: rgb(14 165 233 / var(--tw-border-opacity))
|
|
867
895
|
}
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
background-color: rgb(255 255 255 / var(--tw-bg-opacity))
|
|
896
|
+
.\!bg-transparent {
|
|
897
|
+
background-color: transparent !important
|
|
871
898
|
}
|
|
872
899
|
.bg-blue-500 {
|
|
873
900
|
--tw-bg-opacity: 1;
|
|
874
901
|
background-color: rgb(59 130 246 / var(--tw-bg-opacity))
|
|
875
902
|
}
|
|
876
|
-
|
|
877
|
-
|
|
903
|
+
.bg-gray-100 {
|
|
904
|
+
--tw-bg-opacity: 1;
|
|
905
|
+
background-color: rgb(243 244 246 / var(--tw-bg-opacity))
|
|
878
906
|
}
|
|
879
907
|
.bg-transparent {
|
|
880
908
|
background-color: transparent
|
|
881
909
|
}
|
|
882
|
-
.bg-
|
|
910
|
+
.bg-white {
|
|
883
911
|
--tw-bg-opacity: 1;
|
|
884
|
-
background-color: rgb(
|
|
912
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity))
|
|
885
913
|
}
|
|
886
914
|
.bg-none {
|
|
887
915
|
background-image: none
|
|
888
916
|
}
|
|
889
|
-
.fill-slate-500 {
|
|
890
|
-
fill: #64748b
|
|
891
|
-
}
|
|
892
917
|
.fill-gray-500 {
|
|
893
918
|
fill: #6b7280
|
|
894
919
|
}
|
|
895
|
-
.
|
|
896
|
-
|
|
920
|
+
.fill-slate-500 {
|
|
921
|
+
fill: #64748b
|
|
922
|
+
}
|
|
923
|
+
.\!p-2 {
|
|
924
|
+
padding: 0.5rem !important
|
|
897
925
|
}
|
|
898
926
|
.p-0 {
|
|
899
927
|
padding: 0px
|
|
900
928
|
}
|
|
929
|
+
.p-1 {
|
|
930
|
+
padding: 0.25rem
|
|
931
|
+
}
|
|
901
932
|
.p-2 {
|
|
902
933
|
padding: 0.5rem
|
|
903
934
|
}
|
|
904
|
-
|
|
905
|
-
padding:
|
|
906
|
-
}
|
|
907
|
-
.p-1 {
|
|
908
|
-
padding: 0.25rem
|
|
935
|
+
.p-4 {
|
|
936
|
+
padding: 1rem
|
|
909
937
|
}
|
|
910
938
|
.px-0 {
|
|
911
939
|
padding-left: 0px;
|
|
912
940
|
padding-right: 0px
|
|
913
941
|
}
|
|
914
|
-
.
|
|
915
|
-
padding-
|
|
916
|
-
padding-
|
|
942
|
+
.px-2 {
|
|
943
|
+
padding-left: 0.5rem;
|
|
944
|
+
padding-right: 0.5rem
|
|
917
945
|
}
|
|
918
946
|
.px-4 {
|
|
919
947
|
padding-left: 1rem;
|
|
920
948
|
padding-right: 1rem
|
|
921
949
|
}
|
|
922
|
-
.py-2 {
|
|
923
|
-
padding-top: 0.5rem;
|
|
924
|
-
padding-bottom: 0.5rem
|
|
925
|
-
}
|
|
926
|
-
.px-2 {
|
|
927
|
-
padding-left: 0.5rem;
|
|
928
|
-
padding-right: 0.5rem
|
|
929
|
-
}
|
|
930
950
|
.py-1 {
|
|
931
951
|
padding-top: 0.25rem;
|
|
932
952
|
padding-bottom: 0.25rem
|
|
933
953
|
}
|
|
954
|
+
.py-2 {
|
|
955
|
+
padding-top: 0.5rem;
|
|
956
|
+
padding-bottom: 0.5rem
|
|
957
|
+
}
|
|
934
958
|
.py-2\.5 {
|
|
935
959
|
padding-top: 0.625rem;
|
|
936
960
|
padding-bottom: 0.625rem
|
|
937
961
|
}
|
|
938
|
-
.
|
|
939
|
-
padding-top: 1rem
|
|
940
|
-
|
|
941
|
-
.pb-2 {
|
|
942
|
-
padding-bottom: 0.5rem
|
|
962
|
+
.py-4 {
|
|
963
|
+
padding-top: 1rem;
|
|
964
|
+
padding-bottom: 1rem
|
|
943
965
|
}
|
|
944
|
-
.
|
|
945
|
-
padding-
|
|
966
|
+
.pb-0 {
|
|
967
|
+
padding-bottom: 0px
|
|
946
968
|
}
|
|
947
|
-
.
|
|
948
|
-
padding-
|
|
969
|
+
.pb-16 {
|
|
970
|
+
padding-bottom: 4rem
|
|
949
971
|
}
|
|
950
|
-
.
|
|
951
|
-
padding-
|
|
972
|
+
.pb-4 {
|
|
973
|
+
padding-bottom: 1rem
|
|
952
974
|
}
|
|
953
|
-
.pl-
|
|
954
|
-
padding-left:
|
|
975
|
+
.pl-0 {
|
|
976
|
+
padding-left: 0px
|
|
955
977
|
}
|
|
956
978
|
.pl-1 {
|
|
957
979
|
padding-left: 0.25rem
|
|
958
980
|
}
|
|
959
|
-
.
|
|
960
|
-
padding-
|
|
981
|
+
.pl-1\.5 {
|
|
982
|
+
padding-left: 0.375rem
|
|
983
|
+
}
|
|
984
|
+
.pl-4 {
|
|
985
|
+
padding-left: 1rem
|
|
961
986
|
}
|
|
962
987
|
.pl-5 {
|
|
963
988
|
padding-left: 1.25rem
|
|
964
989
|
}
|
|
965
|
-
.
|
|
966
|
-
padding-
|
|
990
|
+
.pr-4 {
|
|
991
|
+
padding-right: 1rem
|
|
967
992
|
}
|
|
968
|
-
.
|
|
969
|
-
padding-
|
|
993
|
+
.pt-0 {
|
|
994
|
+
padding-top: 0px
|
|
970
995
|
}
|
|
971
|
-
.
|
|
972
|
-
padding-
|
|
996
|
+
.pt-2 {
|
|
997
|
+
padding-top: 0.5rem
|
|
973
998
|
}
|
|
974
|
-
.
|
|
975
|
-
padding-
|
|
999
|
+
.pt-4 {
|
|
1000
|
+
padding-top: 1rem
|
|
976
1001
|
}
|
|
977
1002
|
.text-left {
|
|
978
1003
|
text-align: left
|
|
@@ -980,38 +1005,38 @@ fieldset.antd-Collapse > legend{
|
|
|
980
1005
|
.text-center {
|
|
981
1006
|
text-align: center
|
|
982
1007
|
}
|
|
983
|
-
.text
|
|
1008
|
+
.text-\[11px\] {
|
|
1009
|
+
font-size: 11px
|
|
1010
|
+
}
|
|
1011
|
+
.text-\[14px\] {
|
|
984
1012
|
font-size: 14px
|
|
985
1013
|
}
|
|
986
|
-
.text-
|
|
1014
|
+
.text-base {
|
|
987
1015
|
font-size: 14px
|
|
988
1016
|
}
|
|
989
1017
|
.text-lg {
|
|
990
1018
|
font-size: 16px
|
|
991
1019
|
}
|
|
992
|
-
.text-
|
|
993
|
-
font-size: 18px
|
|
994
|
-
}
|
|
995
|
-
.text-\[14px\] {
|
|
1020
|
+
.text-md {
|
|
996
1021
|
font-size: 14px
|
|
997
1022
|
}
|
|
998
|
-
.text
|
|
999
|
-
font-size:
|
|
1023
|
+
.text-xl {
|
|
1024
|
+
font-size: 18px
|
|
1000
1025
|
}
|
|
1001
1026
|
.text-xs {
|
|
1002
1027
|
font-size: 12px
|
|
1003
1028
|
}
|
|
1004
|
-
.font-semibold {
|
|
1005
|
-
font-weight: 600
|
|
1006
|
-
}
|
|
1007
1029
|
.font-bold {
|
|
1008
1030
|
font-weight: 700
|
|
1009
1031
|
}
|
|
1010
1032
|
.font-medium {
|
|
1011
1033
|
font-weight: 500
|
|
1012
1034
|
}
|
|
1013
|
-
.
|
|
1014
|
-
|
|
1035
|
+
.font-semibold {
|
|
1036
|
+
font-weight: 600
|
|
1037
|
+
}
|
|
1038
|
+
.leading-3 {
|
|
1039
|
+
line-height: .75rem
|
|
1015
1040
|
}
|
|
1016
1041
|
.leading-4 {
|
|
1017
1042
|
line-height: 1rem
|
|
@@ -1022,12 +1047,8 @@ fieldset.antd-Collapse > legend{
|
|
|
1022
1047
|
.leading-6 {
|
|
1023
1048
|
line-height: 1.5rem
|
|
1024
1049
|
}
|
|
1025
|
-
.leading-
|
|
1026
|
-
line-height:
|
|
1027
|
-
}
|
|
1028
|
-
.text-white {
|
|
1029
|
-
--tw-text-opacity: 1;
|
|
1030
|
-
color: rgb(255 255 255 / var(--tw-text-opacity))
|
|
1050
|
+
.leading-none {
|
|
1051
|
+
line-height: 1
|
|
1031
1052
|
}
|
|
1032
1053
|
.text-\[blue\] {
|
|
1033
1054
|
--tw-text-opacity: 1;
|
|
@@ -1037,34 +1058,38 @@ fieldset.antd-Collapse > legend{
|
|
|
1037
1058
|
--tw-text-opacity: 1;
|
|
1038
1059
|
color: rgb(255 0 0 / var(--tw-text-opacity))
|
|
1039
1060
|
}
|
|
1040
|
-
.text-
|
|
1061
|
+
.text-black {
|
|
1041
1062
|
--tw-text-opacity: 1;
|
|
1042
|
-
color: rgb(
|
|
1063
|
+
color: rgb(0 0 0 / var(--tw-text-opacity))
|
|
1064
|
+
}
|
|
1065
|
+
.text-blue-600 {
|
|
1066
|
+
--tw-text-opacity: 1;
|
|
1067
|
+
color: rgb(37 99 235 / var(--tw-text-opacity))
|
|
1043
1068
|
}
|
|
1044
1069
|
.text-gray-500 {
|
|
1045
1070
|
--tw-text-opacity: 1;
|
|
1046
1071
|
color: rgb(107 114 128 / var(--tw-text-opacity))
|
|
1047
1072
|
}
|
|
1048
|
-
.text-
|
|
1073
|
+
.text-gray-700 {
|
|
1049
1074
|
--tw-text-opacity: 1;
|
|
1050
|
-
color: rgb(
|
|
1075
|
+
color: rgb(55 65 81 / var(--tw-text-opacity))
|
|
1051
1076
|
}
|
|
1052
1077
|
.text-gray-800 {
|
|
1053
1078
|
--tw-text-opacity: 1;
|
|
1054
1079
|
color: rgb(31 41 55 / var(--tw-text-opacity))
|
|
1055
1080
|
}
|
|
1056
|
-
.text-
|
|
1057
|
-
--tw-text-opacity: 1;
|
|
1058
|
-
color: rgb(37 99 235 / var(--tw-text-opacity))
|
|
1059
|
-
}
|
|
1060
|
-
.text-gray-700 {
|
|
1081
|
+
.text-green-600 {
|
|
1061
1082
|
--tw-text-opacity: 1;
|
|
1062
|
-
color: rgb(
|
|
1083
|
+
color: rgb(22 163 74 / var(--tw-text-opacity))
|
|
1063
1084
|
}
|
|
1064
1085
|
.text-sky-500 {
|
|
1065
1086
|
--tw-text-opacity: 1;
|
|
1066
1087
|
color: rgb(14 165 233 / var(--tw-text-opacity))
|
|
1067
1088
|
}
|
|
1089
|
+
.text-white {
|
|
1090
|
+
--tw-text-opacity: 1;
|
|
1091
|
+
color: rgb(255 255 255 / var(--tw-text-opacity))
|
|
1092
|
+
}
|
|
1068
1093
|
.no-underline {
|
|
1069
1094
|
text-decoration-line: none
|
|
1070
1095
|
}
|
|
@@ -1074,9 +1099,9 @@ fieldset.antd-Collapse > legend{
|
|
|
1074
1099
|
.opacity-75 {
|
|
1075
1100
|
opacity: 0.75
|
|
1076
1101
|
}
|
|
1077
|
-
.shadow
|
|
1078
|
-
--tw-shadow: 0 0
|
|
1079
|
-
--tw-shadow-colored: 0 0
|
|
1102
|
+
.shadow {
|
|
1103
|
+
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
1104
|
+
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
|
1080
1105
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
|
|
1081
1106
|
}
|
|
1082
1107
|
.shadow-lg {
|
|
@@ -1084,21 +1109,21 @@ fieldset.antd-Collapse > legend{
|
|
|
1084
1109
|
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
|
1085
1110
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
|
|
1086
1111
|
}
|
|
1087
|
-
.shadow {
|
|
1088
|
-
--tw-shadow: 0
|
|
1089
|
-
--tw-shadow-colored: 0
|
|
1112
|
+
.shadow-none {
|
|
1113
|
+
--tw-shadow: 0 0 #0000;
|
|
1114
|
+
--tw-shadow-colored: 0 0 #0000;
|
|
1090
1115
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
|
|
1091
1116
|
}
|
|
1092
1117
|
.blur {
|
|
1093
1118
|
--tw-blur: blur(8px);
|
|
1094
1119
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
|
|
1095
1120
|
}
|
|
1096
|
-
.filter {
|
|
1097
|
-
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
|
|
1098
|
-
}
|
|
1099
1121
|
.\!filter {
|
|
1100
1122
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important
|
|
1101
1123
|
}
|
|
1124
|
+
.filter {
|
|
1125
|
+
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
|
|
1126
|
+
}
|
|
1102
1127
|
.backdrop-blur {
|
|
1103
1128
|
--tw-backdrop-blur: blur(8px);
|
|
1104
1129
|
-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);
|
|
@@ -1109,20 +1134,20 @@ fieldset.antd-Collapse > legend{
|
|
|
1109
1134
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1110
1135
|
transition-duration: 150ms
|
|
1111
1136
|
}
|
|
1112
|
-
.duration-500 {
|
|
1113
|
-
transition-duration: 500ms
|
|
1114
|
-
}
|
|
1115
1137
|
.duration-300 {
|
|
1116
1138
|
transition-duration: 300ms
|
|
1117
1139
|
}
|
|
1140
|
+
.duration-500 {
|
|
1141
|
+
transition-duration: 500ms
|
|
1142
|
+
}
|
|
1118
1143
|
.ease-in-out {
|
|
1119
1144
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1)
|
|
1120
1145
|
}
|
|
1121
1146
|
.first\:pt-0:first-child {
|
|
1122
1147
|
padding-top: 0px
|
|
1123
1148
|
}
|
|
1124
|
-
.last\:border-0:last-child {
|
|
1125
|
-
border-width: 0px
|
|
1149
|
+
.last\:border-b-0:last-child {
|
|
1150
|
+
border-bottom-width: 0px
|
|
1126
1151
|
}
|
|
1127
1152
|
.hover\:bg-sky-50:hover {
|
|
1128
1153
|
--tw-bg-opacity: 1;
|
|
@@ -1154,6 +1179,9 @@ fieldset.antd-Collapse > legend{
|
|
|
1154
1179
|
.sm\:w-\[220px\] {
|
|
1155
1180
|
width: 220px
|
|
1156
1181
|
}
|
|
1182
|
+
.sm\:grid-cols-2 {
|
|
1183
|
+
grid-template-columns: repeat(2, minmax(0, 1fr))
|
|
1184
|
+
}
|
|
1157
1185
|
.sm\:grid-cols-4 {
|
|
1158
1186
|
grid-template-columns: repeat(4, minmax(0, 1fr))
|
|
1159
1187
|
}
|
|
@@ -1195,6 +1223,11 @@ fieldset.antd-Collapse > legend{
|
|
|
1195
1223
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
|
|
1196
1224
|
}
|
|
1197
1225
|
}
|
|
1226
|
+
@media (min-width: 768px) {
|
|
1227
|
+
.md\:grid-cols-3 {
|
|
1228
|
+
grid-template-columns: repeat(3, minmax(0, 1fr))
|
|
1229
|
+
}
|
|
1230
|
+
}
|
|
1198
1231
|
@media (min-width: 1024px) {
|
|
1199
1232
|
.lg\:z-50 {
|
|
1200
1233
|
z-index: 50
|
|
@@ -1208,10 +1241,74 @@ fieldset.antd-Collapse > legend{
|
|
|
1208
1241
|
.lg\:flex {
|
|
1209
1242
|
display: flex
|
|
1210
1243
|
}
|
|
1244
|
+
.lg\:grid-cols-4 {
|
|
1245
|
+
grid-template-columns: repeat(4, minmax(0, 1fr))
|
|
1246
|
+
}
|
|
1247
|
+
.lg\:grid-cols-5 {
|
|
1248
|
+
grid-template-columns: repeat(5, minmax(0, 1fr))
|
|
1249
|
+
}
|
|
1211
1250
|
.lg\:flex-col {
|
|
1212
1251
|
flex-direction: column
|
|
1213
1252
|
}
|
|
1214
1253
|
}
|
|
1254
|
+
@media (min-width: 1280px) {
|
|
1255
|
+
.xl\:grid-cols-1 {
|
|
1256
|
+
grid-template-columns: repeat(1, minmax(0, 1fr))
|
|
1257
|
+
}
|
|
1258
|
+
.xl\:grid-cols-10 {
|
|
1259
|
+
grid-template-columns: repeat(10, minmax(0, 1fr))
|
|
1260
|
+
}
|
|
1261
|
+
.xl\:grid-cols-11 {
|
|
1262
|
+
grid-template-columns: repeat(11, minmax(0, 1fr))
|
|
1263
|
+
}
|
|
1264
|
+
.xl\:grid-cols-12 {
|
|
1265
|
+
grid-template-columns: repeat(12, minmax(0, 1fr))
|
|
1266
|
+
}
|
|
1267
|
+
.xl\:grid-cols-2 {
|
|
1268
|
+
grid-template-columns: repeat(2, minmax(0, 1fr))
|
|
1269
|
+
}
|
|
1270
|
+
.xl\:grid-cols-3 {
|
|
1271
|
+
grid-template-columns: repeat(3, minmax(0, 1fr))
|
|
1272
|
+
}
|
|
1273
|
+
.xl\:grid-cols-4 {
|
|
1274
|
+
grid-template-columns: repeat(4, minmax(0, 1fr))
|
|
1275
|
+
}
|
|
1276
|
+
.xl\:grid-cols-5 {
|
|
1277
|
+
grid-template-columns: repeat(5, minmax(0, 1fr))
|
|
1278
|
+
}
|
|
1279
|
+
.xl\:grid-cols-6 {
|
|
1280
|
+
grid-template-columns: repeat(6, minmax(0, 1fr))
|
|
1281
|
+
}
|
|
1282
|
+
.xl\:grid-cols-7 {
|
|
1283
|
+
grid-template-columns: repeat(7, minmax(0, 1fr))
|
|
1284
|
+
}
|
|
1285
|
+
.xl\:grid-cols-8 {
|
|
1286
|
+
grid-template-columns: repeat(8, minmax(0, 1fr))
|
|
1287
|
+
}
|
|
1288
|
+
.xl\:grid-cols-9 {
|
|
1289
|
+
grid-template-columns: repeat(9, minmax(0, 1fr))
|
|
1290
|
+
}
|
|
1291
|
+
}
|
|
1292
|
+
@media (min-width: 1536px) {
|
|
1293
|
+
.\32xl\:grid-cols-5 {
|
|
1294
|
+
grid-template-columns: repeat(5, minmax(0, 1fr))
|
|
1295
|
+
}
|
|
1296
|
+
}
|
|
1297
|
+
@media (min-width: 1600px) {
|
|
1298
|
+
.\33xl\:grid-cols-8 {
|
|
1299
|
+
grid-template-columns: repeat(8, minmax(0, 1fr))
|
|
1300
|
+
}
|
|
1301
|
+
}
|
|
1302
|
+
@media (min-width: 1800px) {
|
|
1303
|
+
.\34xl\:grid-cols-8 {
|
|
1304
|
+
grid-template-columns: repeat(8, minmax(0, 1fr))
|
|
1305
|
+
}
|
|
1306
|
+
}
|
|
1307
|
+
@media (min-width: 2000px) {
|
|
1308
|
+
.\35xl\:grid-cols-10 {
|
|
1309
|
+
grid-template-columns: repeat(10, minmax(0, 1fr))
|
|
1310
|
+
}
|
|
1311
|
+
}
|
|
1215
1312
|
|
|
1216
1313
|
.ant-dropdown-menu {
|
|
1217
1314
|
border: 1px solid #e5e5e5;
|
|
@@ -1673,16 +1770,13 @@ body.steedos {
|
|
|
1673
1770
|
.steedos-amis-form .antd-Form--horizontal .antd-Tabs .antd-Tabs-content .antd-Tabs-pane .form-content {
|
|
1674
1771
|
display: grid;
|
|
1675
1772
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
1676
|
-
row-gap:
|
|
1773
|
+
row-gap: 0.5rem;
|
|
1677
1774
|
-moz-column-gap: 1rem;
|
|
1678
1775
|
column-gap: 1rem;
|
|
1679
1776
|
}
|
|
1680
1777
|
.steedos-amis-form .antd-Collapse .antd-Form--quickEdit {
|
|
1681
1778
|
grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
|
|
1682
1779
|
}
|
|
1683
|
-
.steedos-amis-form.antd-Form .antd-Collapse-content {
|
|
1684
|
-
padding: 0.5rem;
|
|
1685
|
-
}
|
|
1686
1780
|
.steedos-object-form .antd-ComboControl .antd-Combo .antd-Form-row {
|
|
1687
1781
|
display: grid;
|
|
1688
1782
|
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
@@ -1696,7 +1790,7 @@ body.steedos {
|
|
|
1696
1790
|
.steedos-object-form .antd-Tabs-pane.is-active {
|
|
1697
1791
|
display: grid;
|
|
1698
1792
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
1699
|
-
row-gap:
|
|
1793
|
+
row-gap: 0.25rem;
|
|
1700
1794
|
-moz-column-gap: 1rem;
|
|
1701
1795
|
column-gap: 1rem;
|
|
1702
1796
|
}
|
|
@@ -1801,10 +1895,10 @@ body.steedos {
|
|
|
1801
1895
|
height: var(--button-size-default-height);
|
|
1802
1896
|
}
|
|
1803
1897
|
.steedos-object-listview .split-dropdown-buttons li {
|
|
1804
|
-
padding: unset;
|
|
1805
1898
|
height: unset;
|
|
1806
1899
|
}
|
|
1807
1900
|
.steedos-object-listview .split-dropdown-buttons li .antd-Button {
|
|
1901
|
+
padding: 0;
|
|
1808
1902
|
border: none !important;
|
|
1809
1903
|
background: unset !important;
|
|
1810
1904
|
width: 100%;
|
|
@@ -1934,8 +2028,7 @@ body.steedos {
|
|
|
1934
2028
|
min-width: 0.5px !important;
|
|
1935
2029
|
}
|
|
1936
2030
|
.steedos-object-table tbody td.antd-Field--quickEditable .antd-Field-quickEditBtn {
|
|
1937
|
-
padding-
|
|
1938
|
-
float: right;
|
|
2031
|
+
padding-right: 13px;
|
|
1939
2032
|
}
|
|
1940
2033
|
.steedos-object-table tbody td.antd-Field--quickEditable .antd-Field-quickEditBtn svg {
|
|
1941
2034
|
display: none;
|
|
@@ -2067,7 +2160,6 @@ body.steedos {
|
|
|
2067
2160
|
|
|
2068
2161
|
.compact-layouts {
|
|
2069
2162
|
display: grid;
|
|
2070
|
-
grid-template-columns: repeat(5, minmax(0, 1fr));
|
|
2071
2163
|
row-gap: 0rem;
|
|
2072
2164
|
-moz-column-gap: 1rem;
|
|
2073
2165
|
column-gap: 1rem;
|
|
@@ -2108,8 +2200,10 @@ body.steedos {
|
|
|
2108
2200
|
display: block;
|
|
2109
2201
|
}
|
|
2110
2202
|
.steedos-record-detail-popover .compact-layouts {
|
|
2111
|
-
display:
|
|
2112
|
-
|
|
2203
|
+
display: block;
|
|
2204
|
+
}
|
|
2205
|
+
.steedos-record-detail-popover .compact-layouts .grid {
|
|
2206
|
+
grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
|
|
2113
2207
|
}
|
|
2114
2208
|
.steedos-record-detail-popover .compact-layouts .antd-Form-item {
|
|
2115
2209
|
padding: 0px;
|