linkmore-design 1.0.24 → 1.0.27
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/index.umd.js +4874 -1210
- package/dist/index.umd.min.js +7 -7
- package/es/Button/index.js +1 -1
- package/es/Button/style/style.css +6 -0
- package/es/ButtonTags/style/style.css +3 -0
- package/es/Card/style/index.css +3 -0
- package/es/Checkbox/style/style.css +9 -0
- package/es/CkFilter/baseFilter/NestedFilter.js +137 -0
- package/es/CkFilter/baseFilter/filterMenu.js +15 -9
- package/es/CkFilter/baseFilter/index.js +5 -2
- package/es/CkFilter/baseFilter/moreFilters.js +20 -2
- package/es/CkFilter/complexFilter/drawer.js +35 -20
- package/es/CkFilter/complexFilter/index.js +1 -1
- package/es/CkFilter/components/Controls.js +8 -0
- package/es/CkFilter/components/DragBox/DndContainer.js +49 -0
- package/es/CkFilter/components/DragBox/index.js +63 -0
- package/es/CkFilter/components/DragBox/sortableBox.js +24 -0
- package/es/CkFilter/components/DragBox/sortableItem.js +111 -0
- package/es/CkFilter/components/Nested.js +90 -0
- package/es/CkFilter/components/filterTypes.js +59 -94
- package/es/CkFilter/components/modal.js +105 -38
- package/es/CkFilter/context.js +16 -3
- package/es/CkFilter/customFilter/drawer.js +61 -15
- package/es/CkFilter/customFilter/index.js +4 -1
- package/es/CkFilter/customFilter/radioGroup.js +4 -3
- package/es/CkFilter/icon_placeholder.png +0 -0
- package/es/CkFilter/style/style.css +45 -5
- package/es/CustomerService/style/style.css +3 -0
- package/es/Drawer/style/index.css +3 -0
- package/es/Dropdown/index.d.ts +2 -0
- package/es/Dropdown/index.js +9 -12
- package/es/Dropdown/style/index.css +15 -2
- package/es/EditTable/style/style.css +3 -0
- package/es/Empty/index.d.ts +7 -0
- package/es/Empty/index.js +3 -0
- package/es/Empty/style/index.css +502 -0
- package/es/Empty/style/index.d.ts +1 -0
- package/es/Empty/style/index.js +1 -0
- package/es/Filter/style/style.css +3 -0
- package/es/Input/index.js +6 -5
- package/es/Input/style/style.css +20 -0
- package/es/InputNumber/style/index.css +3 -0
- package/es/LeftTable/style/style.css +3 -0
- package/es/LmTable/ImgList/imgCell.js +3 -1
- package/es/LmTable/ImgList/imgTable.js +4 -4
- package/es/LmTable/style/style.css +65 -61
- package/es/Menu/index.d.ts +7 -0
- package/es/Menu/index.js +3 -0
- package/es/Menu/style/index.css +502 -0
- package/es/Menu/style/index.d.ts +1 -0
- package/es/Menu/style/index.js +1 -0
- package/es/Modal/index.js +1 -1
- package/es/Modal/style/index.css +3 -0
- package/es/Notification/style/index.css +3 -0
- package/es/Pagination/style/index.css +3 -0
- package/es/PopTable/style/style.css +3 -0
- package/es/ProTable/style/style.css +3 -0
- package/es/Radio/index.js +4 -2
- package/es/Radio/style/style.css +17 -3
- package/es/Select/style/index.css +3 -0
- package/es/Space/style/index.css +3 -0
- package/es/TabBar/index.js +1 -1
- package/es/Tree/index.d.ts +7 -0
- package/es/Tree/index.js +3 -0
- package/es/Tree/style/index.css +502 -0
- package/es/Tree/style/index.d.ts +1 -0
- package/es/Tree/style/index.js +1 -0
- package/es/index.js +9 -299
- package/es/styles/main.css +3 -0
- package/es/styles/resetAntd.css +3 -0
- package/lib/Button/index.js +1 -1
- package/lib/Button/style/style.css +6 -0
- package/lib/ButtonTags/style/style.css +3 -0
- package/lib/Card/style/index.css +3 -0
- package/lib/Checkbox/style/style.css +9 -0
- package/lib/CkFilter/baseFilter/NestedFilter.js +137 -0
- package/lib/CkFilter/baseFilter/filterMenu.js +15 -9
- package/lib/CkFilter/baseFilter/index.js +5 -2
- package/lib/CkFilter/baseFilter/moreFilters.js +20 -2
- package/lib/CkFilter/complexFilter/drawer.js +35 -20
- package/lib/CkFilter/complexFilter/index.js +1 -1
- package/lib/CkFilter/components/Controls.js +8 -0
- package/lib/CkFilter/components/DragBox/DndContainer.js +49 -0
- package/lib/CkFilter/components/DragBox/index.js +63 -0
- package/lib/CkFilter/components/DragBox/sortableBox.js +24 -0
- package/lib/CkFilter/components/DragBox/sortableItem.js +111 -0
- package/lib/CkFilter/components/Nested.js +90 -0
- package/lib/CkFilter/components/filterTypes.js +59 -94
- package/lib/CkFilter/components/modal.js +105 -38
- package/lib/CkFilter/context.js +16 -3
- package/lib/CkFilter/customFilter/drawer.js +61 -15
- package/lib/CkFilter/customFilter/index.js +4 -1
- package/lib/CkFilter/customFilter/radioGroup.js +4 -3
- package/lib/CkFilter/icon_placeholder.png +0 -0
- package/lib/CkFilter/style/style.css +45 -5
- package/lib/CustomerService/style/style.css +3 -0
- package/lib/Drawer/style/index.css +3 -0
- package/lib/Dropdown/index.d.ts +2 -0
- package/lib/Dropdown/index.js +9 -12
- package/lib/Dropdown/style/index.css +15 -2
- package/lib/EditTable/style/style.css +3 -0
- package/lib/Empty/index.d.ts +7 -0
- package/lib/Empty/index.js +15 -0
- package/lib/Empty/style/index.css +502 -0
- package/lib/Empty/style/index.d.ts +1 -0
- package/lib/Empty/style/index.js +3 -0
- package/lib/Filter/style/style.css +3 -0
- package/lib/Input/index.js +6 -5
- package/lib/Input/style/style.css +20 -0
- package/lib/InputNumber/style/index.css +3 -0
- package/lib/LeftTable/style/style.css +3 -0
- package/lib/LmTable/ImgList/imgCell.js +3 -1
- package/lib/LmTable/ImgList/imgTable.js +4 -4
- package/lib/LmTable/style/style.css +65 -61
- package/lib/Menu/index.d.ts +7 -0
- package/lib/Menu/index.js +15 -0
- package/lib/Menu/style/index.css +502 -0
- package/lib/Menu/style/index.d.ts +1 -0
- package/lib/Menu/style/index.js +3 -0
- package/lib/Modal/index.js +3 -3
- package/lib/Modal/style/index.css +3 -0
- package/lib/Notification/style/index.css +3 -0
- package/lib/Pagination/style/index.css +3 -0
- package/lib/PopTable/style/style.css +3 -0
- package/lib/ProTable/style/style.css +3 -0
- package/lib/Radio/index.js +4 -2
- package/lib/Radio/style/style.css +17 -3
- package/lib/Select/style/index.css +3 -0
- package/lib/Space/style/index.css +3 -0
- package/lib/TabBar/index.js +5 -5
- package/lib/Tree/index.d.ts +7 -0
- package/lib/Tree/index.js +15 -0
- package/lib/Tree/style/index.css +502 -0
- package/lib/Tree/style/index.d.ts +1 -0
- package/lib/Tree/style/index.js +3 -0
- package/lib/index.js +9 -299
- package/lib/styles/main.css +3 -0
- package/lib/styles/resetAntd.css +3 -0
- package/package.json +4 -1
|
@@ -75,6 +75,9 @@
|
|
|
75
75
|
font-size: 14px;
|
|
76
76
|
font-weight: 500;
|
|
77
77
|
}
|
|
78
|
+
.ant-notification-notice .ant-notification-notice-content > div > div:last-child {
|
|
79
|
+
margin-bottom: 8px;
|
|
80
|
+
}
|
|
78
81
|
.ant-notification-notice .ant-notification-notice-description {
|
|
79
82
|
font-size: 12px;
|
|
80
83
|
}
|
|
@@ -772,71 +775,71 @@ html {
|
|
|
772
775
|
.ant-popover.ant-pro-table-column-setting-overlay .ant-tree .ant-tree-node-content-wrapper:hover {
|
|
773
776
|
background-color: transparent;
|
|
774
777
|
}
|
|
775
|
-
.
|
|
778
|
+
.lm_pro_component_img_table {
|
|
776
779
|
display: flex;
|
|
777
780
|
flex-flow: column;
|
|
778
781
|
height: 100%;
|
|
779
782
|
}
|
|
780
|
-
.
|
|
783
|
+
.lm_pro_component_img_table .lm_img_body {
|
|
781
784
|
flex: 1;
|
|
782
785
|
height: calc(100% - 36px);
|
|
783
786
|
}
|
|
784
|
-
.
|
|
785
|
-
.
|
|
787
|
+
.lm_pro_component_img_table .lm_img_body.hasChecked .lm_imgList .img_cell_wrap .checkBox,
|
|
788
|
+
.lm_pro_component_img_table .lm_img_body.hasChecked .lm_imgList .img_cell_wrap .card_cell_checkbox {
|
|
786
789
|
opacity: 1;
|
|
787
790
|
}
|
|
788
|
-
.
|
|
791
|
+
.lm_pro_component_img_table .lm_img_footer {
|
|
789
792
|
display: flex;
|
|
790
793
|
justify-content: flex-end;
|
|
791
794
|
height: 36px;
|
|
792
795
|
}
|
|
793
|
-
.
|
|
796
|
+
.lm_pro_component_img_table .lm_imgList {
|
|
794
797
|
font-size: 0;
|
|
795
798
|
}
|
|
796
|
-
.
|
|
799
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap {
|
|
797
800
|
font-size: 12px;
|
|
798
801
|
width: 20%;
|
|
799
802
|
padding: 6px;
|
|
800
803
|
overflow: hidden;
|
|
801
804
|
}
|
|
802
|
-
.
|
|
805
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap.first_row {
|
|
803
806
|
padding-top: 0;
|
|
804
807
|
}
|
|
805
|
-
.
|
|
808
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap.last_row {
|
|
806
809
|
padding-bottom: 0;
|
|
807
810
|
}
|
|
808
|
-
.
|
|
811
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap.first_column {
|
|
809
812
|
padding-left: 0;
|
|
810
813
|
}
|
|
811
|
-
.
|
|
814
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap.last_column {
|
|
812
815
|
padding-right: 0;
|
|
813
816
|
}
|
|
814
|
-
.
|
|
817
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body {
|
|
815
818
|
display: flex;
|
|
816
819
|
flex-flow: column;
|
|
817
820
|
height: 100%;
|
|
818
821
|
border-radius: 2px;
|
|
819
822
|
background-color: var(--background-color);
|
|
820
|
-
padding: 16px
|
|
823
|
+
padding: 16px;
|
|
821
824
|
overflow: hidden;
|
|
822
825
|
border: 1px solid transparent;
|
|
823
826
|
transition: 0.3s;
|
|
824
827
|
}
|
|
825
|
-
.
|
|
828
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body:hover {
|
|
826
829
|
background-color: var(--background-color-hover);
|
|
827
830
|
}
|
|
828
|
-
.
|
|
831
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .ant-checkbox {
|
|
829
832
|
border: 8px solid rgba(255, 255, 255, 0.624);
|
|
830
833
|
border-radius: 2px;
|
|
831
834
|
}
|
|
832
|
-
.
|
|
835
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .checkBox {
|
|
833
836
|
position: absolute;
|
|
834
837
|
top: 0;
|
|
835
838
|
left: 0;
|
|
836
839
|
opacity: 0;
|
|
837
840
|
transition: 0.3s;
|
|
838
841
|
}
|
|
839
|
-
.
|
|
842
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .more {
|
|
840
843
|
position: absolute;
|
|
841
844
|
top: 0;
|
|
842
845
|
right: 0;
|
|
@@ -845,7 +848,7 @@ html {
|
|
|
845
848
|
background-color: rgba(255, 255, 255, 0.624);
|
|
846
849
|
transition: 0.3s;
|
|
847
850
|
}
|
|
848
|
-
.
|
|
851
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .more .more_btn {
|
|
849
852
|
display: inline-flex;
|
|
850
853
|
align-items: center;
|
|
851
854
|
justify-content: center;
|
|
@@ -853,7 +856,7 @@ html {
|
|
|
853
856
|
width: 32px;
|
|
854
857
|
height: 32px;
|
|
855
858
|
}
|
|
856
|
-
.
|
|
859
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .img_cell_thum {
|
|
857
860
|
position: relative;
|
|
858
861
|
display: flex;
|
|
859
862
|
align-items: center;
|
|
@@ -862,41 +865,42 @@ html {
|
|
|
862
865
|
text-align: center;
|
|
863
866
|
overflow: hidden;
|
|
864
867
|
}
|
|
865
|
-
.
|
|
868
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .img_cell_thum img {
|
|
866
869
|
display: inline-block;
|
|
867
|
-
max-height: 200px;
|
|
868
870
|
object-fit: cover;
|
|
869
871
|
margin: auto;
|
|
872
|
+
width: 100%;
|
|
870
873
|
}
|
|
871
|
-
.
|
|
872
|
-
.
|
|
874
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .img_cell_thum:hover .checkBox,
|
|
875
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .img_cell_thum:hover .more {
|
|
873
876
|
opacity: 1;
|
|
874
877
|
}
|
|
875
|
-
.
|
|
878
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .img_cell_title {
|
|
876
879
|
padding: 16px 0 0 4px;
|
|
877
880
|
}
|
|
878
|
-
.
|
|
881
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .img_cell_title .title {
|
|
879
882
|
color: var(--font-color);
|
|
880
883
|
white-space: nowrap;
|
|
881
884
|
text-overflow: ellipsis;
|
|
882
885
|
overflow: hidden;
|
|
883
886
|
font-weight: 500;
|
|
887
|
+
font-size: var(--font-size-base);
|
|
884
888
|
}
|
|
885
|
-
.
|
|
889
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .img_cell_title .code {
|
|
886
890
|
padding-top: 5px;
|
|
887
891
|
color: var(--text-color);
|
|
888
892
|
}
|
|
889
|
-
.
|
|
893
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .img_cell_title .code .ant-typography {
|
|
890
894
|
color: var(--text-color);
|
|
891
895
|
margin-bottom: 0;
|
|
892
896
|
}
|
|
893
|
-
.
|
|
897
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .img_cell_title .code .ant-typography .ant-typography-copy {
|
|
894
898
|
color: inherit;
|
|
895
899
|
}
|
|
896
|
-
.
|
|
900
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .img_cell_title .code .ant-typography .ant-typography-copy-success {
|
|
897
901
|
color: var(--success-color);
|
|
898
902
|
}
|
|
899
|
-
.
|
|
903
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .img_cell_tags {
|
|
900
904
|
flex: 1;
|
|
901
905
|
width: 100%;
|
|
902
906
|
padding-top: 9px;
|
|
@@ -907,19 +911,19 @@ html {
|
|
|
907
911
|
font-size: 12px;
|
|
908
912
|
padding-left: 4px;
|
|
909
913
|
}
|
|
910
|
-
.
|
|
914
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body .img_cell_tags button.ant-btn-sm {
|
|
911
915
|
border: 0;
|
|
912
916
|
background: var(--background-color-hover);
|
|
913
917
|
margin: 0 4px 6px 0px;
|
|
914
918
|
}
|
|
915
|
-
.
|
|
919
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body.checked {
|
|
916
920
|
border-color: #2593f9;
|
|
917
921
|
}
|
|
918
|
-
.
|
|
919
|
-
.
|
|
922
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body.checked .checkBox,
|
|
923
|
+
.lm_pro_component_img_table .lm_imgList .img_cell_wrap .img_cell_body.checked .more {
|
|
920
924
|
opacity: 1;
|
|
921
925
|
}
|
|
922
|
-
.
|
|
926
|
+
.lm_pro_component_img_table .lm_card_cell_content {
|
|
923
927
|
display: flex;
|
|
924
928
|
flex-flow: column;
|
|
925
929
|
height: 100%;
|
|
@@ -928,7 +932,7 @@ html {
|
|
|
928
932
|
border-radius: 2px;
|
|
929
933
|
transition: 0.3s;
|
|
930
934
|
}
|
|
931
|
-
.
|
|
935
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_body {
|
|
932
936
|
position: relative;
|
|
933
937
|
flex: 1;
|
|
934
938
|
display: flex;
|
|
@@ -937,7 +941,7 @@ html {
|
|
|
937
941
|
padding: 16px;
|
|
938
942
|
cursor: pointer;
|
|
939
943
|
}
|
|
940
|
-
.
|
|
944
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_checkbox {
|
|
941
945
|
position: absolute;
|
|
942
946
|
left: 8px;
|
|
943
947
|
top: 8px;
|
|
@@ -945,17 +949,17 @@ html {
|
|
|
945
949
|
opacity: 0;
|
|
946
950
|
transition: 0.3s;
|
|
947
951
|
}
|
|
948
|
-
.
|
|
952
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_checkbox .ant-checkbox {
|
|
949
953
|
border: 8px solid rgba(255, 255, 255, 0.624);
|
|
950
954
|
border-radius: 2px;
|
|
951
955
|
}
|
|
952
|
-
.
|
|
956
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_info .title {
|
|
953
957
|
display: flex;
|
|
954
958
|
align-items: center;
|
|
955
959
|
justify-content: space-between;
|
|
956
960
|
gap: 8px;
|
|
957
961
|
}
|
|
958
|
-
.
|
|
962
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_info .title .label {
|
|
959
963
|
flex: 1;
|
|
960
964
|
font-size: 14px;
|
|
961
965
|
font-weight: 500;
|
|
@@ -964,7 +968,7 @@ html {
|
|
|
964
968
|
overflow: hidden;
|
|
965
969
|
white-space: nowrap;
|
|
966
970
|
}
|
|
967
|
-
.
|
|
971
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_info .title .icon {
|
|
968
972
|
display: inline-flex;
|
|
969
973
|
align-items: center;
|
|
970
974
|
gap: 4px;
|
|
@@ -974,18 +978,18 @@ html {
|
|
|
974
978
|
background: var(--background-color);
|
|
975
979
|
padding: 0 8px;
|
|
976
980
|
}
|
|
977
|
-
.
|
|
981
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_info .code {
|
|
978
982
|
font-size: 12px;
|
|
979
983
|
}
|
|
980
|
-
.
|
|
984
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_info .code .ant-typography {
|
|
981
985
|
color: var(--text-color);
|
|
982
986
|
text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
|
|
983
987
|
margin: 0;
|
|
984
988
|
}
|
|
985
|
-
.
|
|
989
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_info .code .ant-typography .ant-typography-copy {
|
|
986
990
|
color: inherit;
|
|
987
991
|
}
|
|
988
|
-
.
|
|
992
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_info .expand {
|
|
989
993
|
display: flex;
|
|
990
994
|
flex-wrap: wrap;
|
|
991
995
|
gap: 16px;
|
|
@@ -994,15 +998,15 @@ html {
|
|
|
994
998
|
text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
|
|
995
999
|
padding: 6px 0 2px;
|
|
996
1000
|
}
|
|
997
|
-
.
|
|
1001
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_info .expand > div {
|
|
998
1002
|
padding: 2px 0;
|
|
999
1003
|
}
|
|
1000
|
-
.
|
|
1004
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_center {
|
|
1001
1005
|
display: flex;
|
|
1002
1006
|
align-items: center;
|
|
1003
1007
|
flex: 1;
|
|
1004
1008
|
}
|
|
1005
|
-
.
|
|
1009
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_center .list {
|
|
1006
1010
|
display: flex;
|
|
1007
1011
|
align-items: center;
|
|
1008
1012
|
justify-content: space-between;
|
|
@@ -1010,31 +1014,31 @@ html {
|
|
|
1010
1014
|
width: 100%;
|
|
1011
1015
|
margin: auto 0;
|
|
1012
1016
|
}
|
|
1013
|
-
.
|
|
1017
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_center .list .item {
|
|
1014
1018
|
display: inline-flex;
|
|
1015
1019
|
align-items: center;
|
|
1016
1020
|
gap: 4px;
|
|
1017
1021
|
line-height: 1;
|
|
1018
1022
|
}
|
|
1019
|
-
.
|
|
1023
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_center .list .item .num {
|
|
1020
1024
|
font-size: 20px;
|
|
1021
1025
|
font-weight: 500;
|
|
1022
1026
|
color: var(--font-color);
|
|
1023
1027
|
}
|
|
1024
|
-
.
|
|
1028
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_body .card_cell_center .list .item .text {
|
|
1025
1029
|
font-size: 12px;
|
|
1026
1030
|
color: var(--text-color);
|
|
1027
1031
|
}
|
|
1028
|
-
.
|
|
1032
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_footer {
|
|
1029
1033
|
display: flex;
|
|
1030
1034
|
align-items: center;
|
|
1031
1035
|
height: 40px;
|
|
1032
1036
|
background: #F7F7F7;
|
|
1033
1037
|
}
|
|
1034
|
-
.
|
|
1038
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_footer > * {
|
|
1035
1039
|
flex: 1;
|
|
1036
1040
|
}
|
|
1037
|
-
.
|
|
1041
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_footer > *::after {
|
|
1038
1042
|
content: '';
|
|
1039
1043
|
position: absolute;
|
|
1040
1044
|
right: 0;
|
|
@@ -1044,23 +1048,23 @@ html {
|
|
|
1044
1048
|
width: 1px;
|
|
1045
1049
|
background-color: #E8E8E8;
|
|
1046
1050
|
}
|
|
1047
|
-
.
|
|
1051
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_footer button:last-child {
|
|
1048
1052
|
border: none;
|
|
1049
1053
|
}
|
|
1050
|
-
.
|
|
1054
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_footer button:last-child::after {
|
|
1051
1055
|
display: none;
|
|
1052
1056
|
}
|
|
1053
|
-
.
|
|
1057
|
+
.lm_pro_component_img_table .lm_card_cell_content .card_cell_footer .footer_expand {
|
|
1054
1058
|
font-size: 16px;
|
|
1055
1059
|
text-align: center;
|
|
1056
1060
|
border: none;
|
|
1057
1061
|
}
|
|
1058
|
-
.
|
|
1059
|
-
.
|
|
1062
|
+
.lm_pro_component_img_table .lm_card_cell_content.checked,
|
|
1063
|
+
.lm_pro_component_img_table .lm_card_cell_content:hover {
|
|
1060
1064
|
border-color: var(--primary-color);
|
|
1061
1065
|
}
|
|
1062
|
-
.
|
|
1063
|
-
.
|
|
1066
|
+
.lm_pro_component_img_table .lm_card_cell_content.checked .card_cell_body .card_cell_checkbox,
|
|
1067
|
+
.lm_pro_component_img_table .lm_card_cell_content:hover .card_cell_body .card_cell_checkbox {
|
|
1064
1068
|
opacity: 1;
|
|
1065
1069
|
}
|
|
1066
1070
|
.lm_customCheck {
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports.default = void 0;
|
|
9
|
+
|
|
10
|
+
require("antd/es/menu/style");
|
|
11
|
+
|
|
12
|
+
var _menu = _interopRequireDefault(require("antd/es/menu"));
|
|
13
|
+
|
|
14
|
+
var _default = _menu.default;
|
|
15
|
+
exports.default = _default;
|