linkmore-design 1.0.82 → 1.0.83

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.
Files changed (88) hide show
  1. package/dist/Form/style/index.d.ts +0 -3
  2. package/dist/LmEditTable/EditTable.d.ts +6 -0
  3. package/dist/LmEditTable/util.d.ts +1 -0
  4. package/dist/LmTable/components/customRenderEmpty.d.ts +2 -0
  5. package/dist/LmTable/demos/virtual.d.ts +2 -0
  6. package/dist/LmTable/util.d.ts +16 -0
  7. package/dist/LmTable/virTual/VirtualRow.d.ts +6 -0
  8. package/dist/LmTable/virTual/VirtualTable.d.ts +3 -0
  9. package/dist/LmTable/virTual/VirtualWrapper.d.ts +3 -0
  10. package/dist/LmTable/virTual/context.d.ts +13 -0
  11. package/dist/LmTable/virTual/index.d.ts +4 -0
  12. package/dist/TestTable/LmBox.d.ts +12 -0
  13. package/dist/TestTable/demos/basic.d.ts +6 -0
  14. package/dist/TestTable/index.d.ts +2 -0
  15. package/dist/TestTable/style/index.d.ts +1 -0
  16. package/dist/index.umd.js +764 -369
  17. package/dist/index.umd.min.js +3 -3
  18. package/es/Form/style/form.css +603 -0
  19. package/es/Form/style/grid.css +5185 -0
  20. package/es/Form/style/index.css +6 -1
  21. package/es/Form/style/index.d.ts +0 -3
  22. package/es/Form/style/index.js +0 -4
  23. package/es/Form/style/tooltip.css +275 -0
  24. package/es/LmEditTable/EditTable.d.ts +6 -0
  25. package/es/LmEditTable/EditTable.js +63 -81
  26. package/es/LmEditTable/sortableItemCol.js +6 -3
  27. package/es/LmEditTable/style/index.css +7 -0
  28. package/es/LmEditTable/util.d.ts +1 -0
  29. package/es/LmEditTable/util.js +5 -0
  30. package/es/LmTable/Table.js +308 -173
  31. package/es/LmTable/components/customRenderEmpty.d.ts +2 -0
  32. package/es/LmTable/components/customRenderEmpty.js +15 -0
  33. package/es/LmTable/components/sheelTableCell.js +14 -8
  34. package/es/LmTable/style/index.css +177 -152
  35. package/es/LmTable/util.js +105 -0
  36. package/es/LmTable/virTual/VirtualRow.d.ts +6 -0
  37. package/es/LmTable/virTual/VirtualRow.js +102 -0
  38. package/es/LmTable/virTual/VirtualTable.d.ts +3 -0
  39. package/es/LmTable/virTual/VirtualTable.js +52 -0
  40. package/es/LmTable/virTual/VirtualWrapper.d.ts +3 -0
  41. package/es/LmTable/virTual/VirtualWrapper.js +61 -0
  42. package/es/LmTable/virTual/context.d.ts +13 -0
  43. package/es/LmTable/virTual/context.js +54 -0
  44. package/es/LmTable/virTual/index.d.ts +4 -0
  45. package/es/LmTable/virTual/index.js +4 -0
  46. package/es/TestTable/LmBox.d.ts +12 -0
  47. package/es/TestTable/LmBox.js +6 -0
  48. package/es/TestTable/index.d.ts +2 -0
  49. package/es/TestTable/index.js +2 -0
  50. package/es/TestTable/style/index.css +10 -0
  51. package/es/TestTable/style/index.js +3 -0
  52. package/es/hooks/useFullscreen/index.js +23 -2
  53. package/lib/Form/style/form.css +603 -0
  54. package/lib/Form/style/grid.css +5185 -0
  55. package/lib/Form/style/index.css +6 -1
  56. package/lib/Form/style/index.d.ts +0 -3
  57. package/lib/Form/style/index.js +0 -6
  58. package/lib/Form/style/tooltip.css +275 -0
  59. package/lib/LmEditTable/EditTable.d.ts +6 -0
  60. package/lib/LmEditTable/EditTable.js +64 -80
  61. package/lib/LmEditTable/sortableItemCol.js +6 -3
  62. package/lib/LmEditTable/style/index.css +7 -0
  63. package/lib/LmEditTable/util.d.ts +1 -0
  64. package/lib/LmEditTable/util.js +12 -0
  65. package/lib/LmTable/Table.js +308 -173
  66. package/lib/LmTable/components/customRenderEmpty.d.ts +2 -0
  67. package/lib/LmTable/components/customRenderEmpty.js +25 -0
  68. package/lib/LmTable/components/sheelTableCell.js +14 -8
  69. package/lib/LmTable/style/index.css +177 -152
  70. package/lib/LmTable/util.js +105 -0
  71. package/lib/LmTable/virTual/VirtualRow.d.ts +6 -0
  72. package/lib/LmTable/virTual/VirtualRow.js +115 -0
  73. package/lib/LmTable/virTual/VirtualTable.d.ts +3 -0
  74. package/lib/LmTable/virTual/VirtualTable.js +69 -0
  75. package/lib/LmTable/virTual/VirtualWrapper.d.ts +3 -0
  76. package/lib/LmTable/virTual/VirtualWrapper.js +74 -0
  77. package/lib/LmTable/virTual/context.d.ts +13 -0
  78. package/lib/LmTable/virTual/context.js +64 -0
  79. package/lib/LmTable/virTual/index.d.ts +4 -0
  80. package/lib/LmTable/virTual/index.js +31 -0
  81. package/lib/TestTable/LmBox.d.ts +12 -0
  82. package/lib/TestTable/LmBox.js +17 -0
  83. package/lib/TestTable/index.d.ts +2 -0
  84. package/lib/TestTable/index.js +13 -0
  85. package/lib/TestTable/style/index.css +10 -0
  86. package/lib/TestTable/style/index.js +3 -0
  87. package/lib/hooks/useFullscreen/index.js +23 -2
  88. package/package.json +1 -1
