linkmore-design 1.0.39 → 1.0.42
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/CkFilter/complexFilter/saveModal.d.ts +4 -0
- package/dist/LmTable/ImgList/footer.d.ts +3 -1
- package/dist/LmTable/demos/custom.d.ts +2 -0
- package/dist/Spin/demos/basic.d.ts +2 -0
- package/dist/Spin/demos/size.d.ts +2 -0
- package/dist/Spin/index.d.ts +7 -0
- package/dist/Spin/style/index.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.umd.js +303 -100
- package/dist/index.umd.min.js +5 -5
- package/es/Button/style/style.css +4 -1
- package/es/CardTable/style/style.css +3 -0
- package/es/CkFilter/complexFilter/drawer.js +31 -18
- package/es/CkFilter/complexFilter/saveModal.js +140 -0
- package/es/CkFilter/customFilter/drawer.js +2 -2
- package/es/CkFilter/style/style.css +36 -5
- package/es/CustomTableOption/index.js +3 -3
- package/es/CustomTableOption/style/index.css +8 -0
- package/es/Dropdown/index.js +10 -2
- package/es/EditTable/EditTable.js +6 -4
- package/es/IconFont/font/iconfont.css +105 -5
- package/es/IconFont/font/iconfont.js +16 -16
- package/es/IconFont/font/iconfont.ttf +0 -0
- package/es/IconFont/font/iconfont.woff +0 -0
- package/es/IconFont/font/iconfont.woff2 +0 -0
- package/es/LeftTable/style/style.css +1 -1
- package/es/LmTable/ImgList/footer.js +9 -7
- package/es/LmTable/ImgList/imgCell.js +25 -13
- package/es/LmTable/ImgList/imgTable.js +28 -5
- package/es/LmTable/Table.js +26 -4
- package/es/LmTable/style/style.css +422 -395
- package/es/Pagination/index.js +2 -1
- package/es/ProTable/style/style.css +0 -3
- package/es/Spin/index.d.ts +7 -0
- package/es/Spin/index.js +3 -0
- package/es/Spin/style/index.css +505 -0
- package/es/Spin/style/index.d.ts +1 -0
- package/es/Spin/style/index.js +1 -0
- package/es/index.d.ts +1 -0
- package/es/index.js +2 -1
- package/lib/Button/style/style.css +4 -1
- package/lib/CardTable/style/style.css +3 -0
- package/lib/CkFilter/complexFilter/drawer.js +31 -18
- package/lib/CkFilter/complexFilter/saveModal.js +140 -0
- package/lib/CkFilter/customFilter/drawer.js +2 -2
- package/lib/CkFilter/style/style.css +36 -5
- package/lib/CustomTableOption/index.js +3 -3
- package/lib/CustomTableOption/style/index.css +8 -0
- package/lib/Dropdown/index.js +10 -2
- package/lib/EditTable/EditTable.js +6 -4
- package/lib/IconFont/font/iconfont.css +105 -5
- package/lib/IconFont/font/iconfont.js +16 -16
- package/lib/IconFont/font/iconfont.ttf +0 -0
- package/lib/IconFont/font/iconfont.woff +0 -0
- package/lib/IconFont/font/iconfont.woff2 +0 -0
- package/lib/LeftTable/style/style.css +1 -1
- package/lib/LmTable/ImgList/footer.js +9 -7
- package/lib/LmTable/ImgList/imgCell.js +25 -13
- package/lib/LmTable/ImgList/imgTable.js +28 -5
- package/lib/LmTable/Table.js +26 -4
- package/lib/LmTable/style/style.css +422 -395
- package/lib/Pagination/index.js +2 -1
- package/lib/ProTable/style/style.css +0 -3
- package/lib/Spin/index.d.ts +7 -0
- package/lib/Spin/index.js +15 -0
- package/lib/Spin/style/index.css +505 -0
- package/lib/Spin/style/index.d.ts +1 -0
- package/lib/Spin/style/index.js +3 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +9 -1
- package/package.json +1 -1
|
@@ -622,8 +622,6 @@ html {
|
|
|
622
622
|
.lm_operate .ant-spin-container .ant-table {
|
|
623
623
|
position: relative;
|
|
624
624
|
flex: 1;
|
|
625
|
-
border-left: 1px solid var(--border-color);
|
|
626
|
-
border-right: 1px solid var(--border-color);
|
|
627
625
|
}
|
|
628
626
|
.lm_operate .ant-spin-container .ant-table::before {
|
|
629
627
|
content: '';
|
|
@@ -656,6 +654,9 @@ html {
|
|
|
656
654
|
.lm_grid .ant-pro-table .ant-table.ant-table-small {
|
|
657
655
|
font-size: 12px;
|
|
658
656
|
}
|
|
657
|
+
.lm_grid .ant-pro-table .ant-table.ant-table-small .ant-table-tbody td {
|
|
658
|
+
padding: 4px 8px;
|
|
659
|
+
}
|
|
659
660
|
.lm_grid .ant-pro-table .ant-table-thead {
|
|
660
661
|
height: 40px;
|
|
661
662
|
}
|
|
@@ -668,9 +669,6 @@ html {
|
|
|
668
669
|
.lm_grid .ant-pro-table .ant-table-thead .ant-table-filter-trigger {
|
|
669
670
|
margin-right: 0;
|
|
670
671
|
}
|
|
671
|
-
.lm_grid .ant-pro-table .ant-table-tbody .ant-table-cell {
|
|
672
|
-
padding: 8px;
|
|
673
|
-
}
|
|
674
672
|
.lm_grid .ant-pro-table .ant-table-tbody .ant-table-cell.number {
|
|
675
673
|
border-left: 1px solid #eee;
|
|
676
674
|
border-right: 1px solid #eee;
|
|
@@ -811,433 +809,138 @@ html {
|
|
|
811
809
|
.ant-popover.ant-pro-table-column-setting-overlay .ant-tree .ant-tree-node-content-wrapper:hover {
|
|
812
810
|
background-color: transparent;
|
|
813
811
|
}
|
|
814
|
-
.
|
|
815
|
-
|
|
816
|
-
|
|
812
|
+
#lm_protable_warp .ant-tabs,
|
|
813
|
+
#lm_protable_warp .ant-tabs-content,
|
|
814
|
+
#lm_protable_warp .ant-pro-table,
|
|
815
|
+
#lm_protable_warp .ant-card,
|
|
816
|
+
#lm_protable_warp .ant-card-body,
|
|
817
|
+
#lm_protable_warp .ant-pro-card,
|
|
818
|
+
#lm_protable_warp .ant-pro-card-body,
|
|
819
|
+
#lm_protable_warp .ant-table-wrapper,
|
|
820
|
+
#lm_protable_warp .ant-spin-nested-loading,
|
|
821
|
+
#lm_protable_warp .ant-spin-container,
|
|
822
|
+
#lm_protable_warp .ant-table-container,
|
|
823
|
+
#lm_protable_warp .ant-table-body {
|
|
817
824
|
height: 100%;
|
|
818
825
|
}
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
}
|
|
823
|
-
.lm_pro_component_img_table .lm_img_body.hasChecked .lm_imgList .img_cell_wrap .checkBox,
|
|
824
|
-
.lm_pro_component_img_table .lm_img_body.hasChecked .lm_imgList .img_cell_wrap .card_cell_checkbox {
|
|
825
|
-
opacity: 1;
|
|
826
|
-
}
|
|
827
|
-
.lm_pro_component_img_table .lm_img_footer {
|
|
828
|
-
display: flex;
|
|
829
|
-
justify-content: flex-end;
|
|
830
|
-
height: 36px;
|
|
831
|
-
}
|
|
832
|
-
.lm_pro_component_img_table .lm_imgList {
|
|
833
|
-
font-size: 0;
|
|
826
|
+
#lm_protable_warp .ant-card-body,
|
|
827
|
+
#lm_protable_warp .ant-pro-card-body {
|
|
828
|
+
padding: 0;
|
|
834
829
|
}
|
|
835
|
-
|
|
830
|
+
#lm_protable_warp .lm_protable .ant-table {
|
|
836
831
|
font-size: 12px;
|
|
837
|
-
width: 20%;
|
|
838
|
-
padding: 6px;
|
|
839
|
-
overflow: hidden;
|
|
840
|
-
}
|
|
841
|
-
.lm_pro_component_img_table .lm_imgList .img_cell_wrap.first_row {
|
|
842
|
-
padding-top: 0;
|
|
843
|
-
}
|
|
844
|
-
.lm_pro_component_img_table .lm_imgList .img_cell_wrap.last_row {
|
|
845
|
-
padding-bottom: 0;
|
|
846
832
|
}
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
.lm_pro_component_img_table .lm_imgList .img_cell_wrap.last_column {
|
|
851
|
-
padding-right: 0;
|
|
833
|
+
#lm_protable_warp .lm_protable .ant-card-body,
|
|
834
|
+
#lm_protable_warp .lm_protable .ant-pro-card-body {
|
|
835
|
+
padding: 0;
|
|
852
836
|
}
|
|
853
|
-
|
|
837
|
+
#lm_protable_warp .lm_protable .ant-spin-container {
|
|
854
838
|
display: flex;
|
|
855
839
|
flex-flow: column;
|
|
856
|
-
height: 100%;
|
|
857
|
-
border-radius: 2px;
|
|
858
|
-
background-color: var(--background-color);
|
|
859
|
-
padding: 16px;
|
|
860
|
-
overflow: hidden;
|
|
861
|
-
border: 1px solid transparent;
|
|
862
|
-
transition: 0.3s;
|
|
863
|
-
}
|
|
864
|
-
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body:hover {
|
|
865
|
-
background-color: var(--background-color-hover);
|
|
866
840
|
}
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
841
|
+
#lm_protable_warp .lm_protable .ant-spin-container .ant-table {
|
|
842
|
+
position: relative;
|
|
843
|
+
flex: 1;
|
|
844
|
+
border-left: 1px solid var(--border-color);
|
|
845
|
+
border-right: 1px solid var(--border-color);
|
|
870
846
|
}
|
|
871
|
-
|
|
847
|
+
#lm_protable_warp .lm_protable .ant-spin-container .ant-table::before {
|
|
848
|
+
content: '';
|
|
872
849
|
position: absolute;
|
|
873
|
-
top: 0;
|
|
874
850
|
left: 0;
|
|
875
|
-
|
|
876
|
-
|
|
851
|
+
right: 0;
|
|
852
|
+
top: 0;
|
|
853
|
+
height: 1px;
|
|
854
|
+
background-color: var(--border-color);
|
|
855
|
+
z-index: 4;
|
|
877
856
|
}
|
|
878
|
-
|
|
857
|
+
#lm_protable_warp .lm_protable .ant-spin-container .ant-table::after {
|
|
858
|
+
content: '';
|
|
879
859
|
position: absolute;
|
|
880
|
-
|
|
860
|
+
left: 0;
|
|
881
861
|
right: 0;
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
background-color:
|
|
885
|
-
|
|
862
|
+
bottom: 0;
|
|
863
|
+
height: 1px;
|
|
864
|
+
background-color: var(--border-color);
|
|
865
|
+
z-index: 4;
|
|
886
866
|
}
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
align-items: center;
|
|
890
|
-
justify-content: center;
|
|
891
|
-
font-size: 14px;
|
|
892
|
-
width: 32px;
|
|
893
|
-
height: 32px;
|
|
867
|
+
#lm_protable_warp .lm_protable .ant-table-thead {
|
|
868
|
+
height: 40px;
|
|
894
869
|
}
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
display: flex;
|
|
898
|
-
align-items: center;
|
|
899
|
-
justify-content: center;
|
|
900
|
-
height: 200px;
|
|
901
|
-
text-align: center;
|
|
870
|
+
#lm_protable_warp .lm_protable .ant-table-thead .text-overflow,
|
|
871
|
+
#lm_protable_warp .lm_protable .ant-table-thead .text-overflow .ant-table-column-title {
|
|
902
872
|
overflow: hidden;
|
|
873
|
+
text-overflow: ellipsis;
|
|
874
|
+
white-space: nowrap;
|
|
903
875
|
}
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
object-fit: cover;
|
|
907
|
-
margin: auto;
|
|
908
|
-
width: 100%;
|
|
909
|
-
}
|
|
910
|
-
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .img_cell_thum:hover .checkBox,
|
|
911
|
-
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .img_cell_thum:hover .more {
|
|
912
|
-
opacity: 1;
|
|
876
|
+
#lm_protable_warp .lm_protable .ant-table-thead .ant-table-filter-trigger {
|
|
877
|
+
margin-right: 0;
|
|
913
878
|
}
|
|
914
|
-
|
|
915
|
-
|
|
879
|
+
#lm_protable_warp .lm_protable .ant-table-thead > tr > th {
|
|
880
|
+
background: var(--color-4);
|
|
881
|
+
font-size: 12px;
|
|
882
|
+
padding: 8px;
|
|
916
883
|
}
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
white-space: nowrap;
|
|
920
|
-
text-overflow: ellipsis;
|
|
921
|
-
overflow: hidden;
|
|
922
|
-
font-weight: 500;
|
|
923
|
-
font-size: var(--font-size-base);
|
|
884
|
+
#lm_protable_warp .lm_protable .ant-table.ant-table-small {
|
|
885
|
+
font-size: 12px;
|
|
924
886
|
}
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
887
|
+
#lm_protable_warp .lm_protable .ant-pro-table .ant-table-tbody .ant-table-cell.number {
|
|
888
|
+
border-left: 1px solid #eee;
|
|
889
|
+
border-right: 1px solid #eee;
|
|
928
890
|
}
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
891
|
+
#lm_protable_warp .lm_protable .ant-pro-table .ant-table-tbody .ant-table-cell.money {
|
|
892
|
+
border-left: 1px solid #eee;
|
|
893
|
+
border-right: 1px solid #eee;
|
|
894
|
+
color: var(--error-color);
|
|
932
895
|
}
|
|
933
|
-
|
|
934
|
-
color:
|
|
896
|
+
#lm_protable_warp .lm_protable .ant-pro-table .ant-table-tbody .ant-table-cell.money-color {
|
|
897
|
+
color: var(--error-color);
|
|
935
898
|
}
|
|
936
|
-
|
|
937
|
-
|
|
899
|
+
#lm_protable_warp .lm_protable .ant-pro-table .ant-table-tbody .ant-typography {
|
|
900
|
+
margin: 0;
|
|
938
901
|
}
|
|
939
|
-
.
|
|
940
|
-
|
|
941
|
-
width: 100%;
|
|
942
|
-
padding-top: 9px;
|
|
943
|
-
display: flex;
|
|
944
|
-
justify-content: flex-start;
|
|
945
|
-
align-items: center;
|
|
946
|
-
flex-wrap: wrap;
|
|
947
|
-
font-size: 12px;
|
|
948
|
-
padding-left: 4px;
|
|
902
|
+
#lm_protable_warp .lm_protable .ant-pro-table .ant-table-tbody .ant-typography .ant-typography-copy {
|
|
903
|
+
color: var(--text-color);
|
|
949
904
|
}
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
background: var(--background-color-hover);
|
|
953
|
-
margin: 0 4px 6px 0px;
|
|
905
|
+
#lm_protable_warp .lm_protable .ant-pro-table .ant-table-tbody .ant-typography .ant-typography-copy-success {
|
|
906
|
+
color: var(--success-color);
|
|
954
907
|
}
|
|
955
|
-
.
|
|
956
|
-
|
|
908
|
+
#lm_protable_warp .lm_protable .ant-pro-table .ant-table-tbody .ant-typography.ant-typography-ellipsis .ant-typography-edit {
|
|
909
|
+
opacity: 0;
|
|
910
|
+
color: var(--primary-color);
|
|
911
|
+
transition: 0.3s;
|
|
957
912
|
}
|
|
958
|
-
.
|
|
959
|
-
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body.checked .more {
|
|
913
|
+
#lm_protable_warp .lm_protable .ant-pro-table .ant-table-tbody .ant-typography.ant-typography-ellipsis:hover .ant-typography-edit {
|
|
960
914
|
opacity: 1;
|
|
961
915
|
}
|
|
962
|
-
.
|
|
963
|
-
|
|
964
|
-
flex-flow: column;
|
|
965
|
-
height: 100%;
|
|
966
|
-
overflow: hidden;
|
|
967
|
-
border: 1px solid transparent;
|
|
968
|
-
border-radius: 2px;
|
|
969
|
-
transition: 0.3s;
|
|
916
|
+
#lm_protable_warp .lm_protable .ant-pro-table .ant-table-summary {
|
|
917
|
+
height: 48px;
|
|
970
918
|
}
|
|
971
|
-
.
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
flex-flow: column;
|
|
976
|
-
background: rgba(0, 0, 0, 0.02);
|
|
977
|
-
padding: 16px;
|
|
978
|
-
cursor: pointer;
|
|
919
|
+
#lm_protable_warp .lm_protable .ant-pro-table .ant-table-summary td {
|
|
920
|
+
text-align: right;
|
|
921
|
+
background-color: var(--table-background-color);
|
|
922
|
+
padding: 0 8px;
|
|
979
923
|
}
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
top: 8px;
|
|
984
|
-
line-height: 1;
|
|
985
|
-
opacity: 0;
|
|
986
|
-
transition: 0.3s;
|
|
924
|
+
#lm_protable_warp .lm_protable .ant-pro-table .ant-table-summary td:first-of-type {
|
|
925
|
+
text-align: left;
|
|
926
|
+
padding: 0 0 0 8px;
|
|
987
927
|
}
|
|
988
|
-
|
|
989
|
-
border:
|
|
990
|
-
border-
|
|
928
|
+
#lm_protable_warp .lm_protable .ant-pro-table .ant-table-summary td.number {
|
|
929
|
+
border-left: 1px solid #eee;
|
|
930
|
+
border-right: 1px solid #eee;
|
|
991
931
|
}
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
gap: 8px;
|
|
932
|
+
#lm_protable_warp .lm_protable .ant-pro-table .ant-table-summary td.money {
|
|
933
|
+
border-left: 1px solid #eee;
|
|
934
|
+
border-right: 1px solid #eee;
|
|
935
|
+
color: var(--error-color);
|
|
997
936
|
}
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
|
|
1003
|
-
text-overflow: ellipsis;
|
|
1004
|
-
overflow: hidden;
|
|
937
|
+
#lm_protable_warp .lm_protable .ant-pro-table .ant-table-summary td.money-color {
|
|
938
|
+
color: var(--error-color);
|
|
939
|
+
}
|
|
940
|
+
#lm_protable_warp .lm_protable .ant-pro-table .ant-table-summary td > div {
|
|
1005
941
|
white-space: nowrap;
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
display: inline-flex;
|
|
1009
|
-
align-items: center;
|
|
1010
|
-
gap: 4px;
|
|
1011
|
-
font-size: 12px;
|
|
1012
|
-
line-height: 1;
|
|
1013
|
-
height: 22px;
|
|
1014
|
-
background: var(--background-color);
|
|
1015
|
-
padding: 0 8px;
|
|
1016
|
-
}
|
|
1017
|
-
.lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_info .code {
|
|
1018
|
-
font-size: 12px;
|
|
1019
|
-
}
|
|
1020
|
-
.lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_info .code .ant-typography {
|
|
1021
|
-
color: var(--text-color);
|
|
1022
|
-
text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
|
|
1023
|
-
margin: 0;
|
|
1024
|
-
}
|
|
1025
|
-
.lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_info .code .ant-typography .ant-typography-copy {
|
|
1026
|
-
color: inherit;
|
|
1027
|
-
}
|
|
1028
|
-
.lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_info .expand {
|
|
1029
|
-
display: flex;
|
|
1030
|
-
flex-wrap: wrap;
|
|
1031
|
-
gap: 16px;
|
|
1032
|
-
font-size: 12px;
|
|
1033
|
-
color: var(--text-color);
|
|
1034
|
-
text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
|
|
1035
|
-
padding: 6px 0 2px;
|
|
1036
|
-
}
|
|
1037
|
-
.lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_info .expand > div {
|
|
1038
|
-
padding: 2px 0;
|
|
1039
|
-
}
|
|
1040
|
-
.lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_center {
|
|
1041
|
-
display: flex;
|
|
1042
|
-
align-items: center;
|
|
1043
|
-
flex: 1;
|
|
1044
|
-
}
|
|
1045
|
-
.lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_center .list {
|
|
1046
|
-
display: flex;
|
|
1047
|
-
align-items: center;
|
|
1048
|
-
justify-content: space-between;
|
|
1049
|
-
text-align: center;
|
|
1050
|
-
width: 100%;
|
|
1051
|
-
margin: auto 0;
|
|
1052
|
-
}
|
|
1053
|
-
.lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_center .list .item {
|
|
1054
|
-
display: inline-flex;
|
|
1055
|
-
align-items: center;
|
|
1056
|
-
gap: 4px;
|
|
1057
|
-
line-height: 1;
|
|
1058
|
-
}
|
|
1059
|
-
.lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_center .list .item .num {
|
|
1060
|
-
font-size: 20px;
|
|
1061
|
-
font-weight: 500;
|
|
1062
|
-
color: var(--font-color);
|
|
1063
|
-
}
|
|
1064
|
-
.lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_center .list .item .text {
|
|
1065
|
-
font-size: 12px;
|
|
1066
|
-
color: var(--text-color);
|
|
1067
|
-
}
|
|
1068
|
-
.lm_pro_component_img_table .lm_card_cell_content .card_cell_footer {
|
|
1069
|
-
display: flex;
|
|
1070
|
-
align-items: center;
|
|
1071
|
-
height: 40px;
|
|
1072
|
-
background: #F7F7F7;
|
|
1073
|
-
}
|
|
1074
|
-
.lm_pro_component_img_table .lm_card_cell_content .card_cell_footer > * {
|
|
1075
|
-
flex: 1;
|
|
1076
|
-
}
|
|
1077
|
-
.lm_pro_component_img_table .lm_card_cell_content .card_cell_footer > *::after {
|
|
1078
|
-
content: '';
|
|
1079
|
-
position: absolute;
|
|
1080
|
-
right: 0;
|
|
1081
|
-
top: 50%;
|
|
1082
|
-
transform: translateY(-50%);
|
|
1083
|
-
height: 18px;
|
|
1084
|
-
width: 1px;
|
|
1085
|
-
background-color: #E8E8E8;
|
|
1086
|
-
}
|
|
1087
|
-
.lm_pro_component_img_table .lm_card_cell_content .card_cell_footer button:last-child {
|
|
1088
|
-
border: none;
|
|
1089
|
-
}
|
|
1090
|
-
.lm_pro_component_img_table .lm_card_cell_content .card_cell_footer button:last-child::after {
|
|
1091
|
-
display: none;
|
|
1092
|
-
}
|
|
1093
|
-
.lm_pro_component_img_table .lm_card_cell_content .card_cell_footer .footer_expand {
|
|
1094
|
-
font-size: 16px;
|
|
1095
|
-
text-align: center;
|
|
1096
|
-
border: none;
|
|
1097
|
-
}
|
|
1098
|
-
.lm_pro_component_img_table .lm_card_cell_content.checked,
|
|
1099
|
-
.lm_pro_component_img_table .lm_card_cell_content:hover {
|
|
1100
|
-
border-color: var(--primary-color);
|
|
1101
|
-
}
|
|
1102
|
-
.lm_pro_component_img_table .lm_card_cell_content.checked .card_cell_body .card_cell_checkbox,
|
|
1103
|
-
.lm_pro_component_img_table .lm_card_cell_content:hover .card_cell_body .card_cell_checkbox {
|
|
1104
|
-
opacity: 1;
|
|
1105
|
-
}
|
|
1106
|
-
#lm_protable_warp .ant-tabs,
|
|
1107
|
-
#lm_protable_warp .ant-tabs-content,
|
|
1108
|
-
#lm_protable_warp .ant-pro-table,
|
|
1109
|
-
#lm_protable_warp .ant-card,
|
|
1110
|
-
#lm_protable_warp .ant-card-body,
|
|
1111
|
-
#lm_protable_warp .ant-pro-card,
|
|
1112
|
-
#lm_protable_warp .ant-pro-card-body,
|
|
1113
|
-
#lm_protable_warp .ant-table-wrapper,
|
|
1114
|
-
#lm_protable_warp .ant-spin-nested-loading,
|
|
1115
|
-
#lm_protable_warp .ant-spin-container,
|
|
1116
|
-
#lm_protable_warp .ant-table-container,
|
|
1117
|
-
#lm_protable_warp .ant-table-body {
|
|
1118
|
-
height: 100%;
|
|
1119
|
-
}
|
|
1120
|
-
#lm_protable_warp .ant-card-body,
|
|
1121
|
-
#lm_protable_warp .ant-pro-card-body {
|
|
1122
|
-
padding: 0;
|
|
1123
|
-
}
|
|
1124
|
-
#lm_protable_warp .lm_protable .ant-table {
|
|
1125
|
-
font-size: 12px;
|
|
1126
|
-
}
|
|
1127
|
-
#lm_protable_warp .lm_protable .ant-card-body,
|
|
1128
|
-
#lm_protable_warp .lm_protable .ant-pro-card-body {
|
|
1129
|
-
padding: 0;
|
|
1130
|
-
}
|
|
1131
|
-
#lm_protable_warp .lm_protable .ant-spin-container {
|
|
1132
|
-
display: flex;
|
|
1133
|
-
flex-flow: column;
|
|
1134
|
-
}
|
|
1135
|
-
#lm_protable_warp .lm_protable .ant-spin-container .ant-table {
|
|
1136
|
-
position: relative;
|
|
1137
|
-
flex: 1;
|
|
1138
|
-
border-left: 1px solid var(--border-color);
|
|
1139
|
-
border-right: 1px solid var(--border-color);
|
|
1140
|
-
}
|
|
1141
|
-
#lm_protable_warp .lm_protable .ant-spin-container .ant-table::before {
|
|
1142
|
-
content: '';
|
|
1143
|
-
position: absolute;
|
|
1144
|
-
left: 0;
|
|
1145
|
-
right: 0;
|
|
1146
|
-
top: 0;
|
|
1147
|
-
height: 1px;
|
|
1148
|
-
background-color: var(--border-color);
|
|
1149
|
-
z-index: 4;
|
|
1150
|
-
}
|
|
1151
|
-
#lm_protable_warp .lm_protable .ant-spin-container .ant-table::after {
|
|
1152
|
-
content: '';
|
|
1153
|
-
position: absolute;
|
|
1154
|
-
left: 0;
|
|
1155
|
-
right: 0;
|
|
1156
|
-
bottom: 0;
|
|
1157
|
-
height: 1px;
|
|
1158
|
-
background-color: var(--border-color);
|
|
1159
|
-
z-index: 4;
|
|
1160
|
-
}
|
|
1161
|
-
#lm_protable_warp .lm_protable .ant-table-thead {
|
|
1162
|
-
height: 40px;
|
|
1163
|
-
}
|
|
1164
|
-
#lm_protable_warp .lm_protable .ant-table-thead .text-overflow,
|
|
1165
|
-
#lm_protable_warp .lm_protable .ant-table-thead .text-overflow .ant-table-column-title {
|
|
1166
|
-
overflow: hidden;
|
|
1167
|
-
text-overflow: ellipsis;
|
|
1168
|
-
white-space: nowrap;
|
|
1169
|
-
}
|
|
1170
|
-
#lm_protable_warp .lm_protable .ant-table-thead .ant-table-filter-trigger {
|
|
1171
|
-
margin-right: 0;
|
|
1172
|
-
}
|
|
1173
|
-
#lm_protable_warp .lm_protable .ant-table-thead > tr > th {
|
|
1174
|
-
background: var(--color-4);
|
|
1175
|
-
font-size: 12px;
|
|
1176
|
-
padding: 8px;
|
|
1177
|
-
}
|
|
1178
|
-
#lm_protable_warp .lm_protable .ant-table.ant-table-small {
|
|
1179
|
-
font-size: 12px;
|
|
1180
|
-
}
|
|
1181
|
-
#lm_protable_warp .lm_protable .ant-pro-table .ant-table-tbody .ant-table-cell {
|
|
1182
|
-
padding: 8px;
|
|
1183
|
-
}
|
|
1184
|
-
#lm_protable_warp .lm_protable .ant-pro-table .ant-table-tbody .ant-table-cell.number {
|
|
1185
|
-
border-left: 1px solid #eee;
|
|
1186
|
-
border-right: 1px solid #eee;
|
|
1187
|
-
}
|
|
1188
|
-
#lm_protable_warp .lm_protable .ant-pro-table .ant-table-tbody .ant-table-cell.money {
|
|
1189
|
-
border-left: 1px solid #eee;
|
|
1190
|
-
border-right: 1px solid #eee;
|
|
1191
|
-
color: var(--error-color);
|
|
1192
|
-
}
|
|
1193
|
-
#lm_protable_warp .lm_protable .ant-pro-table .ant-table-tbody .ant-table-cell.money-color {
|
|
1194
|
-
color: var(--error-color);
|
|
1195
|
-
}
|
|
1196
|
-
#lm_protable_warp .lm_protable .ant-pro-table .ant-table-tbody .ant-typography {
|
|
1197
|
-
margin: 0;
|
|
1198
|
-
}
|
|
1199
|
-
#lm_protable_warp .lm_protable .ant-pro-table .ant-table-tbody .ant-typography .ant-typography-copy {
|
|
1200
|
-
color: var(--text-color);
|
|
1201
|
-
}
|
|
1202
|
-
#lm_protable_warp .lm_protable .ant-pro-table .ant-table-tbody .ant-typography .ant-typography-copy-success {
|
|
1203
|
-
color: var(--success-color);
|
|
1204
|
-
}
|
|
1205
|
-
#lm_protable_warp .lm_protable .ant-pro-table .ant-table-tbody .ant-typography.ant-typography-ellipsis .ant-typography-edit {
|
|
1206
|
-
opacity: 0;
|
|
1207
|
-
color: var(--primary-color);
|
|
1208
|
-
transition: 0.3s;
|
|
1209
|
-
}
|
|
1210
|
-
#lm_protable_warp .lm_protable .ant-pro-table .ant-table-tbody .ant-typography.ant-typography-ellipsis:hover .ant-typography-edit {
|
|
1211
|
-
opacity: 1;
|
|
1212
|
-
}
|
|
1213
|
-
#lm_protable_warp .lm_protable .ant-pro-table .ant-table-summary {
|
|
1214
|
-
height: 48px;
|
|
1215
|
-
}
|
|
1216
|
-
#lm_protable_warp .lm_protable .ant-pro-table .ant-table-summary td {
|
|
1217
|
-
text-align: right;
|
|
1218
|
-
background-color: var(--table-background-color);
|
|
1219
|
-
padding: 0 8px;
|
|
1220
|
-
}
|
|
1221
|
-
#lm_protable_warp .lm_protable .ant-pro-table .ant-table-summary td:first-of-type {
|
|
1222
|
-
text-align: left;
|
|
1223
|
-
padding: 0 0 0 8px;
|
|
1224
|
-
}
|
|
1225
|
-
#lm_protable_warp .lm_protable .ant-pro-table .ant-table-summary td.number {
|
|
1226
|
-
border-left: 1px solid #eee;
|
|
1227
|
-
border-right: 1px solid #eee;
|
|
1228
|
-
}
|
|
1229
|
-
#lm_protable_warp .lm_protable .ant-pro-table .ant-table-summary td.money {
|
|
1230
|
-
border-left: 1px solid #eee;
|
|
1231
|
-
border-right: 1px solid #eee;
|
|
1232
|
-
color: var(--error-color);
|
|
1233
|
-
}
|
|
1234
|
-
#lm_protable_warp .lm_protable .ant-pro-table .ant-table-summary td.money-color {
|
|
1235
|
-
color: var(--error-color);
|
|
1236
|
-
}
|
|
1237
|
-
#lm_protable_warp .lm_protable .ant-pro-table .ant-table-summary td > div {
|
|
1238
|
-
white-space: nowrap;
|
|
1239
|
-
overflow: hidden;
|
|
1240
|
-
text-overflow: ellipsis;
|
|
942
|
+
overflow: hidden;
|
|
943
|
+
text-overflow: ellipsis;
|
|
1241
944
|
}
|
|
1242
945
|
#lm_protable_warp .lm_protable .ant-pro-table .ant-table-summary td > div:last-of-type {
|
|
1243
946
|
font-weight: bold;
|
|
@@ -1423,3 +1126,327 @@ html {
|
|
|
1423
1126
|
.row-dragging .drag-visible {
|
|
1424
1127
|
visibility: visible;
|
|
1425
1128
|
}
|
|
1129
|
+
.lm_pro_component_img_table {
|
|
1130
|
+
display: flex;
|
|
1131
|
+
flex-flow: column;
|
|
1132
|
+
height: 100%;
|
|
1133
|
+
}
|
|
1134
|
+
.lm_pro_component_img_table .lm_img_body {
|
|
1135
|
+
flex: 1;
|
|
1136
|
+
height: calc(100% - 36px);
|
|
1137
|
+
}
|
|
1138
|
+
.lm_pro_component_img_table .lm_img_body.hasChecked .lm_imgList .img_cell_wrap .checkBox,
|
|
1139
|
+
.lm_pro_component_img_table .lm_img_body.hasChecked .lm_imgList .img_cell_wrap .card_cell_checkbox {
|
|
1140
|
+
opacity: 1;
|
|
1141
|
+
}
|
|
1142
|
+
.lm_pro_component_img_table .lm_imgList {
|
|
1143
|
+
font-size: 0;
|
|
1144
|
+
}
|
|
1145
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap {
|
|
1146
|
+
font-size: 12px;
|
|
1147
|
+
width: 20%;
|
|
1148
|
+
padding: 6px;
|
|
1149
|
+
overflow: hidden;
|
|
1150
|
+
}
|
|
1151
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap.first_row {
|
|
1152
|
+
padding-top: 0;
|
|
1153
|
+
}
|
|
1154
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap.last_row {
|
|
1155
|
+
padding-bottom: 0;
|
|
1156
|
+
}
|
|
1157
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap.first_column {
|
|
1158
|
+
padding-left: 0;
|
|
1159
|
+
}
|
|
1160
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap.last_column {
|
|
1161
|
+
padding-right: 0;
|
|
1162
|
+
}
|
|
1163
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body {
|
|
1164
|
+
display: flex;
|
|
1165
|
+
flex-flow: column;
|
|
1166
|
+
height: 100%;
|
|
1167
|
+
border-radius: 2px;
|
|
1168
|
+
background-color: var(--background-color);
|
|
1169
|
+
padding: 16px;
|
|
1170
|
+
overflow: hidden;
|
|
1171
|
+
border: 1px solid transparent;
|
|
1172
|
+
transition: 0.3s;
|
|
1173
|
+
}
|
|
1174
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body:hover {
|
|
1175
|
+
background-color: var(--background-color-hover);
|
|
1176
|
+
}
|
|
1177
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .ant-checkbox {
|
|
1178
|
+
border: 8px solid rgba(255, 255, 255, 0.624);
|
|
1179
|
+
border-radius: 2px;
|
|
1180
|
+
}
|
|
1181
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .checkBox {
|
|
1182
|
+
position: absolute;
|
|
1183
|
+
top: 0;
|
|
1184
|
+
left: 0;
|
|
1185
|
+
opacity: 0;
|
|
1186
|
+
transition: 0.3s;
|
|
1187
|
+
}
|
|
1188
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .more {
|
|
1189
|
+
position: absolute;
|
|
1190
|
+
top: 0;
|
|
1191
|
+
right: 0;
|
|
1192
|
+
border-radius: 2px;
|
|
1193
|
+
opacity: 0;
|
|
1194
|
+
background-color: rgba(255, 255, 255, 0.624);
|
|
1195
|
+
transition: 0.3s;
|
|
1196
|
+
}
|
|
1197
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .more .more_btn {
|
|
1198
|
+
display: inline-flex;
|
|
1199
|
+
align-items: center;
|
|
1200
|
+
justify-content: center;
|
|
1201
|
+
font-size: 14px;
|
|
1202
|
+
width: 32px;
|
|
1203
|
+
height: 32px;
|
|
1204
|
+
}
|
|
1205
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .img_cell_thum {
|
|
1206
|
+
position: relative;
|
|
1207
|
+
display: flex;
|
|
1208
|
+
align-items: center;
|
|
1209
|
+
justify-content: center;
|
|
1210
|
+
height: 200px;
|
|
1211
|
+
text-align: center;
|
|
1212
|
+
overflow: hidden;
|
|
1213
|
+
}
|
|
1214
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .img_cell_thum img {
|
|
1215
|
+
display: inline-block;
|
|
1216
|
+
object-fit: cover;
|
|
1217
|
+
margin: auto;
|
|
1218
|
+
width: 100%;
|
|
1219
|
+
}
|
|
1220
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .img_cell_thum:hover .checkBox,
|
|
1221
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .img_cell_thum:hover .more {
|
|
1222
|
+
opacity: 1;
|
|
1223
|
+
}
|
|
1224
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .img_cell_title {
|
|
1225
|
+
padding: 16px 0 0 4px;
|
|
1226
|
+
}
|
|
1227
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .img_cell_title .title {
|
|
1228
|
+
color: var(--font-color);
|
|
1229
|
+
white-space: nowrap;
|
|
1230
|
+
text-overflow: ellipsis;
|
|
1231
|
+
overflow: hidden;
|
|
1232
|
+
font-weight: 500;
|
|
1233
|
+
font-size: var(--font-size-base);
|
|
1234
|
+
}
|
|
1235
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .img_cell_title .code {
|
|
1236
|
+
padding-top: 5px;
|
|
1237
|
+
color: var(--text-color);
|
|
1238
|
+
}
|
|
1239
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .img_cell_title .code .ant-typography {
|
|
1240
|
+
color: var(--text-color);
|
|
1241
|
+
margin-bottom: 0;
|
|
1242
|
+
}
|
|
1243
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .img_cell_title .code .ant-typography .ant-typography-copy {
|
|
1244
|
+
color: inherit;
|
|
1245
|
+
}
|
|
1246
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .img_cell_title .code .ant-typography .ant-typography-copy-success {
|
|
1247
|
+
color: var(--success-color);
|
|
1248
|
+
}
|
|
1249
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .img_cell_tags {
|
|
1250
|
+
flex: 1;
|
|
1251
|
+
width: 100%;
|
|
1252
|
+
padding-top: 9px;
|
|
1253
|
+
display: flex;
|
|
1254
|
+
justify-content: flex-start;
|
|
1255
|
+
align-items: center;
|
|
1256
|
+
flex-direction: row;
|
|
1257
|
+
flex-wrap: wrap;
|
|
1258
|
+
font-size: 12px;
|
|
1259
|
+
padding-left: 4px;
|
|
1260
|
+
}
|
|
1261
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .img_cell_tags button.ant-btn-sm {
|
|
1262
|
+
flex: 1 0 auto;
|
|
1263
|
+
border: 0;
|
|
1264
|
+
background: var(--background-color-hover);
|
|
1265
|
+
margin: 0 4px 6px 0px;
|
|
1266
|
+
}
|
|
1267
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body.checked {
|
|
1268
|
+
border-color: #2593f9;
|
|
1269
|
+
}
|
|
1270
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body.checked .checkBox,
|
|
1271
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body.checked .more {
|
|
1272
|
+
opacity: 1;
|
|
1273
|
+
}
|
|
1274
|
+
.lm_pro_component_img_table .lm_img_footer {
|
|
1275
|
+
height: 48px;
|
|
1276
|
+
display: flex;
|
|
1277
|
+
align-items: center;
|
|
1278
|
+
justify-content: space-between;
|
|
1279
|
+
}
|
|
1280
|
+
.lm_pro_component_img_table .lm_img_footer .lm_customCheck {
|
|
1281
|
+
position: relative;
|
|
1282
|
+
max-width: 50%;
|
|
1283
|
+
font-size: 12px;
|
|
1284
|
+
height: 48px;
|
|
1285
|
+
display: flex;
|
|
1286
|
+
}
|
|
1287
|
+
.lm_pro_component_img_table .lm_card_cell_content {
|
|
1288
|
+
display: flex;
|
|
1289
|
+
flex-flow: column;
|
|
1290
|
+
height: 100%;
|
|
1291
|
+
overflow: hidden;
|
|
1292
|
+
border: 1px solid transparent;
|
|
1293
|
+
border-radius: 2px;
|
|
1294
|
+
transition: 0.3s;
|
|
1295
|
+
}
|
|
1296
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_body {
|
|
1297
|
+
position: relative;
|
|
1298
|
+
flex: 1;
|
|
1299
|
+
display: flex;
|
|
1300
|
+
flex-flow: column;
|
|
1301
|
+
background: rgba(0, 0, 0, 0.02);
|
|
1302
|
+
padding: 16px;
|
|
1303
|
+
cursor: pointer;
|
|
1304
|
+
}
|
|
1305
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_checkbox {
|
|
1306
|
+
position: absolute;
|
|
1307
|
+
left: 8px;
|
|
1308
|
+
top: 8px;
|
|
1309
|
+
line-height: 1;
|
|
1310
|
+
opacity: 0;
|
|
1311
|
+
transition: 0.3s;
|
|
1312
|
+
}
|
|
1313
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_checkbox .ant-checkbox {
|
|
1314
|
+
border: 8px solid rgba(255, 255, 255, 0.624);
|
|
1315
|
+
border-radius: 2px;
|
|
1316
|
+
}
|
|
1317
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_info .title {
|
|
1318
|
+
display: flex;
|
|
1319
|
+
align-items: center;
|
|
1320
|
+
justify-content: space-between;
|
|
1321
|
+
gap: 8px;
|
|
1322
|
+
}
|
|
1323
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_info .title .label {
|
|
1324
|
+
flex: 1;
|
|
1325
|
+
font-size: 14px;
|
|
1326
|
+
font-weight: 500;
|
|
1327
|
+
text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
|
|
1328
|
+
text-overflow: ellipsis;
|
|
1329
|
+
overflow: hidden;
|
|
1330
|
+
white-space: nowrap;
|
|
1331
|
+
}
|
|
1332
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_info .title .icon {
|
|
1333
|
+
display: inline-flex;
|
|
1334
|
+
align-items: center;
|
|
1335
|
+
gap: 4px;
|
|
1336
|
+
font-size: 12px;
|
|
1337
|
+
line-height: 1;
|
|
1338
|
+
height: 22px;
|
|
1339
|
+
background: var(--background-color);
|
|
1340
|
+
padding: 0 8px;
|
|
1341
|
+
}
|
|
1342
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_info .code {
|
|
1343
|
+
font-size: 12px;
|
|
1344
|
+
}
|
|
1345
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_info .code .ant-typography {
|
|
1346
|
+
color: var(--text-color);
|
|
1347
|
+
text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
|
|
1348
|
+
margin: 0;
|
|
1349
|
+
}
|
|
1350
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_info .code .ant-typography .ant-typography-copy {
|
|
1351
|
+
color: inherit;
|
|
1352
|
+
}
|
|
1353
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_info .expand {
|
|
1354
|
+
display: flex;
|
|
1355
|
+
flex-wrap: wrap;
|
|
1356
|
+
gap: 16px;
|
|
1357
|
+
font-size: 12px;
|
|
1358
|
+
color: var(--text-color);
|
|
1359
|
+
text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
|
|
1360
|
+
padding: 6px 0 2px;
|
|
1361
|
+
}
|
|
1362
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_info .expand > div {
|
|
1363
|
+
padding: 2px 0;
|
|
1364
|
+
}
|
|
1365
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_center {
|
|
1366
|
+
display: flex;
|
|
1367
|
+
align-items: center;
|
|
1368
|
+
flex: 1;
|
|
1369
|
+
}
|
|
1370
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_center .list {
|
|
1371
|
+
display: flex;
|
|
1372
|
+
align-items: center;
|
|
1373
|
+
justify-content: space-between;
|
|
1374
|
+
text-align: center;
|
|
1375
|
+
width: 100%;
|
|
1376
|
+
margin: auto 0;
|
|
1377
|
+
}
|
|
1378
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_center .list .item {
|
|
1379
|
+
display: inline-flex;
|
|
1380
|
+
align-items: center;
|
|
1381
|
+
gap: 4px;
|
|
1382
|
+
line-height: 1;
|
|
1383
|
+
}
|
|
1384
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_center .list .item .num {
|
|
1385
|
+
font-size: 20px;
|
|
1386
|
+
font-weight: 500;
|
|
1387
|
+
color: var(--font-color);
|
|
1388
|
+
}
|
|
1389
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_center .list .item .text {
|
|
1390
|
+
font-size: 12px;
|
|
1391
|
+
color: var(--text-color);
|
|
1392
|
+
}
|
|
1393
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_footer {
|
|
1394
|
+
display: flex;
|
|
1395
|
+
align-items: center;
|
|
1396
|
+
height: 40px;
|
|
1397
|
+
background: #F7F7F7;
|
|
1398
|
+
}
|
|
1399
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_footer > * {
|
|
1400
|
+
flex: 1;
|
|
1401
|
+
}
|
|
1402
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_footer > *::after {
|
|
1403
|
+
content: '';
|
|
1404
|
+
position: absolute;
|
|
1405
|
+
right: 0;
|
|
1406
|
+
top: 50%;
|
|
1407
|
+
transform: translateY(-50%);
|
|
1408
|
+
height: 18px;
|
|
1409
|
+
width: 1px;
|
|
1410
|
+
background-color: #E8E8E8;
|
|
1411
|
+
}
|
|
1412
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_footer button:last-child {
|
|
1413
|
+
border: none;
|
|
1414
|
+
}
|
|
1415
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_footer button:last-child::after {
|
|
1416
|
+
display: none;
|
|
1417
|
+
}
|
|
1418
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_footer .footer_expand {
|
|
1419
|
+
font-size: 16px;
|
|
1420
|
+
text-align: center;
|
|
1421
|
+
border: none;
|
|
1422
|
+
}
|
|
1423
|
+
.lm_pro_component_img_table .lm_card_cell_content.checked,
|
|
1424
|
+
.lm_pro_component_img_table .lm_card_cell_content:hover {
|
|
1425
|
+
border-color: var(--primary-color);
|
|
1426
|
+
}
|
|
1427
|
+
.lm_pro_component_img_table .lm_card_cell_content.checked .card_cell_body .card_cell_checkbox,
|
|
1428
|
+
.lm_pro_component_img_table .lm_card_cell_content:hover .card_cell_body .card_cell_checkbox {
|
|
1429
|
+
opacity: 1;
|
|
1430
|
+
}
|
|
1431
|
+
.ant-table.ant-table-small .ant-table-title,
|
|
1432
|
+
.ant-table.ant-table-small .ant-table-footer,
|
|
1433
|
+
.ant-table.ant-table-small .ant-table-thead > tr > th,
|
|
1434
|
+
.ant-table.ant-table-small .ant-table-tbody > tr > td,
|
|
1435
|
+
.ant-table.ant-table-small tfoot > tr > th,
|
|
1436
|
+
.ant-table.ant-table-small tfoot > tr > td {
|
|
1437
|
+
padding: 4px 8px;
|
|
1438
|
+
}
|
|
1439
|
+
.ant-table-thead > tr > th,
|
|
1440
|
+
.ant-table-tbody > tr > td,
|
|
1441
|
+
.ant-table tfoot > tr > th,
|
|
1442
|
+
.ant-table tfoot > tr > td {
|
|
1443
|
+
padding: 8px 8px;
|
|
1444
|
+
}
|
|
1445
|
+
.ant-table.ant-table-middle .ant-table-title,
|
|
1446
|
+
.ant-table.ant-table-middle .ant-table-footer,
|
|
1447
|
+
.ant-table.ant-table-middle .ant-table-thead > tr > th,
|
|
1448
|
+
.ant-table.ant-table-middle .ant-table-tbody > tr > td,
|
|
1449
|
+
.ant-table.ant-table-middle tfoot > tr > th,
|
|
1450
|
+
.ant-table.ant-table-middle tfoot > tr > td {
|
|
1451
|
+
padding: 12px 8px;
|
|
1452
|
+
}
|