linkmore-design 1.1.13-alpha.0 → 1.1.13-alpha.10
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/CHANGELOG.md +118 -0
- package/dist/Button/demos/ghost.d.ts +2 -0
- package/dist/ConfigProvider/context.d.ts +1 -0
- package/dist/Descriptions/Cell.d.ts +1 -0
- package/dist/Descriptions/Item.d.ts +1 -0
- package/dist/Descriptions/index.d.ts +1 -1
- package/dist/Form/FormWrapper.d.ts +3 -0
- package/dist/Form/WrapperItem.d.ts +4 -0
- package/dist/Form/demos/disabled.d.ts +2 -0
- package/dist/Form/demos/responsive.d.ts +0 -1
- package/dist/Form/index.d.ts +2 -0
- package/dist/Form/interface.d.ts +12 -0
- package/dist/IconFont/demos/ConfigProvider.d.ts +2 -0
- package/dist/IconFont/index.d.ts +1 -2
- package/dist/LmDrag/LmDrag.d.ts +4 -0
- package/dist/LmDrag/components/DndContainer.d.ts +3 -0
- package/dist/LmDrag/components/sortableBox.d.ts +5 -0
- package/dist/LmDrag/components/sortableItem.d.ts +7 -0
- package/dist/LmDrag/demos/basic.d.ts +2 -0
- package/dist/LmDrag/index.d.ts +10 -0
- package/dist/LmDrag/style/index.d.ts +1 -0
- package/dist/LmDrag/style/variables.d.ts +1 -0
- package/dist/LmDrag/wrapper/Root.d.ts +3 -0
- package/dist/LmEditTable/EditTable.d.ts +16 -3
- package/dist/LmEditTable/components/QuickOpetate.d.ts +12 -0
- package/dist/LmEditTable/components/bottomOpetateComponent.d.ts +13 -0
- package/dist/LmEditTable/components/index.d.ts +3 -1
- package/dist/LmFilter/LmFilter.d.ts +2 -6
- package/dist/LmTable/demos/summuy.d.ts +2 -0
- package/dist/LmTable/expression.d.ts +1 -0
- package/dist/LmTable/hooks/useGroupDataSource.d.ts +7 -0
- package/dist/LmUpload/UploadList/ItemPictureCard.d.ts +2 -1
- package/dist/LmUpload/fns/index.d.ts +1 -0
- package/dist/QuickMenu/demos/useInDraw.d.ts +2 -0
- package/dist/QuickMenu/index.d.ts +3 -1
- package/dist/Select/index.d.ts +3 -0
- package/dist/TreeSelect/demos/treedata.d.ts +3 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.umd.js +2660 -1507
- package/dist/index.umd.min.js +17 -17
- package/dist/variables.css +263 -120
- package/es/Button/index.js +4 -3
- package/es/Button/style/index.css +28 -25
- package/es/Button/style/variables.css +28 -25
- package/es/Cascader/index.js +31 -3
- package/es/Cascader/style/index.css +1 -0
- package/es/Cascader/style/variables.css +1 -0
- package/es/ConfigProvider/context.d.ts +1 -0
- package/es/ConfigProvider/index.js +5 -3
- package/es/Descriptions/Cell.d.ts +1 -0
- package/es/Descriptions/Cell.js +5 -2
- package/es/Descriptions/Item.d.ts +1 -0
- package/es/Descriptions/Row.js +6 -1
- package/es/Descriptions/index.d.ts +1 -1
- package/es/Descriptions/index.js +3 -3
- package/es/Descriptions/style/index.css +3 -0
- package/es/Descriptions/style/variables.css +3 -0
- package/es/Form/Form.js +13 -4
- package/es/Form/FormItem/ItemHolder.js +1 -10
- package/es/Form/FormWrapper.d.ts +3 -0
- package/es/Form/FormWrapper.js +22 -0
- package/es/Form/WrapperItem.d.ts +4 -0
- package/es/Form/WrapperItem.js +217 -0
- package/es/Form/container.js +1 -13
- package/es/Form/images/icon_collapse.svg +1 -0
- package/es/Form/index.d.ts +2 -0
- package/es/Form/index.js +2 -0
- package/es/Form/interface.d.ts +12 -0
- package/es/Form/style/index.css +34 -41
- package/es/Form/style/variables.css +34 -41
- package/es/IconFont/index.d.ts +1 -2
- package/es/IconFont/index.js +18 -4
- package/es/ImageViewer/components/Operate.js +4 -7
- package/es/Input/index.js +47 -10
- package/es/InputNumber/index.js +23 -11
- package/es/InputNumber/style/index.css +7 -0
- package/es/InputNumber/style/variables.css +7 -0
- package/es/LmDrag/LmDrag.d.ts +4 -0
- package/es/LmDrag/LmDrag.js +30 -0
- package/es/LmDrag/components/DndContainer.d.ts +3 -0
- package/es/LmDrag/components/DndContainer.js +121 -0
- package/es/LmDrag/components/sortableBox.d.ts +5 -0
- package/es/LmDrag/components/sortableBox.js +23 -0
- package/es/LmDrag/components/sortableItem.d.ts +7 -0
- package/es/LmDrag/components/sortableItem.js +41 -0
- package/es/LmDrag/index.d.ts +10 -0
- package/es/LmDrag/index.js +3 -0
- package/es/LmDrag/style/index.css +0 -0
- package/es/LmDrag/style/index.d.ts +1 -0
- package/es/LmDrag/style/index.js +1 -0
- package/es/LmDrag/style/variables.css +0 -0
- package/es/LmDrag/style/variables.d.ts +1 -0
- package/es/LmDrag/style/variables.js +1 -0
- package/es/LmDrag/wrapper/Root.d.ts +3 -0
- package/es/LmDrag/wrapper/Root.js +12 -0
- package/es/LmEditTable/EditTable.d.ts +16 -3
- package/es/LmEditTable/EditTable.js +276 -235
- package/es/LmEditTable/components/QuickOpetate.d.ts +12 -0
- package/es/LmEditTable/components/QuickOpetate.js +82 -0
- package/es/LmEditTable/components/bottomOpetateComponent.d.ts +13 -0
- package/es/LmEditTable/components/bottomOpetateComponent.js +23 -0
- package/es/LmEditTable/components/index.d.ts +3 -1
- package/es/LmEditTable/components/index.js +3 -1
- package/es/LmEditTable/sortableItemCol.js +40 -10
- package/es/LmEditTable/style/index.css +20 -0
- package/es/LmEditTable/style/variables.css +20 -0
- package/es/LmEditTable/util.js +51 -15
- package/es/LmFilter/LmFilter.js +6 -6
- package/es/LmFilter/components/CheckboxFilter.js +9 -4
- package/es/LmFilter/components/DropdownFIlter.js +186 -111
- package/es/LmFilter/components/SelectFilter.js +4 -3
- package/es/LmFilter/filterFns/index.js +4 -6
- package/es/LmFilter/index.js +0 -3
- package/es/LmFilter/style/index.css +82 -54
- package/es/LmFilter/style/variables.css +82 -54
- package/es/LmFilter/utils.js +6 -6
- package/es/LmSelect/style/index.css +1 -0
- package/es/LmSelect/style/variables.css +1 -0
- package/es/LmTable/Table.js +24 -15
- package/es/LmTable/expression.d.ts +1 -0
- package/es/LmTable/expression.js +31 -0
- package/es/LmTable/hooks/useGroupDataSource.js +50 -0
- package/es/LmTable/style/index.css +39 -0
- package/es/LmTable/style/variables.css +39 -0
- package/es/LmUpload/LmUpload.js +6 -3
- package/es/LmUpload/UploadList/ItemPicture.js +2 -1
- package/es/LmUpload/UploadList/ItemPictureCard.d.ts +2 -1
- package/es/LmUpload/UploadList/ItemPictureCard.js +15 -5
- package/es/LmUpload/UploadList/ItemText.js +7 -2
- package/es/LmUpload/UploadList/index.js +53 -2
- package/es/LmUpload/body/UploadCore.js +4 -1
- package/es/LmUpload/fns/index.d.ts +1 -0
- package/es/LmUpload/fns/index.js +27 -6
- package/es/LmUpload/style/index.css +17 -0
- package/es/LmUpload/style/variables.css +17 -0
- package/es/QuickMenu/index.d.ts +3 -1
- package/es/QuickMenu/index.js +22 -19
- package/es/Select/index.d.ts +3 -0
- package/es/Select/index.js +44 -7
- package/es/Select/style/index.css +28 -0
- package/es/Select/style/variables.css +28 -0
- package/es/TreeSelect/index.js +17 -2
- package/es/TreeSelect/style/index.css +3 -0
- package/es/TreeSelect/style/variables.css +3 -0
- package/es/index.d.ts +2 -0
- package/es/index.js +2 -1
- package/es/styles/variables.css +263 -120
- package/lib/Button/index.js +4 -3
- package/lib/Button/style/index.css +28 -25
- package/lib/Button/style/variables.css +28 -25
- package/lib/Cascader/index.js +35 -3
- package/lib/Cascader/style/index.css +1 -0
- package/lib/Cascader/style/variables.css +1 -0
- package/lib/ConfigProvider/context.d.ts +1 -0
- package/lib/ConfigProvider/index.js +5 -3
- package/lib/Descriptions/Cell.d.ts +1 -0
- package/lib/Descriptions/Cell.js +5 -2
- package/lib/Descriptions/Item.d.ts +1 -0
- package/lib/Descriptions/Row.js +6 -1
- package/lib/Descriptions/index.d.ts +1 -1
- package/lib/Descriptions/index.js +3 -3
- package/lib/Descriptions/style/index.css +3 -0
- package/lib/Descriptions/style/variables.css +3 -0
- package/lib/Form/Form.js +13 -4
- package/lib/Form/FormItem/ItemHolder.js +1 -10
- package/lib/Form/FormWrapper.d.ts +3 -0
- package/lib/Form/FormWrapper.js +34 -0
- package/lib/Form/WrapperItem.d.ts +4 -0
- package/lib/Form/WrapperItem.js +235 -0
- package/lib/Form/container.js +1 -13
- package/lib/Form/images/icon_collapse.svg +1 -0
- package/lib/Form/index.d.ts +2 -0
- package/lib/Form/index.js +3 -0
- package/lib/Form/interface.d.ts +12 -0
- package/lib/Form/style/index.css +34 -41
- package/lib/Form/style/variables.css +34 -41
- package/lib/IconFont/index.d.ts +1 -2
- package/lib/IconFont/index.js +25 -4
- package/lib/ImageViewer/components/Operate.js +4 -8
- package/lib/Input/index.js +52 -10
- package/lib/InputNumber/index.js +29 -11
- package/lib/InputNumber/style/index.css +7 -0
- package/lib/InputNumber/style/variables.css +7 -0
- package/lib/LmDrag/LmDrag.d.ts +4 -0
- package/lib/LmDrag/LmDrag.js +44 -0
- package/lib/LmDrag/components/DndContainer.d.ts +3 -0
- package/lib/LmDrag/components/DndContainer.js +138 -0
- package/lib/LmDrag/components/sortableBox.d.ts +5 -0
- package/lib/LmDrag/components/sortableBox.js +37 -0
- package/lib/LmDrag/components/sortableItem.d.ts +7 -0
- package/lib/LmDrag/components/sortableItem.js +54 -0
- package/lib/LmDrag/index.d.ts +10 -0
- package/lib/LmDrag/index.js +19 -0
- package/lib/LmDrag/style/index.css +0 -0
- package/lib/LmDrag/style/index.d.ts +1 -0
- package/lib/LmDrag/style/index.js +3 -0
- package/lib/LmDrag/style/variables.css +0 -0
- package/lib/LmDrag/style/variables.d.ts +1 -0
- package/lib/LmDrag/style/variables.js +3 -0
- package/lib/LmDrag/wrapper/Root.d.ts +3 -0
- package/lib/LmDrag/wrapper/Root.js +26 -0
- package/lib/LmEditTable/EditTable.d.ts +16 -3
- package/lib/LmEditTable/EditTable.js +272 -231
- package/lib/LmEditTable/components/QuickOpetate.d.ts +12 -0
- package/lib/LmEditTable/components/QuickOpetate.js +96 -0
- package/lib/LmEditTable/components/bottomOpetateComponent.d.ts +13 -0
- package/lib/LmEditTable/components/bottomOpetateComponent.js +34 -0
- package/lib/LmEditTable/components/index.d.ts +3 -1
- package/lib/LmEditTable/components/index.js +16 -0
- package/lib/LmEditTable/sortableItemCol.js +37 -8
- package/lib/LmEditTable/style/index.css +20 -0
- package/lib/LmEditTable/style/variables.css +20 -0
- package/lib/LmEditTable/util.js +50 -14
- package/lib/LmFilter/LmFilter.js +6 -6
- package/lib/LmFilter/components/CheckboxFilter.js +9 -4
- package/lib/LmFilter/components/DropdownFIlter.js +186 -111
- package/lib/LmFilter/components/SelectFilter.js +4 -3
- package/lib/LmFilter/filterFns/index.js +4 -6
- package/lib/LmFilter/index.js +0 -3
- package/lib/LmFilter/style/index.css +82 -54
- package/lib/LmFilter/style/variables.css +82 -54
- package/lib/LmFilter/utils.js +6 -6
- package/lib/LmSelect/style/index.css +1 -0
- package/lib/LmSelect/style/variables.css +1 -0
- package/lib/LmTable/Table.js +24 -15
- package/lib/LmTable/expression.d.ts +1 -0
- package/lib/LmTable/expression.js +41 -0
- package/lib/LmTable/hooks/useGroupDataSource.js +50 -0
- package/lib/LmTable/style/index.css +39 -0
- package/lib/LmTable/style/variables.css +39 -0
- package/lib/LmUpload/LmUpload.js +9 -3
- package/lib/LmUpload/UploadList/ItemPicture.js +2 -1
- package/lib/LmUpload/UploadList/ItemPictureCard.d.ts +2 -1
- package/lib/LmUpload/UploadList/ItemPictureCard.js +15 -5
- package/lib/LmUpload/UploadList/ItemText.js +7 -2
- package/lib/LmUpload/UploadList/index.js +54 -2
- package/lib/LmUpload/body/UploadCore.js +5 -1
- package/lib/LmUpload/fns/index.d.ts +1 -0
- package/lib/LmUpload/fns/index.js +27 -6
- package/lib/LmUpload/style/index.css +17 -0
- package/lib/LmUpload/style/variables.css +17 -0
- package/lib/QuickMenu/index.d.ts +3 -1
- package/lib/QuickMenu/index.js +21 -18
- package/lib/Select/index.d.ts +3 -0
- package/lib/Select/index.js +47 -7
- package/lib/Select/style/index.css +28 -0
- package/lib/Select/style/variables.css +28 -0
- package/lib/TreeSelect/index.js +21 -2
- package/lib/TreeSelect/style/index.css +3 -0
- package/lib/TreeSelect/style/variables.css +3 -0
- package/lib/index.d.ts +2 -0
- package/lib/index.js +15 -1
- package/lib/styles/variables.css +263 -120
- package/package.json +5 -1
package/lib/styles/variables.css
CHANGED
|
@@ -746,12 +746,13 @@ p {
|
|
|
746
746
|
padding: 0 var(--gap);
|
|
747
747
|
}
|
|
748
748
|
.ant-btn.lm-button {
|
|
749
|
-
border: 0;
|
|
750
749
|
display: inline-flex !important;
|
|
751
750
|
flex-direction: row;
|
|
752
751
|
align-items: center;
|
|
753
752
|
justify-content: center;
|
|
753
|
+
color: var(--font-color);
|
|
754
754
|
vertical-align: middle;
|
|
755
|
+
border: 1px solid var(--stroke-color);
|
|
755
756
|
box-shadow: none;
|
|
756
757
|
}
|
|
757
758
|
.ant-btn.lm-button .anticon {
|
|
@@ -769,12 +770,24 @@ p {
|
|
|
769
770
|
white-space: nowrap;
|
|
770
771
|
}
|
|
771
772
|
.ant-btn.lm-button::before {
|
|
772
|
-
|
|
773
|
+
position: absolute;
|
|
774
|
+
z-index: 1;
|
|
775
|
+
display: none;
|
|
776
|
+
background: #fff;
|
|
777
|
+
border-radius: inherit;
|
|
778
|
+
opacity: 0.35;
|
|
779
|
+
transition: opacity 0.2s;
|
|
780
|
+
content: '';
|
|
781
|
+
pointer-events: none;
|
|
782
|
+
inset: -1px;
|
|
783
|
+
}
|
|
784
|
+
.ant-btn.lm-button.ant-btn-loading::before {
|
|
785
|
+
display: block;
|
|
773
786
|
}
|
|
774
787
|
.ant-btn.lm-button:disabled {
|
|
788
|
+
color: var(--disabled-font-color) !important;
|
|
775
789
|
background: var(--disabled-bg-color) !important;
|
|
776
790
|
border: 1px solid var(--disabled-border-color) !important;
|
|
777
|
-
color: var(--disabled-font-color) !important;
|
|
778
791
|
}
|
|
779
792
|
.ant-btn.lm-button > span:not(.anticon) {
|
|
780
793
|
font-size: 12px;
|
|
@@ -795,57 +808,46 @@ p {
|
|
|
795
808
|
.ant-btn.lm-button-middle .anticon {
|
|
796
809
|
font-size: 16px;
|
|
797
810
|
}
|
|
798
|
-
.ant-btn.lm-button-default {
|
|
799
|
-
border: 1px solid var(--stroke-color);
|
|
800
|
-
color: var(--font-color);
|
|
801
|
-
}
|
|
802
|
-
.ant-btn.lm-button-default-hover,
|
|
803
|
-
.ant-btn.lm-button-default:hover {
|
|
804
|
-
border: 1px solid var(--primary-hover-color);
|
|
805
|
-
color: var(--primary-hover-color);
|
|
806
|
-
}
|
|
807
|
-
.ant-btn.lm-button-default.ant-btn-loading {
|
|
808
|
-
border-color: rgba(0, 0, 0, 0.15);
|
|
809
|
-
color: rgba(0, 0, 0, 0.15);
|
|
810
|
-
}
|
|
811
811
|
.ant-btn.lm-button-primary {
|
|
812
|
-
background: var(--primary-color);
|
|
813
812
|
color: #fff;
|
|
813
|
+
background: var(--primary-color);
|
|
814
|
+
border-color: var(--primary-color);
|
|
814
815
|
}
|
|
815
|
-
.ant-btn.lm-button-primary-hover,
|
|
816
816
|
.ant-btn.lm-button-primary:hover {
|
|
817
817
|
background: var(--primary-hover-color);
|
|
818
818
|
}
|
|
819
|
+
.ant-btn.lm-button-primary:active {
|
|
820
|
+
background-color: var(--primary-click-color);
|
|
821
|
+
}
|
|
819
822
|
.ant-btn.lm-button-primary.ant-btn-loading {
|
|
820
823
|
background: var(--primary-loading-color);
|
|
821
824
|
}
|
|
822
825
|
.ant-btn.lm-button-ghost {
|
|
823
826
|
color: var(--font-color);
|
|
824
|
-
border-color: var(--color-15);
|
|
825
827
|
background: transparent;
|
|
828
|
+
border: 1px solid var(--color-15);
|
|
826
829
|
}
|
|
827
830
|
.ant-btn.lm-button-danger {
|
|
828
|
-
border: 1px solid var(--error-color);
|
|
829
831
|
color: var(--error-color);
|
|
830
832
|
text-shadow: none;
|
|
833
|
+
border: 1px solid var(--error-color);
|
|
831
834
|
box-shadow: none;
|
|
832
835
|
}
|
|
833
|
-
.ant-btn.lm-button-danger-hover,
|
|
834
836
|
.ant-btn.lm-button-danger:hover {
|
|
835
|
-
border-color: var(--error-hover-color);
|
|
836
837
|
color: var(--error-hover-color);
|
|
838
|
+
border-color: var(--error-hover-color);
|
|
837
839
|
}
|
|
838
840
|
.ant-btn.lm-button-danger.ant-btn-loading {
|
|
839
|
-
border-color: var(--error-loading-color);
|
|
840
841
|
color: var(--error-hover-color);
|
|
842
|
+
border-color: var(--error-loading-color);
|
|
841
843
|
}
|
|
842
844
|
.ant-btn.lm-button-dashed {
|
|
843
845
|
border: 1px dashed var(--color-15);
|
|
844
846
|
}
|
|
845
847
|
.ant-btn.lm-button-link {
|
|
846
848
|
color: var(--primary-color);
|
|
849
|
+
border-color: transparent;
|
|
847
850
|
}
|
|
848
|
-
.ant-btn.lm-button-link-hover,
|
|
849
851
|
.ant-btn.lm-button-link:hover {
|
|
850
852
|
color: var(--primary-hover-color);
|
|
851
853
|
}
|
|
@@ -853,11 +855,12 @@ p {
|
|
|
853
855
|
color: var(--primary-loading-color);
|
|
854
856
|
}
|
|
855
857
|
.ant-btn.lm-button-link[disabled] {
|
|
856
|
-
border: 0 !important;
|
|
857
858
|
background: transparent !important;
|
|
859
|
+
border: 0 !important;
|
|
858
860
|
}
|
|
859
861
|
.ant-btn.ant-btn-text {
|
|
860
862
|
background: transparent;
|
|
863
|
+
border-color: transparent;
|
|
861
864
|
}
|
|
862
865
|
.ant-btn.lm-button-icon-only .anticon {
|
|
863
866
|
font-size: 16px;
|
|
@@ -1407,6 +1410,7 @@ p {
|
|
|
1407
1410
|
}
|
|
1408
1411
|
.lm_cascader.ant-select.ant-select {
|
|
1409
1412
|
font-size: 12px;
|
|
1413
|
+
width: 100%;
|
|
1410
1414
|
}
|
|
1411
1415
|
.lm_cascader_dropdown.ant-select-dropdown {
|
|
1412
1416
|
font-size: 12px;
|
|
@@ -2240,6 +2244,9 @@ p {
|
|
|
2240
2244
|
padding-right: 24px;
|
|
2241
2245
|
padding-bottom: 8px;
|
|
2242
2246
|
}
|
|
2247
|
+
.lm_descriptions .ant-descriptions-item:last-child {
|
|
2248
|
+
padding-right: 0;
|
|
2249
|
+
}
|
|
2243
2250
|
.lm_descriptions .ant-descriptions-item .ant-descriptions-item-container {
|
|
2244
2251
|
color: var(--color-85);
|
|
2245
2252
|
font-size: 12px;
|
|
@@ -8951,55 +8958,48 @@ p {
|
|
|
8951
8958
|
.lm_form.ant-form.ant-form-inline .ant-form-item-label {
|
|
8952
8959
|
text-align: left;
|
|
8953
8960
|
}
|
|
8954
|
-
.
|
|
8955
|
-
|
|
8956
|
-
}
|
|
8957
|
-
.lm_container_wrapper .lm_container.responsive {
|
|
8958
|
-
min-width: 990px;
|
|
8959
|
-
}
|
|
8960
|
-
.lm_container_wrapper .lm_container.responsive .lm_form.ant-form {
|
|
8961
|
-
display: flex;
|
|
8962
|
-
flex-direction: row;
|
|
8963
|
-
flex-wrap: wrap;
|
|
8964
|
-
}
|
|
8965
|
-
.lm_container_wrapper .lm_container.responsive .lm_form.ant-form .ant-form-item-responsive {
|
|
8966
|
-
margin-right: 24px;
|
|
8967
|
-
}
|
|
8968
|
-
.lm_container_wrapper .lm_container.responsive .lm_form.ant-form .ant-form-item-responsive .ant-form-item-control {
|
|
8969
|
-
width: 100%;
|
|
8970
|
-
}
|
|
8971
|
-
.lm_container_wrapper .lm_container.responsive.lm_col_3 .ant-form-item {
|
|
8972
|
-
width: 100%;
|
|
8973
|
-
margin-right: 0;
|
|
8961
|
+
.lm_form_responsive_box .lm_form {
|
|
8962
|
+
background: #f0f0f0;
|
|
8974
8963
|
}
|
|
8975
|
-
.
|
|
8976
|
-
|
|
8977
|
-
margin-
|
|
8964
|
+
.lm_form_responsive_box .lm_form > .lm_container_wrapper {
|
|
8965
|
+
background: #f0f0f0;
|
|
8966
|
+
margin-bottom: 0;
|
|
8967
|
+
border-radius: 0;
|
|
8968
|
+
padding: 16px;
|
|
8978
8969
|
}
|
|
8979
|
-
.lm_container_wrapper
|
|
8980
|
-
|
|
8970
|
+
.lm_container_wrapper {
|
|
8971
|
+
overflow: auto;
|
|
8972
|
+
background: #fff;
|
|
8973
|
+
margin-bottom: 16px;
|
|
8974
|
+
border-radius: 2px;
|
|
8975
|
+
padding: 0;
|
|
8981
8976
|
}
|
|
8982
|
-
.lm_container_wrapper .
|
|
8977
|
+
.lm_container_wrapper .ant-cascader {
|
|
8983
8978
|
width: 100%;
|
|
8984
|
-
margin-right: 0;
|
|
8985
8979
|
}
|
|
8986
|
-
.
|
|
8987
|
-
|
|
8988
|
-
|
|
8989
|
-
|
|
8990
|
-
|
|
8991
|
-
|
|
8980
|
+
.form_responsive_group_title {
|
|
8981
|
+
display: flex;
|
|
8982
|
+
font-size: 14px;
|
|
8983
|
+
line-height: 22px;
|
|
8984
|
+
margin: 0;
|
|
8985
|
+
padding-top: 16px;
|
|
8986
|
+
color: var(--color-85);
|
|
8987
|
+
flex-basis: 100%;
|
|
8988
|
+
align-items: center;
|
|
8992
8989
|
}
|
|
8993
|
-
.
|
|
8994
|
-
|
|
8995
|
-
|
|
8990
|
+
.form_responsive_group_title h3 {
|
|
8991
|
+
flex: 1;
|
|
8992
|
+
font-weight: medium;
|
|
8993
|
+
font-size: 14px;
|
|
8996
8994
|
}
|
|
8997
|
-
.
|
|
8998
|
-
|
|
8999
|
-
|
|
8995
|
+
.form_responsive_group_title img {
|
|
8996
|
+
cursor: pointer;
|
|
8997
|
+
width: 16px;
|
|
8998
|
+
height: 16px;
|
|
8999
|
+
transition: transform 0.24s;
|
|
9000
9000
|
}
|
|
9001
|
-
.
|
|
9002
|
-
|
|
9001
|
+
.form_responsive_group_title img.open {
|
|
9002
|
+
transform: rotate(180deg);
|
|
9003
9003
|
}
|
|
9004
9004
|
.lm_form-item-tip-error .ant-form-item-explain {
|
|
9005
9005
|
width: 100%;
|
|
@@ -9507,8 +9507,12 @@ p {
|
|
|
9507
9507
|
.ant-input-search-with-button .ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):hover {
|
|
9508
9508
|
z-index: 2 !important;
|
|
9509
9509
|
}
|
|
9510
|
+
.lm_input-number {
|
|
9511
|
+
width: 100%;
|
|
9512
|
+
}
|
|
9510
9513
|
.lm_input-number.ant-input-number {
|
|
9511
9514
|
border: 1px solid var(--color-15);
|
|
9515
|
+
width: 100%;
|
|
9512
9516
|
}
|
|
9513
9517
|
.lm_input-number .ant-input-number-handler-wrap {
|
|
9514
9518
|
width: 28px;
|
|
@@ -9542,6 +9546,9 @@ p {
|
|
|
9542
9546
|
.lm_input-number.ant-input-number-status-warning {
|
|
9543
9547
|
border-color: var(--warning-color) !important;
|
|
9544
9548
|
}
|
|
9549
|
+
.lm_input-number .ant-input-number-input::placeholder {
|
|
9550
|
+
font-size: 12px;
|
|
9551
|
+
}
|
|
9545
9552
|
.lm_grid_tree {
|
|
9546
9553
|
position: relative;
|
|
9547
9554
|
font-size: 12px;
|
|
@@ -9731,6 +9738,9 @@ p {
|
|
|
9731
9738
|
width: 32px;
|
|
9732
9739
|
padding: 0 8px;
|
|
9733
9740
|
}
|
|
9741
|
+
.lm_editTable_warpper .ant-table-thead > tr > th:not(:last-child):not(.ant-table-selection-column):not(.ant-table-row-expand-icon-cell):not([colspan])::before {
|
|
9742
|
+
height: 100%;
|
|
9743
|
+
}
|
|
9734
9744
|
.lm_editTable_warpper .lm_editTable_cell {
|
|
9735
9745
|
cursor: pointer;
|
|
9736
9746
|
height: 40px;
|
|
@@ -9745,6 +9755,14 @@ p {
|
|
|
9745
9755
|
.lm_editTable_warpper .lm_custom_cell_td {
|
|
9746
9756
|
position: relative;
|
|
9747
9757
|
}
|
|
9758
|
+
.lm_editTable_warpper .lm_custom_cell_td.ant-table-cell-with-append {
|
|
9759
|
+
display: flex;
|
|
9760
|
+
flex-direction: row;
|
|
9761
|
+
flex-wrap: nowrap;
|
|
9762
|
+
}
|
|
9763
|
+
.lm_editTable_warpper .lm_custom_cell_td > .ant-form-item {
|
|
9764
|
+
flex: 1 1 auto;
|
|
9765
|
+
}
|
|
9748
9766
|
.lm_editTable_warpper .lm_custom_cell_td .ant-form-item-control-input-content {
|
|
9749
9767
|
display: flex;
|
|
9750
9768
|
flex-direction: row;
|
|
@@ -9793,6 +9811,9 @@ p {
|
|
|
9793
9811
|
.lm_editTable_warpper .lm_table_quickcopy .anticon {
|
|
9794
9812
|
color: var(--text-color);
|
|
9795
9813
|
}
|
|
9814
|
+
.lm_editTable_warpper .ant-table-body {
|
|
9815
|
+
scroll-behavior: smooth;
|
|
9816
|
+
}
|
|
9796
9817
|
.lm_editTable_warpper .icon_drag {
|
|
9797
9818
|
color: var(--tip-text-color);
|
|
9798
9819
|
}
|
|
@@ -9806,6 +9827,12 @@ p {
|
|
|
9806
9827
|
padding-left: 8px;
|
|
9807
9828
|
padding-right: 8px;
|
|
9808
9829
|
}
|
|
9830
|
+
.lm_editTable_warpper .ant-table-thead > tr > th:not(:last-child):not(.ant-table-selection-column):not(.ant-table-row-expand-icon-cell):not([colspan])::before {
|
|
9831
|
+
background-color: rgba(0, 0, 0, 0.06) !important;
|
|
9832
|
+
}
|
|
9833
|
+
.lm_editTable_warpper .ant-table-thead > tr > th:not(:last-child):not(.ant-table-selection-column):not(.ant-table-row-expand-icon-cell):not([colspan])::before {
|
|
9834
|
+
background-color: rgba(0, 0, 0, 0.06) !important;
|
|
9835
|
+
}
|
|
9809
9836
|
.lm_editTable_warpper .ant-picker {
|
|
9810
9837
|
height: 24px !important;
|
|
9811
9838
|
padding: 2px 8px;
|
|
@@ -9852,8 +9879,8 @@ p {
|
|
|
9852
9879
|
.lm_filter_wrapper .lm_filter_container .lm_filter {
|
|
9853
9880
|
display: flex;
|
|
9854
9881
|
flex-wrap: wrap;
|
|
9855
|
-
align-items: center;
|
|
9856
9882
|
gap: 8px;
|
|
9883
|
+
align-items: center;
|
|
9857
9884
|
font-size: 12px;
|
|
9858
9885
|
}
|
|
9859
9886
|
.lm_filter_wrapper .lm_filter_container .lm_filter .lm_filter_custom {
|
|
@@ -9864,14 +9891,14 @@ p {
|
|
|
9864
9891
|
display: inline-flex;
|
|
9865
9892
|
align-items: center;
|
|
9866
9893
|
justify-content: space-between;
|
|
9867
|
-
height: 32px;
|
|
9868
|
-
line-height: 1;
|
|
9869
9894
|
min-width: 100px;
|
|
9870
9895
|
max-width: 180px;
|
|
9896
|
+
height: 32px;
|
|
9897
|
+
padding: 0 8px;
|
|
9898
|
+
color: var(--font2-color);
|
|
9899
|
+
line-height: 1;
|
|
9871
9900
|
border: 1px solid var(--color-15);
|
|
9872
9901
|
border-radius: 2px;
|
|
9873
|
-
color: var(--font2-color);
|
|
9874
|
-
padding: 0 8px;
|
|
9875
9902
|
cursor: pointer;
|
|
9876
9903
|
transition: 0.3s;
|
|
9877
9904
|
}
|
|
@@ -9879,13 +9906,13 @@ p {
|
|
|
9879
9906
|
height: 24px;
|
|
9880
9907
|
}
|
|
9881
9908
|
.lm_filter_wrapper .lm_filter_container .lm_filter .lm_filter_custom .lm_filter_custom_select .lm_filter_custom_select_label span {
|
|
9882
|
-
text-overflow: ellipsis;
|
|
9883
|
-
white-space: nowrap;
|
|
9884
9909
|
overflow: hidden;
|
|
9910
|
+
white-space: nowrap;
|
|
9911
|
+
text-overflow: ellipsis;
|
|
9885
9912
|
}
|
|
9886
9913
|
.lm_filter_wrapper .lm_filter_container .lm_filter .lm_filter_custom .lm_filter_custom_select .lm_filter_custom_select_icon {
|
|
9887
|
-
font-size: 14px;
|
|
9888
9914
|
color: var(--text-color);
|
|
9915
|
+
font-size: 14px;
|
|
9889
9916
|
transition: 0.3s;
|
|
9890
9917
|
}
|
|
9891
9918
|
.lm_filter_wrapper .lm_filter_container .lm_filter .lm_filter_custom .lm_filter_custom_select:hover {
|
|
@@ -9914,16 +9941,17 @@ p {
|
|
|
9914
9941
|
height: 24px;
|
|
9915
9942
|
}
|
|
9916
9943
|
.lm_filter_basic_item {
|
|
9917
|
-
font-size: 12px;
|
|
9918
9944
|
display: inline-flex;
|
|
9945
|
+
gap: 4px;
|
|
9919
9946
|
align-items: center;
|
|
9947
|
+
height: 32px;
|
|
9948
|
+
padding: 0 8px;
|
|
9949
|
+
font-size: 12px;
|
|
9920
9950
|
line-height: 1;
|
|
9951
|
+
vertical-align: middle;
|
|
9921
9952
|
border-radius: 2px;
|
|
9922
|
-
padding: 0 8px;
|
|
9923
|
-
transition: 0.3s;
|
|
9924
9953
|
cursor: pointer;
|
|
9925
|
-
|
|
9926
|
-
gap: 4px;
|
|
9954
|
+
transition: 0.3s;
|
|
9927
9955
|
}
|
|
9928
9956
|
.lm_filter_basic_item.small {
|
|
9929
9957
|
height: 24px;
|
|
@@ -9933,21 +9961,34 @@ p {
|
|
|
9933
9961
|
.lm_filter_basic_item.active {
|
|
9934
9962
|
background-color: var(--color-4);
|
|
9935
9963
|
}
|
|
9964
|
+
.lm_filter_basic_item .filter_item_label {
|
|
9965
|
+
flex: 0 0 auto;
|
|
9966
|
+
}
|
|
9936
9967
|
.lm_filter_basic_item .filter_item_value {
|
|
9937
9968
|
display: inline-flex;
|
|
9938
|
-
align-items: center;
|
|
9939
9969
|
gap: 4px;
|
|
9970
|
+
align-items: center;
|
|
9971
|
+
max-width: 552px;
|
|
9972
|
+
overflow: hidden;
|
|
9940
9973
|
color: var(--text-color);
|
|
9941
9974
|
transition: 0.3s;
|
|
9942
9975
|
}
|
|
9976
|
+
.lm_filter_basic_item .filter_item_value span {
|
|
9977
|
+
overflow: hidden;
|
|
9978
|
+
white-space: nowrap;
|
|
9979
|
+
text-overflow: ellipsis;
|
|
9980
|
+
}
|
|
9943
9981
|
.lm_filter_basic_item .filter_item_icon {
|
|
9944
|
-
font-size: 14px;
|
|
9945
9982
|
color: var(--text-color);
|
|
9983
|
+
font-size: 14px;
|
|
9946
9984
|
transition: 0.3s;
|
|
9947
9985
|
}
|
|
9948
9986
|
.lm_filter_basic_item .filter_item_icon.addon_before {
|
|
9949
9987
|
color: var(--font-color);
|
|
9950
9988
|
}
|
|
9989
|
+
.lm_filter_basic_item .filter_item_icon .icon_clear {
|
|
9990
|
+
display: none;
|
|
9991
|
+
}
|
|
9951
9992
|
.lm_filter_basic_item.expand .filter_item_icon.addon_after {
|
|
9952
9993
|
transform: rotateX(180deg);
|
|
9953
9994
|
}
|
|
@@ -9961,23 +10002,29 @@ p {
|
|
|
9961
10002
|
.lm_filter_basic_item.active.lm_filter_complex_item .filter_item_label {
|
|
9962
10003
|
color: var(--primary-color);
|
|
9963
10004
|
}
|
|
10005
|
+
.lm_filter_basic_item.active:hover .icon_down {
|
|
10006
|
+
display: none;
|
|
10007
|
+
}
|
|
10008
|
+
.lm_filter_basic_item.active:hover .icon_clear {
|
|
10009
|
+
display: inline-block;
|
|
10010
|
+
}
|
|
9964
10011
|
.ant-dropdown.filter_dropdown_container_cascader > div {
|
|
9965
10012
|
transform: translateY(-4px);
|
|
9966
10013
|
}
|
|
9967
10014
|
.ant-dropdown.filter_dropdown_container_date .ant-picker {
|
|
9968
|
-
visibility: hidden;
|
|
9969
10015
|
transform: translateY(-36px);
|
|
10016
|
+
visibility: hidden;
|
|
9970
10017
|
}
|
|
9971
10018
|
.filter_dropdown {
|
|
9972
10019
|
display: flex;
|
|
9973
10020
|
flex-flow: column;
|
|
9974
|
-
box-shadow: 0 2px 6px var(--box-shadow-color);
|
|
9975
10021
|
background-color: #fff;
|
|
10022
|
+
box-shadow: 0 2px 6px var(--box-shadow-color);
|
|
9976
10023
|
}
|
|
9977
10024
|
.filter_dropdown .filter_header {
|
|
9978
10025
|
min-height: 40px;
|
|
9979
|
-
border-bottom: 1px solid #eee;
|
|
9980
10026
|
padding: 8px;
|
|
10027
|
+
border-bottom: 1px solid #eee;
|
|
9981
10028
|
}
|
|
9982
10029
|
.filter_dropdown .filter_header .filter_header_operate {
|
|
9983
10030
|
display: flex;
|
|
@@ -9989,13 +10036,13 @@ p {
|
|
|
9989
10036
|
align-items: center;
|
|
9990
10037
|
}
|
|
9991
10038
|
.filter_dropdown .filter_header .filter_header_operate .filter_reset {
|
|
9992
|
-
font-size: 12px;
|
|
9993
10039
|
color: var(--primary-color);
|
|
10040
|
+
font-size: 12px;
|
|
9994
10041
|
cursor: pointer;
|
|
9995
10042
|
}
|
|
9996
10043
|
.filter_dropdown .filter_header .filter_header_operate .filter_tip {
|
|
9997
|
-
font-size: 12px;
|
|
9998
10044
|
color: var(--text-color);
|
|
10045
|
+
font-size: 12px;
|
|
9999
10046
|
}
|
|
10000
10047
|
.filter_dropdown .filter_header .ant-input-group {
|
|
10001
10048
|
line-height: 1;
|
|
@@ -10016,32 +10063,40 @@ p {
|
|
|
10016
10063
|
}
|
|
10017
10064
|
.filter_dropdown .filter_body .filter_item {
|
|
10018
10065
|
display: flex;
|
|
10066
|
+
gap: 8px;
|
|
10019
10067
|
align-items: center;
|
|
10020
10068
|
justify-content: space-between;
|
|
10021
|
-
font-size: 12px;
|
|
10022
|
-
height: 32px;
|
|
10023
10069
|
min-width: 120px;
|
|
10070
|
+
height: 32px;
|
|
10024
10071
|
padding: 0 8px;
|
|
10025
|
-
|
|
10072
|
+
font-size: 12px;
|
|
10026
10073
|
white-space: nowrap;
|
|
10027
10074
|
cursor: pointer;
|
|
10028
|
-
|
|
10075
|
+
transition: 0.3s;
|
|
10029
10076
|
}
|
|
10030
10077
|
.filter_dropdown .filter_body .filter_item.last_item {
|
|
10031
10078
|
border-top: 1px solid var(--line-color);
|
|
10032
10079
|
}
|
|
10033
10080
|
.filter_dropdown .filter_body .filter_item .filter_item_content {
|
|
10034
10081
|
flex: auto;
|
|
10082
|
+
overflow: hidden;
|
|
10083
|
+
white-space: nowrap;
|
|
10084
|
+
text-overflow: ellipsis;
|
|
10085
|
+
}
|
|
10086
|
+
.filter_dropdown .filter_body .filter_item .filter_item_content.lm-checkbox > span:last-child {
|
|
10087
|
+
max-width: none;
|
|
10088
|
+
overflow: hidden;
|
|
10089
|
+
text-overflow: ellipsis;
|
|
10035
10090
|
}
|
|
10036
10091
|
.filter_dropdown .filter_body .filter_item .filter_item_operate {
|
|
10037
10092
|
display: inline-flex;
|
|
10038
|
-
align-items: center;
|
|
10039
10093
|
gap: 4px;
|
|
10094
|
+
align-items: center;
|
|
10040
10095
|
}
|
|
10041
10096
|
.filter_dropdown .filter_body .filter_item .filter_item_operate .icon_hover {
|
|
10042
10097
|
font-size: 16px;
|
|
10043
|
-
transition: 0.3s;
|
|
10044
10098
|
opacity: 0;
|
|
10099
|
+
transition: 0.3s;
|
|
10045
10100
|
}
|
|
10046
10101
|
.filter_dropdown .filter_body .filter_item .filter_item_operate .icon_hover:hover {
|
|
10047
10102
|
color: var(--primary-color);
|
|
@@ -10063,15 +10118,15 @@ p {
|
|
|
10063
10118
|
display: flex;
|
|
10064
10119
|
align-items: center;
|
|
10065
10120
|
justify-content: space-between;
|
|
10066
|
-
font-size: 12px;
|
|
10067
10121
|
min-height: 32px;
|
|
10068
10122
|
padding: 6px 8px;
|
|
10069
|
-
|
|
10123
|
+
font-size: 12px;
|
|
10070
10124
|
letter-spacing: 1px;
|
|
10125
|
+
border-top: 1px solid #eee;
|
|
10071
10126
|
}
|
|
10072
10127
|
.filter_dropdown .filter_footer button {
|
|
10073
|
-
font-size: 12px;
|
|
10074
10128
|
padding: 0 8px;
|
|
10129
|
+
font-size: 12px;
|
|
10075
10130
|
}
|
|
10076
10131
|
.filter_dropdown .filter_footer .footer_save {
|
|
10077
10132
|
color: var(--primary-color);
|
|
@@ -10089,14 +10144,14 @@ p {
|
|
|
10089
10144
|
.filter_dropdown .filter_empty {
|
|
10090
10145
|
display: flex;
|
|
10091
10146
|
flex-flow: column;
|
|
10147
|
+
gap: 4px;
|
|
10092
10148
|
align-items: center;
|
|
10093
10149
|
justify-content: center;
|
|
10094
|
-
font-size: 12px;
|
|
10095
10150
|
min-height: 40px;
|
|
10096
|
-
color: #666;
|
|
10097
|
-
padding: 16px 8px;
|
|
10098
10151
|
margin: auto;
|
|
10099
|
-
|
|
10152
|
+
padding: 16px 8px;
|
|
10153
|
+
color: #666;
|
|
10154
|
+
font-size: 12px;
|
|
10100
10155
|
}
|
|
10101
10156
|
.filter_dropdown .filter_empty .filter_empty_text {
|
|
10102
10157
|
display: inline-flex;
|
|
@@ -10107,8 +10162,8 @@ p {
|
|
|
10107
10162
|
}
|
|
10108
10163
|
.filter_dropdown .ant-checkbox-wrapper {
|
|
10109
10164
|
flex: 1;
|
|
10110
|
-
font-size: 12px;
|
|
10111
10165
|
align-items: center;
|
|
10166
|
+
font-size: 12px;
|
|
10112
10167
|
}
|
|
10113
10168
|
.filter_dropdown .ant-checkbox-wrapper .ant-checkbox {
|
|
10114
10169
|
top: initial;
|
|
@@ -10144,18 +10199,18 @@ p {
|
|
|
10144
10199
|
padding: 0 0 8px;
|
|
10145
10200
|
}
|
|
10146
10201
|
.ant-drawer.lm_filter_drawer .filter_drawer_group_add .ant-btn {
|
|
10147
|
-
font-size: 12px;
|
|
10148
10202
|
max-width: initial;
|
|
10203
|
+
font-size: 12px;
|
|
10149
10204
|
}
|
|
10150
10205
|
.ant-drawer.lm_filter_drawer .filter_drawer_group_list .filter_drawer_group_item {
|
|
10151
10206
|
margin-bottom: var(--gap);
|
|
10152
10207
|
}
|
|
10153
10208
|
.ant-drawer.lm_filter_drawer .filter_drawer_group_list .filter_drawer_group_item .item_box {
|
|
10209
|
+
padding: calc(var(--gap) * 2);
|
|
10154
10210
|
line-height: 1;
|
|
10211
|
+
background: var(--background-color);
|
|
10155
10212
|
border: 1px solid transparent;
|
|
10156
10213
|
border-radius: 2px;
|
|
10157
|
-
background: var(--background-color);
|
|
10158
|
-
padding: calc(var(--gap) * 2);
|
|
10159
10214
|
cursor: pointer;
|
|
10160
10215
|
transition: 0.3s;
|
|
10161
10216
|
}
|
|
@@ -10165,12 +10220,12 @@ p {
|
|
|
10165
10220
|
justify-content: space-between;
|
|
10166
10221
|
}
|
|
10167
10222
|
.ant-drawer.lm_filter_drawer .filter_drawer_group_list .filter_drawer_group_item .item_box .item_header .item_header_title {
|
|
10168
|
-
font-size: 12px;
|
|
10169
10223
|
font-weight: 500;
|
|
10224
|
+
font-size: 12px;
|
|
10170
10225
|
}
|
|
10171
10226
|
.ant-drawer.lm_filter_drawer .filter_drawer_group_list .filter_drawer_group_item .item_box .item_header .item_header_icon {
|
|
10227
|
+
color: #8c8c8c;
|
|
10172
10228
|
font-size: 16px;
|
|
10173
|
-
color: #8C8C8C;
|
|
10174
10229
|
transition: 0.3s;
|
|
10175
10230
|
}
|
|
10176
10231
|
.ant-drawer.lm_filter_drawer .filter_drawer_group_list .filter_drawer_group_item .item_box .item_header .item_header_icon.icon_plus {
|
|
@@ -10186,9 +10241,9 @@ p {
|
|
|
10186
10241
|
padding-top: 12px;
|
|
10187
10242
|
}
|
|
10188
10243
|
.ant-drawer.lm_filter_drawer .filter_drawer_group_list .filter_drawer_group_item .item_box .item_tags .ant-tag {
|
|
10244
|
+
margin: 0;
|
|
10189
10245
|
color: var(--font-color);
|
|
10190
10246
|
background-color: var(--background-color);
|
|
10191
|
-
margin: 0;
|
|
10192
10247
|
}
|
|
10193
10248
|
.ant-drawer.lm_filter_drawer .filter_drawer_group_list .filter_drawer_group_item .item_box .item_tags .ant-tag.add_tags {
|
|
10194
10249
|
background: transparent;
|
|
@@ -10208,8 +10263,8 @@ p {
|
|
|
10208
10263
|
margin-bottom: 24px;
|
|
10209
10264
|
}
|
|
10210
10265
|
.ant-drawer.lm_filter_drawer .complex_filter_body .list_group .list_group_title {
|
|
10211
|
-
font-size: 14px;
|
|
10212
10266
|
font-weight: 500;
|
|
10267
|
+
font-size: 14px;
|
|
10213
10268
|
line-height: 1.25;
|
|
10214
10269
|
}
|
|
10215
10270
|
.ant-drawer.lm_filter_drawer .complex_filter_body .list_group .list_group_search {
|
|
@@ -10219,14 +10274,14 @@ p {
|
|
|
10219
10274
|
display: inline-flex;
|
|
10220
10275
|
align-items: center;
|
|
10221
10276
|
justify-content: center;
|
|
10222
|
-
font-size: 12px;
|
|
10223
10277
|
height: 24px;
|
|
10224
|
-
|
|
10278
|
+
padding: 0 8px;
|
|
10225
10279
|
color: var(--font-color);
|
|
10280
|
+
font-size: 12px;
|
|
10226
10281
|
background-color: var(--stripe-color);
|
|
10227
|
-
|
|
10228
|
-
transition: 0.3s;
|
|
10282
|
+
border-radius: 2px;
|
|
10229
10283
|
cursor: pointer;
|
|
10284
|
+
transition: 0.3s;
|
|
10230
10285
|
}
|
|
10231
10286
|
.ant-drawer.lm_det_drawer .checkbox_tag:hover,
|
|
10232
10287
|
.ant-drawer.lm_det_drawer .checkbox_tag.active {
|
|
@@ -10252,25 +10307,25 @@ p {
|
|
|
10252
10307
|
top: 0;
|
|
10253
10308
|
}
|
|
10254
10309
|
.ant-drawer.lm_det_drawer .ant-select {
|
|
10255
|
-
font-size: 12px;
|
|
10256
10310
|
width: 100%;
|
|
10311
|
+
font-size: 12px;
|
|
10257
10312
|
}
|
|
10258
10313
|
.ant-drawer.lm_det_drawer .custom_form {
|
|
10259
10314
|
display: flex;
|
|
10260
10315
|
flex-flow: column;
|
|
10261
|
-
height: 100%;
|
|
10262
10316
|
gap: 24px;
|
|
10317
|
+
height: 100%;
|
|
10263
10318
|
}
|
|
10264
10319
|
.ant-drawer.lm_det_drawer .custom_form .custom_label {
|
|
10265
|
-
font-size: 14px;
|
|
10266
|
-
font-weight: 500;
|
|
10267
10320
|
margin-bottom: 16px;
|
|
10268
10321
|
color: var(--font-color);
|
|
10322
|
+
font-weight: 500;
|
|
10323
|
+
font-size: 14px;
|
|
10269
10324
|
}
|
|
10270
10325
|
.ant-drawer.lm_det_drawer .custom_form .custom_full {
|
|
10271
10326
|
display: flex;
|
|
10272
|
-
flex-flow: column;
|
|
10273
10327
|
flex: 1;
|
|
10328
|
+
flex-flow: column;
|
|
10274
10329
|
}
|
|
10275
10330
|
.lm_filter_dropdown_picker {
|
|
10276
10331
|
padding: 0 !important;
|
|
@@ -10279,17 +10334,17 @@ p {
|
|
|
10279
10334
|
display: flex;
|
|
10280
10335
|
}
|
|
10281
10336
|
.lm_filter_dropdown_picker .filter_picker_box .filter_picker_aside {
|
|
10337
|
+
padding: 6px 0;
|
|
10282
10338
|
font-size: 12px;
|
|
10283
10339
|
border-right: 1px solid var(--background-color-hover);
|
|
10284
|
-
padding: 6px 0;
|
|
10285
10340
|
}
|
|
10286
10341
|
.lm_filter_dropdown_picker .filter_picker_box .filter_picker_aside .filter_picker_aside_item {
|
|
10287
10342
|
display: flex;
|
|
10288
10343
|
align-items: center;
|
|
10289
10344
|
height: 32px;
|
|
10290
10345
|
padding: 0 8px;
|
|
10291
|
-
transition: 0.3s;
|
|
10292
10346
|
cursor: pointer;
|
|
10347
|
+
transition: 0.3s;
|
|
10293
10348
|
}
|
|
10294
10349
|
.lm_filter_dropdown_picker .filter_picker_box .filter_picker_aside .filter_picker_aside_item:hover,
|
|
10295
10350
|
.lm_filter_dropdown_picker .filter_picker_box .filter_picker_aside .filter_picker_aside_item.active {
|
|
@@ -10300,13 +10355,13 @@ p {
|
|
|
10300
10355
|
align-items: center;
|
|
10301
10356
|
justify-content: space-between;
|
|
10302
10357
|
min-height: 40px;
|
|
10303
|
-
line-height: 1;
|
|
10304
10358
|
padding: 0 16px;
|
|
10359
|
+
line-height: 1;
|
|
10305
10360
|
border-bottom: 1px solid var(--background-color-hover);
|
|
10306
10361
|
}
|
|
10307
10362
|
.lm_filter_dropdown_picker .filter_picker_box .filter_picker_main .filter_picker_header .ant-radio-button-wrapper {
|
|
10308
|
-
font-size: 12px;
|
|
10309
10363
|
color: var(--font2-color);
|
|
10364
|
+
font-size: 12px;
|
|
10310
10365
|
}
|
|
10311
10366
|
.lm_filter_dropdown_picker .filter_picker_box .filter_picker_main .filter_picker_header .ant-radio-button-wrapper:hover,
|
|
10312
10367
|
.lm_filter_dropdown_picker .filter_picker_box .filter_picker_main .filter_picker_header .ant-radio-button-wrapper.ant-radio-button-wrapper-checked {
|
|
@@ -10394,6 +10449,7 @@ p {
|
|
|
10394
10449
|
}
|
|
10395
10450
|
.lm_select.ant-select {
|
|
10396
10451
|
font-size: 12px;
|
|
10452
|
+
width: 100%;
|
|
10397
10453
|
}
|
|
10398
10454
|
.lm_select .ant-select-selection-overflow-item-rest .ant-select-selection-item {
|
|
10399
10455
|
color: var(--primary-color);
|
|
@@ -11311,6 +11367,45 @@ p {
|
|
|
11311
11367
|
#lm_protable_warp .lm_protable .ant-table-empty table .ant-table-cell {
|
|
11312
11368
|
border-bottom: 0;
|
|
11313
11369
|
}
|
|
11370
|
+
#lm_protable_warp .lm_protable .ant-table-summary {
|
|
11371
|
+
height: 48px;
|
|
11372
|
+
}
|
|
11373
|
+
#lm_protable_warp .lm_protable .ant-table-summary > table {
|
|
11374
|
+
height: 100%;
|
|
11375
|
+
}
|
|
11376
|
+
#lm_protable_warp .lm_protable .ant-table-summary td {
|
|
11377
|
+
padding: 0 8px;
|
|
11378
|
+
text-align: right;
|
|
11379
|
+
background-color: var(--table-background-color);
|
|
11380
|
+
}
|
|
11381
|
+
#lm_protable_warp .lm_protable .ant-table-summary td:first-of-type {
|
|
11382
|
+
padding: 0 0 0 8px;
|
|
11383
|
+
text-align: left;
|
|
11384
|
+
}
|
|
11385
|
+
#lm_protable_warp .lm_protable .ant-table-summary td.number {
|
|
11386
|
+
border-right: 1px solid #eee;
|
|
11387
|
+
border-left: 1px solid #eee;
|
|
11388
|
+
}
|
|
11389
|
+
#lm_protable_warp .lm_protable .ant-table-summary td.money {
|
|
11390
|
+
color: var(--error-color);
|
|
11391
|
+
border-right: 1px solid #eee;
|
|
11392
|
+
border-left: 1px solid #eee;
|
|
11393
|
+
}
|
|
11394
|
+
#lm_protable_warp .lm_protable .ant-table-summary td.money-color {
|
|
11395
|
+
color: var(--error-color);
|
|
11396
|
+
}
|
|
11397
|
+
#lm_protable_warp .lm_protable .ant-table-summary td > div {
|
|
11398
|
+
overflow: hidden;
|
|
11399
|
+
white-space: nowrap;
|
|
11400
|
+
text-overflow: ellipsis;
|
|
11401
|
+
}
|
|
11402
|
+
#lm_protable_warp .lm_protable .ant-table-summary td > div:last-of-type {
|
|
11403
|
+
font-weight: bold;
|
|
11404
|
+
}
|
|
11405
|
+
#lm_protable_warp .lm_protable .ant-table-summary .total_title {
|
|
11406
|
+
position: relative;
|
|
11407
|
+
white-space: nowrap;
|
|
11408
|
+
}
|
|
11314
11409
|
#lm_protable_warp .ant-table-expand-icon-col {
|
|
11315
11410
|
width: 32px;
|
|
11316
11411
|
}
|
|
@@ -11831,6 +11926,7 @@ button.ant-table-row-expand-icon::after {
|
|
|
11831
11926
|
gap: 8px;
|
|
11832
11927
|
}
|
|
11833
11928
|
.lm_upload_wrapper .lm_upload_core {
|
|
11929
|
+
position: relative;
|
|
11834
11930
|
display: inline-flex;
|
|
11835
11931
|
vertical-align: middle;
|
|
11836
11932
|
}
|
|
@@ -11845,6 +11941,12 @@ button.ant-table-row-expand-icon::after {
|
|
|
11845
11941
|
cursor: pointer;
|
|
11846
11942
|
transition: all 0.3s;
|
|
11847
11943
|
}
|
|
11944
|
+
.lm_upload_wrapper .lm_upload_core .lm_upload_core_picture::after {
|
|
11945
|
+
position: absolute;
|
|
11946
|
+
background-color: var(--disabled-bg-color);
|
|
11947
|
+
cursor: not-allowed;
|
|
11948
|
+
inset: 0;
|
|
11949
|
+
}
|
|
11848
11950
|
.lm_upload_wrapper .lm_upload_core .lm_upload_core_picture:hover {
|
|
11849
11951
|
border-color: var(--primary-color);
|
|
11850
11952
|
}
|
|
@@ -11860,6 +11962,16 @@ button.ant-table-row-expand-icon::after {
|
|
|
11860
11962
|
margin-top: var(--gap);
|
|
11861
11963
|
color: var(--color-45);
|
|
11862
11964
|
}
|
|
11965
|
+
.lm_upload_wrapper .lm_upload_core.disabled .lm_upload_core_picture {
|
|
11966
|
+
border-color: var(--disabled-border-color);
|
|
11967
|
+
}
|
|
11968
|
+
.lm_upload_wrapper .lm_upload_core.disabled .lm_upload_core_picture::after {
|
|
11969
|
+
content: '';
|
|
11970
|
+
}
|
|
11971
|
+
.lm_upload_wrapper .lm_upload_core.disabled .lm_upload_core_picture .lm_upload_core_picture_action .action_plus,
|
|
11972
|
+
.lm_upload_wrapper .lm_upload_core.disabled .lm_upload_core_picture .lm_upload_core_picture_action .tip {
|
|
11973
|
+
color: var(--disabled-font-color);
|
|
11974
|
+
}
|
|
11863
11975
|
.lm_upload_wrapper .lm_upload_progress {
|
|
11864
11976
|
width: 100%;
|
|
11865
11977
|
height: 2px;
|
|
@@ -12356,6 +12468,7 @@ button.ant-table-row-expand-icon::after {
|
|
|
12356
12468
|
}
|
|
12357
12469
|
.lm_select.ant-select {
|
|
12358
12470
|
font-size: 12px;
|
|
12471
|
+
width: 100%;
|
|
12359
12472
|
}
|
|
12360
12473
|
.lm_select.ant-select-focused:not(.ant-select-disabled).ant-select:not(.ant-select-customize-input) .ant-select-selector {
|
|
12361
12474
|
box-shadow: none;
|
|
@@ -12369,6 +12482,33 @@ button.ant-table-row-expand-icon::after {
|
|
|
12369
12482
|
.lm_select_dropdown .ant-select-item-option-disabled {
|
|
12370
12483
|
color: var(--disabled-font-color);
|
|
12371
12484
|
}
|
|
12485
|
+
.lm_select_has_icon {
|
|
12486
|
+
width: 100%;
|
|
12487
|
+
display: flex;
|
|
12488
|
+
flex-direction: row;
|
|
12489
|
+
align-items: center;
|
|
12490
|
+
justify-content: flex-start;
|
|
12491
|
+
position: relative;
|
|
12492
|
+
}
|
|
12493
|
+
.lm_select_has_icon .ant-select {
|
|
12494
|
+
border-top-right-radius: 0;
|
|
12495
|
+
border-bottom-right-radius: 0;
|
|
12496
|
+
z-index: 3;
|
|
12497
|
+
}
|
|
12498
|
+
.lm_select_has_icon .ant-select .ant-select-selector {
|
|
12499
|
+
border-top-right-radius: 0 !important;
|
|
12500
|
+
border-bottom-right-radius: 0 !important;
|
|
12501
|
+
}
|
|
12502
|
+
.lm_select_has_icon .lm_select_icon_button {
|
|
12503
|
+
margin-left: -1px;
|
|
12504
|
+
border-top-left-radius: 0;
|
|
12505
|
+
border-bottom-left-radius: 0;
|
|
12506
|
+
z-index: 2;
|
|
12507
|
+
}
|
|
12508
|
+
.lm_select_has_icon .lm_select_icon_button:hover,
|
|
12509
|
+
.lm_select_has_icon .lm_select_icon_button:focus {
|
|
12510
|
+
z-index: 5;
|
|
12511
|
+
}
|
|
12372
12512
|
.ant-switch.lm-switch {
|
|
12373
12513
|
width: 48px;
|
|
12374
12514
|
height: 24px;
|
|
@@ -12545,6 +12685,9 @@ button.ant-table-row-expand-icon::after {
|
|
|
12545
12685
|
.lm_tree .ant-tree-node-selected > .ant-tree-title {
|
|
12546
12686
|
color: var(--primary-color);
|
|
12547
12687
|
}
|
|
12688
|
+
.lm_tree_select .ant-select-selection-placeholder {
|
|
12689
|
+
font-size: 12px;
|
|
12690
|
+
}
|
|
12548
12691
|
.ant-upload-select-picture-card div {
|
|
12549
12692
|
margin-top: 8px;
|
|
12550
12693
|
}
|