@@ -514,8 +514,8 @@ p {
514
514
  display: flex;
515
515
  flex-flow: column;
516
516
  height: 100%;
517
- background-color: #fff;
518
517
  padding: 16px;
518
+ background-color: #fff;
519
519
  }
520
520
  .z_container .ant-tabs,
521
521
  .z_container .ant-tabs-content,
@@ -542,28 +542,28 @@ p {
542
542
  .z_container .ant-spin-container .ant-table {
543
543
  position: relative;
544
544
  flex: 1;
545
- border-left: 1px solid var(--border-color);
546
545
  border-right: 1px solid var(--border-color);
546
+ border-left: 1px solid var(--border-color);
547
547
  }
548
548
  .z_container .ant-spin-container .ant-table::before {
549
- content: '';
550
549
  position: absolute;
551
- left: 0;
552
- right: 0;
553
550
  top: 0;
551
+ right: 0;
552
+ left: 0;
553
+ z-index: 4;
554
554
  height: 1px;
555
555
  background-color: var(--border-color);
556
- z-index: 4;
556
+ content: '';
557
557
  }
558
558
  .z_container .ant-spin-container .ant-table::after {
559
- content: '';
560
559
  position: absolute;
561
- left: 0;
562
560
  right: 0;
563
561
  bottom: 0;
562
+ left: 0;
563
+ z-index: 4;
564
564
  height: 1px;
565
565
  background-color: var(--border-color);
566
- z-index: 4;
566
+ content: '';
567
567
  }
568
568
  .lm_operate {
569
569
  display: flex;
@@ -580,9 +580,9 @@ p {
580
580
  display: inline-flex;
581
581
  align-items: center;
582
582
  justify-content: center;
583
- line-height: 1;
584
583
  padding-top: 0;
585
584
  padding-bottom: 0;
585
+ line-height: 1;
586
586
  }
587
587
  .lm_operate .anticon + span,
588
588
  .lm_operate span + .anticon {
@@ -602,13 +602,13 @@ p {
602
602
  }
603
603
  .lm_operate .ant-input-sm {
604
604
  width: 180px;
605
- font-size: 12px;
606
605
  height: var(--basic-height);
607
606
  padding: 0 10px;
607
+ font-size: 12px;
608
608
  }
609
609
  .lm_operate .ant-select.ant-select-single .ant-select-selector {
610
- font-size: 12px;
611
610
  width: 160px;
611
+ font-size: 12px;
612
612
  }
613
613
  .lm_operate .ant-picker {
614
614
  font-size: 12px;
@@ -630,24 +630,24 @@ p {
630
630
  flex: 1;
631
631
  }
632
632
  .lm_operate .ant-spin-container .ant-table::before {
633
- content: '';
634
633
  position: absolute;
635
- left: 0;
636
- right: 0;
637
634
  top: 0;
635
+ right: 0;
636
+ left: 0;
637
+ z-index: 4;
638
638
  height: 1px;
639
639
  background-color: var(--border-color);
640
- z-index: 4;
640
+ content: '';
641
641
  }
642
642
  .lm_operate .ant-spin-container .ant-table::after {
643
- content: '';
644
643
  position: absolute;
645
- left: 0;
646
644
  right: 0;
647
645
  bottom: 0;
646
+ left: 0;
647
+ z-index: 4;
648
648
  height: 1px;
649
649
  background-color: var(--border-color);
650
- z-index: 4;
650
+ content: '';
651
651
  }
652
652
  .lm_grid {
653
653
  position: relative;
@@ -661,7 +661,7 @@ p {
661
661
  font-size: 12px;
662
662
  }
663
663
  .lm_grid .ant-pro-table .ant-table.ant-table-small .ant-table-tbody td {
664
- padding: 4px 8px;
664
+ padding: 4px 8px !important;
665
665
  }
666
666
  .lm_grid .ant-pro-table .ant-table-thead {
667
667
  height: 40px;
@@ -669,20 +669,20 @@ p {
669
669
  .lm_grid .ant-pro-table .ant-table-thead .text-overflow,
670
670
  .lm_grid .ant-pro-table .ant-table-thead .text-overflow .ant-table-column-title {
671
671
  overflow: hidden;
672
- text-overflow: ellipsis;
673
672
  white-space: nowrap;
673
+ text-overflow: ellipsis;
674
674
  }
675
675
  .lm_grid .ant-pro-table .ant-table-thead .ant-table-filter-trigger {
676
676
  margin-right: 0;
677
677
  }
678
678
  .lm_grid .ant-pro-table .ant-table-tbody .ant-table-cell.number {
679
- border-left: 1px solid #eee;
680
679
  border-right: 1px solid #eee;
680
+ border-left: 1px solid #eee;
681
681
  }
682
682
  .lm_grid .ant-pro-table .ant-table-tbody .ant-table-cell.money {
683
- border-left: 1px solid #eee;
684
- border-right: 1px solid #eee;
685
683
  color: var(--error-color);
684
+ border-right: 1px solid #eee;
685
+ border-left: 1px solid #eee;
686
686
  }
687
687
  .lm_grid .ant-pro-table .ant-table-tbody .ant-table-cell.money-color {
688
688
  color: var(--error-color);
@@ -697,8 +697,8 @@ p {
697
697
  color: var(--success-color);
698
698
  }
699
699
  .lm_grid .ant-pro-table .ant-table-tbody .ant-typography.ant-typography-ellipsis .ant-typography-edit {
700
- opacity: 0;
701
700
  color: var(--primary-color);
701
+ opacity: 0;
702
702
  transition: 0.3s;
703
703
  }
704
704
  .lm_grid .ant-pro-table .ant-table-tbody .ant-typography.ant-typography-ellipsis:hover .ant-typography-edit {
@@ -708,29 +708,29 @@ p {
708
708
  height: 48px;
709
709
  }
710
710
  .lm_grid .ant-pro-table .ant-table-summary td {
711
+ padding: 0 8px;
711
712
  text-align: right;
712
713
  background-color: var(--table-background-color);
713
- padding: 0 8px;
714
714
  }
715
715
  .lm_grid .ant-pro-table .ant-table-summary td:first-of-type {
716
- text-align: left;
717
716
  padding: 0 0 0 8px;
717
+ text-align: left;
718
718
  }
719
719
  .lm_grid .ant-pro-table .ant-table-summary td.number {
720
- border-left: 1px solid #eee;
721
720
  border-right: 1px solid #eee;
721
+ border-left: 1px solid #eee;
722
722
  }
723
723
  .lm_grid .ant-pro-table .ant-table-summary td.money {
724
- border-left: 1px solid #eee;
725
- border-right: 1px solid #eee;
726
724
  color: var(--error-color);
725
+ border-right: 1px solid #eee;
726
+ border-left: 1px solid #eee;
727
727
  }
728
728
  .lm_grid .ant-pro-table .ant-table-summary td.money-color {
729
729
  color: var(--error-color);
730
730
  }
731
731
  .lm_grid .ant-pro-table .ant-table-summary td > div {
732
- white-space: nowrap;
733
732
  overflow: hidden;
733
+ white-space: nowrap;
734
734
  text-overflow: ellipsis;
735
735
  }
736
736
  .lm_grid .ant-pro-table .ant-table-summary td > div:last-of-type {
@@ -745,31 +745,31 @@ p {
745
745
  }
746
746
  .lm_grid .ant-pro-table .ant-pro-table-list-toolbar-container .ant-pro-table-list-toolbar-right {
747
747
  position: absolute;
748
- right: 1px;
749
748
  top: 1px;
749
+ right: 1px;
750
750
  z-index: 4;
751
- font-size: 16px;
751
+ justify-content: center;
752
752
  width: 48px;
753
753
  height: 38px;
754
- justify-content: center;
754
+ font-size: 16px;
755
755
  background-color: #fafafa;
756
756
  }
757
757
  .lm_grid .ant-pro-table .ant-pro-table-list-toolbar-container .ant-pro-table-list-toolbar-right::after {
758
- content: '';
759
758
  position: absolute;
760
- left: 0;
761
759
  top: 50%;
762
- transform: translateY(-50%);
763
- height: 1.6em;
760
+ left: 0;
764
761
  width: 1px;
762
+ height: 1.6em;
765
763
  background-color: rgba(0, 0, 0, 0.06);
764
+ transform: translateY(-50%);
765
+ content: '';
766
766
  }
767
767
  .lm_grid .ant-pro-table .ant-table-row {
768
768
  position: relative;
769
769
  }
770
770
  .lm_grid .ant-pro-table .ant-table-row .operate_fixed_right .operate_btn {
771
- font-size: 12px;
772
771
  color: var(--primary-color);
772
+ font-size: 12px;
773
773
  }
774
774
  .lm_grid .ant-pro-table .ant-table-row .operate_fixed_right .operate_btn .ant-space-item {
775
775
  cursor: pointer;
@@ -781,17 +781,17 @@ p {
781
781
  font-size: 12px;
782
782
  }
783
783
  .lm_grid .ant-table-pagination.ant-pagination {
784
- font-size: 12px;
785
- padding-top: 12px;
786
784
  margin: 0;
785
+ padding-top: 12px;
786
+ font-size: 12px;
787
787
  }
788
788
  .lm_grid .ant-table-pagination.ant-pagination .ant-select {
789
789
  font-size: inherit;
790
790
  }
791
791
  .z_flex {
792
792
  display: flex;
793
- flex-flow: column;
794
793
  flex: 1;
794
+ flex-flow: column;
795
795
  height: 100%;
796
796
  }
797
797
  .ant-popover {
@@ -836,13 +836,21 @@ p {
836
836
  #lm_protable_warp .lm_protable .ant-table {
837
837
  font-size: 12px;
838
838
  }
839
+ #lm_protable_warp .lm_protable .ant-table td {
840
+ position: relative;
841
+ }
842
+ #lm_protable_warp .lm_protable .ant-table td.unselection::selection,
843
+ #lm_protable_warp .lm_protable .ant-table td.unselection *::selection {
844
+ color: inherit;
845
+ background: inherit;
846
+ }
839
847
  #lm_protable_warp .lm_protable .ant-table td.selected,
840
848
  #lm_protable_warp .lm_protable .ant-table td.editing {
841
849
  border: 1px solid var(--primary-color);
850
+ border-right: 0;
842
851
  border-bottom: 0px;
843
- transition: none;
844
852
  box-shadow: inset 0 -100px 0 rgb(33 133 13.86666667%);
845
- border-right: 0;
853
+ transition: none;
846
854
  }
847
855
  #lm_protable_warp .lm_protable .ant-table td.selected.end,
848
856
  #lm_protable_warp .lm_protable .ant-table td.editing.end {
@@ -852,16 +860,30 @@ p {
852
860
  #lm_protable_warp .lm_protable .ant-table td.editing.right_end {
853
861
  border-right: 1px solid var(--primary-color);
854
862
  }
863
+ #lm_protable_warp .lm_protable .ant-table td.selected.commiting,
864
+ #lm_protable_warp .lm_protable .ant-table td.editing.commiting {
865
+ border-style: dotted !important;
866
+ }
867
+ #lm_protable_warp .lm_protable .ant-table td.selected .lmtable_cell_end_icon,
868
+ #lm_protable_warp .lm_protable .ant-table td.editing .lmtable_cell_end_icon {
869
+ position: absolute;
870
+ right: 0;
871
+ bottom: 0;
872
+ width: 4px;
873
+ height: 4px;
874
+ background-color: var(--primary-color);
875
+ cursor: cell;
876
+ }
855
877
  #lm_protable_warp .lm_protable .ant-table td.selected .data-editor,
856
878
  #lm_protable_warp .lm_protable .ant-table td.editing .data-editor {
857
- border: 0;
858
879
  background: none;
880
+ border: 0;
859
881
  }
860
882
  #lm_protable_warp .lm_protable .ant-table td.selected input,
861
883
  #lm_protable_warp .lm_protable .ant-table td.editing input {
862
884
  background: none;
863
- outline: none !important;
864
885
  border: 0;
886
+ outline: none !important;
865
887
  }
866
888
  #lm_protable_warp .lm_protable .ant-table td.selected input:hover,
867
889
  #lm_protable_warp .lm_protable .ant-table td.editing input:hover {
@@ -883,28 +905,28 @@ p {
883
905
  #lm_protable_warp .lm_protable .ant-spin-container .ant-table {
884
906
  position: relative;
885
907
  flex: 1;
886
- border-left: 1px solid var(--border-color);
887
908
  border-right: 1px solid var(--border-color);
909
+ border-left: 1px solid var(--border-color);
888
910
  }
889
911
  #lm_protable_warp .lm_protable .ant-spin-container .ant-table::before {
890
- content: '';
891
912
  position: absolute;
892
- left: 0;
893
- right: 0;
894
913
  top: 0;
914
+ right: 0;
915
+ left: 0;
916
+ z-index: 4;
895
917
  height: 1px;
896
918
  background-color: var(--border-color);
897
- z-index: 4;
919
+ content: '';
898
920
  }
899
921
  #lm_protable_warp .lm_protable .ant-spin-container .ant-table::after {
900
- content: '';
901
922
  position: absolute;
902
- left: 0;
903
923
  right: 0;
904
924
  bottom: 0;
925
+ left: 0;
926
+ z-index: 4;
905
927
  height: 1px;
906
928
  background-color: var(--border-color);
907
- z-index: 4;
929
+ content: '';
908
930
  }
909
931
  #lm_protable_warp .lm_protable .ant-table-thead {
910
932
  height: 40px;
@@ -912,28 +934,28 @@ p {
912
934
  #lm_protable_warp .lm_protable .ant-table-thead .text-overflow,
913
935
  #lm_protable_warp .lm_protable .ant-table-thead .text-overflow .ant-table-column-title {
914
936
  overflow: hidden;
915
- text-overflow: ellipsis;
916
937
  white-space: nowrap;
938
+ text-overflow: ellipsis;
917
939
  }
918
940
  #lm_protable_warp .lm_protable .ant-table-thead .ant-table-filter-trigger {
919
941
  margin-right: 0;
920
942
  }
921
943
  #lm_protable_warp .lm_protable .ant-table-thead > tr > th {
922
- background: var(--color-4);
923
- font-size: 12px;
924
944
  padding: 8px;
945
+ font-size: 12px;
946
+ background: var(--color-4);
925
947
  }
926
948
  #lm_protable_warp .lm_protable .ant-table.ant-table-small {
927
949
  font-size: 12px;
928
950
  }
929
951
  #lm_protable_warp .lm_protable .ant-pro-table .ant-table-tbody .ant-table-cell.number {
930
- border-left: 1px solid #eee;
931
952
  border-right: 1px solid #eee;
953
+ border-left: 1px solid #eee;
932
954
  }
933
955
  #lm_protable_warp .lm_protable .ant-pro-table .ant-table-tbody .ant-table-cell.money {
934
- border-left: 1px solid #eee;
935
- border-right: 1px solid #eee;
936
956
  color: var(--error-color);
957
+ border-right: 1px solid #eee;
958
+ border-left: 1px solid #eee;
937
959
  }
938
960
  #lm_protable_warp .lm_protable .ant-pro-table .ant-table-tbody .ant-table-cell.money-color {
939
961
  color: var(--error-color);
@@ -948,8 +970,8 @@ p {
948
970
  color: var(--success-color);
949
971
  }
950
972
  #lm_protable_warp .lm_protable .ant-pro-table .ant-table-tbody .ant-typography.ant-typography-ellipsis .ant-typography-edit {
951
- opacity: 0;
952
973
  color: var(--primary-color);
974
+ opacity: 0;
953
975
  transition: 0.3s;
954
976
  }
955
977
  #lm_protable_warp .lm_protable .ant-pro-table .ant-table-tbody .ant-typography.ant-typography-ellipsis:hover .ant-typography-edit {
@@ -959,29 +981,29 @@ p {
959
981
  height: 48px;
960
982
  }
961
983
  #lm_protable_warp .lm_protable .ant-pro-table .ant-table-summary td {
984
+ padding: 0 8px;
962
985
  text-align: right;
963
986
  background-color: var(--table-background-color);
964
- padding: 0 8px;
965
987
  }
966
988
  #lm_protable_warp .lm_protable .ant-pro-table .ant-table-summary td:first-of-type {
967
- text-align: left;
968
989
  padding: 0 0 0 8px;
990
+ text-align: left;
969
991
  }
970
992
  #lm_protable_warp .lm_protable .ant-pro-table .ant-table-summary td.number {
971
- border-left: 1px solid #eee;
972
993
  border-right: 1px solid #eee;
994
+ border-left: 1px solid #eee;
973
995
  }
974
996
  #lm_protable_warp .lm_protable .ant-pro-table .ant-table-summary td.money {
975
- border-left: 1px solid #eee;
976
- border-right: 1px solid #eee;
977
997
  color: var(--error-color);
998
+ border-right: 1px solid #eee;
999
+ border-left: 1px solid #eee;
978
1000
  }
979
1001
  #lm_protable_warp .lm_protable .ant-pro-table .ant-table-summary td.money-color {
980
1002
  color: var(--error-color);
981
1003
  }
982
1004
  #lm_protable_warp .lm_protable .ant-pro-table .ant-table-summary td > div {
983
- white-space: nowrap;
984
1005
  overflow: hidden;
1006
+ white-space: nowrap;
985
1007
  text-overflow: ellipsis;
986
1008
  }
987
1009
  #lm_protable_warp .lm_protable .ant-pro-table .ant-table-summary td > div:last-of-type {
@@ -996,31 +1018,31 @@ p {
996
1018
  }
997
1019
  #lm_protable_warp .lm_protable .ant-pro-table .ant-pro-table-list-toolbar-container .ant-pro-table-list-toolbar-right {
998
1020
  position: absolute;
999
- right: 1px;
1000
1021
  top: 1px;
1022
+ right: 1px;
1001
1023
  z-index: 4;
1002
- font-size: 16px;
1024
+ justify-content: center;
1003
1025
  width: 48px;
1004
1026
  height: 38px;
1005
- justify-content: center;
1027
+ font-size: 16px;
1006
1028
  background-color: #fafafa;
1007
1029
  }
1008
1030
  #lm_protable_warp .lm_protable .ant-pro-table .ant-pro-table-list-toolbar-container .ant-pro-table-list-toolbar-right::after {
1009
- content: '';
1010
1031
  position: absolute;
1011
- left: 0;
1012
1032
  top: 50%;
1013
- transform: translateY(-50%);
1014
- height: 1.6em;
1033
+ left: 0;
1015
1034
  width: 1px;
1035
+ height: 1.6em;
1016
1036
  background-color: rgba(0, 0, 0, 0.06);
1037
+ transform: translateY(-50%);
1038
+ content: '';
1017
1039
  }
1018
1040
  #lm_protable_warp .lm_protable .ant-pro-table .ant-table-row {
1019
1041
  position: relative;
1020
1042
  }
1021
1043
  #lm_protable_warp .lm_protable .ant-pro-table .ant-table-row .operate_fixed_right .operate_btn {
1022
- font-size: 12px;
1023
1044
  color: var(--primary-color);
1045
+ font-size: 12px;
1024
1046
  }
1025
1047
  #lm_protable_warp .lm_protable .ant-pro-table .ant-table-row .operate_fixed_right .operate_btn .ant-space-item {
1026
1048
  cursor: pointer;
@@ -1029,23 +1051,23 @@ p {
1029
1051
  font-size: 12px;
1030
1052
  }
1031
1053
  #lm_protable_warp .lm_protable .ant-table-expanded-row .ant-table-thead > tr > th:first-child::before {
1032
- content: '';
1033
1054
  position: absolute;
1034
- width: 32px;
1035
- height: 1px;
1055
+ top: 100%;
1036
1056
  bottom: 0;
1037
1057
  left: -32px;
1038
- top: 100%;
1058
+ width: 32px;
1059
+ height: 1px;
1039
1060
  background: #f0f0f0;
1061
+ content: '';
1040
1062
  }
1041
1063
  #lm_protable_warp .lm_protable .ant-table-expanded-row .ant-table-row > td:first-child::before {
1042
- content: '';
1043
1064
  position: absolute;
1044
- width: 32px;
1045
- height: 1px;
1046
1065
  bottom: -1px;
1047
1066
  left: -32px;
1067
+ width: 32px;
1068
+ height: 1px;
1048
1069
  background: #f0f0f0;
1070
+ content: '';
1049
1071
  }
1050
1072
  #lm_protable_warp .lm_protable .ant-table-expanded-row > td {
1051
1073
  padding: 0px;
@@ -1069,22 +1091,22 @@ p {
1069
1091
  margin-right: 16px !important;
1070
1092
  }
1071
1093
  #lm_protable_warp .lm_protable .ant-table-pagination.ant-pagination {
1072
- height: 48px;
1073
1094
  display: flex;
1095
+ flex: none;
1074
1096
  align-items: center;
1075
- font-size: 12px;
1097
+ height: 48px;
1076
1098
  margin: 0;
1077
1099
  padding: 0;
1078
- flex: none;
1100
+ font-size: 12px;
1079
1101
  }
1080
1102
  #lm_protable_warp .lm_protable .ant-table-pagination.ant-pagination .ant-select {
1081
1103
  font-size: inherit;
1082
1104
  }
1083
1105
  #lm_protable_warp .lm_protable .ant-table-pagination.ant-pagination li {
1084
- font-size: 12px;
1085
- line-height: 24px;
1086
1106
  height: 24px;
1087
1107
  color: var(--color-65);
1108
+ font-size: 12px;
1109
+ line-height: 24px;
1088
1110
  }
1089
1111
  #lm_protable_warp .lm_protable .ant-table-pagination.ant-pagination li.ant-pagination-total-text {
1090
1112
  color: var(--color-65);
@@ -1110,22 +1132,22 @@ p {
1110
1132
  font-size: 12px;
1111
1133
  }
1112
1134
  #lm_protable_warp .lm_protable .ant-table-pagination.ant-pagination li.ant-pagination-item-active {
1113
- background-color: var(--primary-color);
1114
1135
  color: #fff;
1136
+ background-color: var(--primary-color);
1115
1137
  }
1116
1138
  #lm_protable_warp .lm_protable .ant-table-pagination.ant-pagination li.ant-pagination-item-active > a {
1117
1139
  color: #fff;
1118
1140
  }
1119
1141
  #lm_protable_warp .lm_protable .ant-table-pagination.ant-pagination li .ant-pagination-options-quick-jumper input {
1120
1142
  width: 38px;
1121
- font-size: 12px;
1122
1143
  color: var(--color-65);
1144
+ font-size: 12px;
1123
1145
  }
1124
1146
  #lm_protable_warp .lm_protable .ant-table-pagination.ant-pagination li.ant-pagination-simple-pager input {
1125
1147
  width: 48px;
1126
- font-size: 12px;
1127
- color: var(--color-65);
1128
1148
  height: 22px;
1149
+ color: var(--color-65);
1150
+ font-size: 12px;
1129
1151
  }
1130
1152
  #lm_protable_warp .lm_protable .ant-table-pagination.ant-pagination li.ant-pagination-simple-pager .ant-pagination-slash {
1131
1153
  margin-right: 14px;
@@ -1141,9 +1163,9 @@ p {
1141
1163
  margin-bottom: 8px;
1142
1164
  }
1143
1165
  #lm_protable_warp .lm_protable .lm_table_empty .empty_img {
1144
- background-size: cover;
1145
1166
  margin-bottom: 8px;
1146
1167
  background-image: url('data:image/png;base64,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');
1168
+ background-size: cover;
1147
1169
  }
1148
1170
  #lm_protable_warp .lm_protable .lm_table_empty > span {
1149
1171
  color: var(--font-color);
@@ -1161,17 +1183,17 @@ p {
1161
1183
  position: absolute;
1162
1184
  bottom: -8px;
1163
1185
  left: 0;
1186
+ display: flex;
1164
1187
  max-width: 50%;
1165
- font-size: 12px;
1166
1188
  height: 48px;
1167
- display: flex;
1189
+ font-size: 12px;
1168
1190
  }
1169
1191
  .row-dragging {
1170
- background: var(--color-6);
1171
- border: 1px solid var(--color-6);
1172
1192
  display: flex;
1173
1193
  align-items: center;
1174
1194
  font-size: 12px;
1195
+ background: var(--color-6);
1196
+ border: 1px solid var(--color-6);
1175
1197
  }
1176
1198
  .row-dragging td {
1177
1199
  padding: 16px;
@@ -1196,10 +1218,10 @@ p {
1196
1218
  font-size: 0;
1197
1219
  }
1198
1220
  .lm_pro_component_img_table .lm_imgList .img_cell_wrap {
1199
- font-size: 12px;
1200
1221
  width: 20%;
1201
1222
  padding: 6px;
1202
1223
  overflow: hidden;
1224
+ font-size: 12px;
1203
1225
  }
1204
1226
  .lm_pro_component_img_table .lm_imgList .img_cell_wrap.first_row {
1205
1227
  padding-top: 0;
@@ -1217,11 +1239,11 @@ p {
1217
1239
  display: flex;
1218
1240
  flex-flow: column;
1219
1241
  height: 100%;
1220
- border-radius: 2px;
1221
- background-color: var(--background-color);
1222
1242
  padding: 16px;
1223
1243
  overflow: hidden;
1244
+ background-color: var(--background-color);
1224
1245
  border: 1px solid transparent;
1246
+ border-radius: 2px;
1225
1247
  transition: 0.3s;
1226
1248
  }
1227
1249
  .lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body:hover {
@@ -1242,18 +1264,18 @@ p {
1242
1264
  position: absolute;
1243
1265
  top: 0;
1244
1266
  right: 0;
1267
+ background-color: rgba(255, 255, 255, 0.624);
1245
1268
  border-radius: 2px;
1246
1269
  opacity: 0;
1247
- background-color: rgba(255, 255, 255, 0.624);
1248
1270
  transition: 0.3s;
1249
1271
  }
1250
1272
  .lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .more .more_btn {
1251
1273
  display: inline-flex;
1252
1274
  align-items: center;
1253
1275
  justify-content: center;
1254
- font-size: 14px;
1255
1276
  width: 32px;
1256
1277
  height: 32px;
1278
+ font-size: 14px;
1257
1279
  }
1258
1280
  .lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .img_cell_thum {
1259
1281
  position: relative;
@@ -1261,14 +1283,14 @@ p {
1261
1283
  align-items: center;
1262
1284
  justify-content: center;
1263
1285
  height: 200px;
1264
- text-align: center;
1265
1286
  overflow: hidden;
1287
+ text-align: center;
1266
1288
  }
1267
1289
  .lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .img_cell_thum img {
1268
1290
  display: inline-block;
1269
- object-fit: cover;
1270
- margin: auto;
1271
1291
  width: 100%;
1292
+ margin: auto;
1293
+ object-fit: cover;
1272
1294
  }
1273
1295
  .lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .img_cell_thum:hover .checkBox,
1274
1296
  .lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .img_cell_thum:hover .more {
@@ -1278,20 +1300,20 @@ p {
1278
1300
  padding: 16px 0 0 4px;
1279
1301
  }
1280
1302
  .lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .img_cell_title .title {
1281
- color: var(--font-color);
1282
- white-space: nowrap;
1283
- text-overflow: ellipsis;
1284
1303
  overflow: hidden;
1304
+ color: var(--font-color);
1285
1305
  font-weight: 500;
1286
1306
  font-size: var(--font-size-base);
1307
+ white-space: nowrap;
1308
+ text-overflow: ellipsis;
1287
1309
  }
1288
1310
  .lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .img_cell_title .code {
1289
1311
  padding-top: 5px;
1290
1312
  color: var(--text-color);
1291
1313
  }
1292
1314
  .lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .img_cell_title .code .ant-typography {
1293
- color: var(--text-color);
1294
1315
  margin-bottom: 0;
1316
+ color: var(--text-color);
1295
1317
  }
1296
1318
  .lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .img_cell_title .code .ant-typography .ant-typography-copy {
1297
1319
  color: inherit;
@@ -1300,22 +1322,22 @@ p {
1300
1322
  color: var(--success-color);
1301
1323
  }
1302
1324
  .lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .img_cell_tags {
1303
- flex: 1;
1304
- width: 100%;
1305
- padding-top: 9px;
1306
1325
  display: flex;
1307
- justify-content: flex-start;
1308
- align-items: center;
1326
+ flex: 1;
1309
1327
  flex-direction: row;
1310
1328
  flex-wrap: wrap;
1311
- font-size: 12px;
1329
+ align-items: center;
1330
+ justify-content: flex-start;
1331
+ width: 100%;
1332
+ padding-top: 9px;
1312
1333
  padding-left: 4px;
1334
+ font-size: 12px;
1313
1335
  }
1314
1336
  .lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .img_cell_tags button.ant-btn-sm {
1315
1337
  flex: 1 0 auto;
1316
- border: 0;
1317
- background: var(--background-color-hover);
1318
1338
  margin: 0 4px 6px 0px;
1339
+ background: var(--background-color-hover);
1340
+ border: 0;
1319
1341
  }
1320
1342
  .lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body.checked {
1321
1343
  border-color: #2593f9;
@@ -1325,17 +1347,17 @@ p {
1325
1347
  opacity: 1;
1326
1348
  }
1327
1349
  .lm_pro_component_img_table .lm_img_footer {
1328
- height: 48px;
1329
1350
  display: flex;
1330
1351
  align-items: center;
1331
1352
  justify-content: space-between;
1353
+ height: 48px;
1332
1354
  }
1333
1355
  .lm_pro_component_img_table .lm_img_footer .lm_customCheck {
1334
1356
  position: relative;
1357
+ display: flex;
1335
1358
  max-width: 50%;
1336
- font-size: 12px;
1337
1359
  height: 48px;
1338
- display: flex;
1360
+ font-size: 12px;
1339
1361
  }
1340
1362
  .lm_pro_component_img_table .lm_card_cell_content {
1341
1363
  display: flex;
@@ -1348,17 +1370,17 @@ p {
1348
1370
  }
1349
1371
  .lm_pro_component_img_table .lm_card_cell_content .card_cell_body {
1350
1372
  position: relative;
1351
- flex: 1;
1352
1373
  display: flex;
1374
+ flex: 1;
1353
1375
  flex-flow: column;
1354
- background: rgba(0, 0, 0, 0.02);
1355
1376
  padding: 16px;
1377
+ background: rgba(0, 0, 0, 0.02);
1356
1378
  cursor: pointer;
1357
1379
  }
1358
1380
  .lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_checkbox {
1359
1381
  position: absolute;
1360
- left: 8px;
1361
1382
  top: 8px;
1383
+ left: 8px;
1362
1384
  line-height: 1;
1363
1385
  opacity: 0;
1364
1386
  transition: 0.3s;
@@ -1369,36 +1391,36 @@ p {
1369
1391
  }
1370
1392
  .lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_info .title {
1371
1393
  display: flex;
1394
+ gap: 8px;
1372
1395
  align-items: center;
1373
1396
  justify-content: space-between;
1374
- gap: 8px;
1375
1397
  }
1376
1398
  .lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_info .title .label {
1377
1399
  flex: 1;
1378
- font-size: 14px;
1379
- font-weight: 500;
1380
- text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
1381
- text-overflow: ellipsis;
1382
1400
  overflow: hidden;
1401
+ font-weight: 500;
1402
+ font-size: 14px;
1383
1403
  white-space: nowrap;
1404
+ text-overflow: ellipsis;
1405
+ text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
1384
1406
  }
1385
1407
  .lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_info .title .icon {
1386
1408
  display: inline-flex;
1387
- align-items: center;
1388
1409
  gap: 4px;
1410
+ align-items: center;
1411
+ height: 22px;
1412
+ padding: 0 8px;
1389
1413
  font-size: 12px;
1390
1414
  line-height: 1;
1391
- height: 22px;
1392
1415
  background: var(--background-color);
1393
- padding: 0 8px;
1394
1416
  }
1395
1417
  .lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_info .code {
1396
1418
  font-size: 12px;
1397
1419
  }
1398
1420
  .lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_info .code .ant-typography {
1421
+ margin: 0;
1399
1422
  color: var(--text-color);
1400
1423
  text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
1401
- margin: 0;
1402
1424
  }
1403
1425
  .lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_info .code .ant-typography .ant-typography-copy {
1404
1426
  color: inherit;
@@ -1407,60 +1429,60 @@ p {
1407
1429
  display: flex;
1408
1430
  flex-wrap: wrap;
1409
1431
  gap: 16px;
1410
- font-size: 12px;
1432
+ padding: 6px 0 2px;
1411
1433
  color: var(--text-color);
1434
+ font-size: 12px;
1412
1435
  text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
1413
- padding: 6px 0 2px;
1414
1436
  }
1415
1437
  .lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_info .expand > div {
1416
1438
  padding: 2px 0;
1417
1439
  }
1418
1440
  .lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_center {
1419
1441
  display: flex;
1420
- align-items: center;
1421
1442
  flex: 1;
1443
+ align-items: center;
1422
1444
  }
1423
1445
  .lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_center .list {
1424
1446
  display: flex;
1425
1447
  align-items: center;
1426
1448
  justify-content: space-between;
1427
- text-align: center;
1428
1449
  width: 100%;
1429
1450
  margin: auto 0;
1451
+ text-align: center;
1430
1452
  }
1431
1453
  .lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_center .list .item {
1432
1454
  display: inline-flex;
1433
- align-items: center;
1434
1455
  gap: 4px;
1456
+ align-items: center;
1435
1457
  line-height: 1;
1436
1458
  }
1437
1459
  .lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_center .list .item .num {
1438
- font-size: 20px;
1439
- font-weight: 500;
1440
1460
  color: var(--font-color);
1461
+ font-weight: 500;
1462
+ font-size: 20px;
1441
1463
  }
1442
1464
  .lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_center .list .item .text {
1443
- font-size: 12px;
1444
1465
  color: var(--text-color);
1466
+ font-size: 12px;
1445
1467
  }
1446
1468
  .lm_pro_component_img_table .lm_card_cell_content .card_cell_footer {
1447
1469
  display: flex;
1448
1470
  align-items: center;
1449
1471
  height: 40px;
1450
- background: #F7F7F7;
1472
+ background: #f7f7f7;
1451
1473
  }
1452
1474
  .lm_pro_component_img_table .lm_card_cell_content .card_cell_footer > * {
1453
1475
  flex: 1;
1454
1476
  }
1455
1477
  .lm_pro_component_img_table .lm_card_cell_content .card_cell_footer > *::after {
1456
- content: '';
1457
1478
  position: absolute;
1458
- right: 0;
1459
1479
  top: 50%;
1460
- transform: translateY(-50%);
1461
- height: 18px;
1480
+ right: 0;
1462
1481
  width: 1px;
1463
- background-color: #E8E8E8;
1482
+ height: 18px;
1483
+ background-color: #e8e8e8;
1484
+ transform: translateY(-50%);
1485
+ content: '';
1464
1486
  }
1465
1487
  .lm_pro_component_img_table .lm_card_cell_content .card_cell_footer button:last-child {
1466
1488
  border: none;
@@ -1487,13 +1509,13 @@ p {
1487
1509
  .ant-table.ant-table-small .ant-table-tbody > tr > td,
1488
1510
  .ant-table.ant-table-small tfoot > tr > th,
1489
1511
  .ant-table.ant-table-small tfoot > tr > td {
1490
- padding: 4px 8px;
1512
+ padding: 4px 8px !important;
1491
1513
  }
1492
1514
  .ant-table-thead > tr > th,
1493
1515
  .ant-table-tbody > tr > td,
1494
1516
  .ant-table tfoot > tr > th,
1495
1517
  .ant-table tfoot > tr > td {
1496
- padding: 8px 8px;
1518
+ padding: 8px 8px !important;
1497
1519
  }
1498
1520
  .ant-table.ant-table-middle .ant-table-title,
1499
1521
  .ant-table.ant-table-middle .ant-table-footer,
@@ -1501,7 +1523,10 @@ p {
1501
1523
  .ant-table.ant-table-middle .ant-table-tbody > tr > td,
1502
1524
  .ant-table.ant-table-middle tfoot > tr > th,
1503
1525
  .ant-table.ant-table-middle tfoot > tr > td {
1504
- padding: 12px 8px;
1526
+ padding: 12px 8px !important;
1527
+ }
1528
+ .ant-table-tbody > tr.ant-table-measure-row > td {
1529
+ padding: 0 !important;
1505
1530
  }
1506
1531
  .react-resizable-handle {
1507
1532
  position: absolute;
@@ -1517,15 +1542,15 @@ p {
1517
1542
  border: 1px solid #ddd;
1518
1543
  }
1519
1544
  .WeChatContactsAvatarTools .rightClickItems {
1520
- height: 30px;
1521
- border-bottom: 1px solid #ddd;
1522
- padding: 0 8px;
1523
1545
  display: flex;
1524
1546
  align-items: center;
1525
1547
  justify-content: flex-start;
1548
+ height: 30px;
1549
+ padding: 0 8px;
1526
1550
  font-size: 12px;
1551
+ border-bottom: 1px solid #ddd;
1527
1552
  cursor: pointer;
1528
1553
  }
1529
1554
  .WeChatContactsAvatarTools .rightClickItems:last-child {
1530
- border-bottom: 0px;
1555
+ border-bottom: 0;
1531
1556
  }