linkmore-design 1.1.13-alpha.1 → 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 +2645 -1500
- 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 +275 -234
- 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 +38 -12
- 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 +271 -230
- 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 +37 -11
- 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
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
.lm_filter_wrapper .lm_filter_container .lm_filter {
|
|
2
2
|
display: flex;
|
|
3
3
|
flex-wrap: wrap;
|
|
4
|
-
align-items: center;
|
|
5
4
|
gap: 8px;
|
|
5
|
+
align-items: center;
|
|
6
6
|
font-size: 12px;
|
|
7
7
|
}
|
|
8
8
|
.lm_filter_wrapper .lm_filter_container .lm_filter .lm_filter_custom {
|
|
@@ -13,14 +13,14 @@
|
|
|
13
13
|
display: inline-flex;
|
|
14
14
|
align-items: center;
|
|
15
15
|
justify-content: space-between;
|
|
16
|
-
height: 32px;
|
|
17
|
-
line-height: 1;
|
|
18
16
|
min-width: 100px;
|
|
19
17
|
max-width: 180px;
|
|
18
|
+
height: 32px;
|
|
19
|
+
padding: 0 8px;
|
|
20
|
+
color: var(--font2-color);
|
|
21
|
+
line-height: 1;
|
|
20
22
|
border: 1px solid var(--color-15);
|
|
21
23
|
border-radius: 2px;
|
|
22
|
-
color: var(--font2-color);
|
|
23
|
-
padding: 0 8px;
|
|
24
24
|
cursor: pointer;
|
|
25
25
|
transition: 0.3s;
|
|
26
26
|
}
|
|
@@ -28,13 +28,13 @@
|
|
|
28
28
|
height: 24px;
|
|
29
29
|
}
|
|
30
30
|
.lm_filter_wrapper .lm_filter_container .lm_filter .lm_filter_custom .lm_filter_custom_select .lm_filter_custom_select_label span {
|
|
31
|
-
text-overflow: ellipsis;
|
|
32
|
-
white-space: nowrap;
|
|
33
31
|
overflow: hidden;
|
|
32
|
+
white-space: nowrap;
|
|
33
|
+
text-overflow: ellipsis;
|
|
34
34
|
}
|
|
35
35
|
.lm_filter_wrapper .lm_filter_container .lm_filter .lm_filter_custom .lm_filter_custom_select .lm_filter_custom_select_icon {
|
|
36
|
-
font-size: 14px;
|
|
37
36
|
color: var(--text-color);
|
|
37
|
+
font-size: 14px;
|
|
38
38
|
transition: 0.3s;
|
|
39
39
|
}
|
|
40
40
|
.lm_filter_wrapper .lm_filter_container .lm_filter .lm_filter_custom .lm_filter_custom_select:hover {
|
|
@@ -63,16 +63,17 @@
|
|
|
63
63
|
height: 24px;
|
|
64
64
|
}
|
|
65
65
|
.lm_filter_basic_item {
|
|
66
|
-
font-size: 12px;
|
|
67
66
|
display: inline-flex;
|
|
67
|
+
gap: 4px;
|
|
68
68
|
align-items: center;
|
|
69
|
+
height: 32px;
|
|
70
|
+
padding: 0 8px;
|
|
71
|
+
font-size: 12px;
|
|
69
72
|
line-height: 1;
|
|
73
|
+
vertical-align: middle;
|
|
70
74
|
border-radius: 2px;
|
|
71
|
-
padding: 0 8px;
|
|
72
|
-
transition: 0.3s;
|
|
73
75
|
cursor: pointer;
|
|
74
|
-
|
|
75
|
-
gap: 4px;
|
|
76
|
+
transition: 0.3s;
|
|
76
77
|
}
|
|
77
78
|
.lm_filter_basic_item.small {
|
|
78
79
|
height: 24px;
|
|
@@ -82,21 +83,34 @@
|
|
|
82
83
|
.lm_filter_basic_item.active {
|
|
83
84
|
background-color: var(--color-4);
|
|
84
85
|
}
|
|
86
|
+
.lm_filter_basic_item .filter_item_label {
|
|
87
|
+
flex: 0 0 auto;
|
|
88
|
+
}
|
|
85
89
|
.lm_filter_basic_item .filter_item_value {
|
|
86
90
|
display: inline-flex;
|
|
87
|
-
align-items: center;
|
|
88
91
|
gap: 4px;
|
|
92
|
+
align-items: center;
|
|
93
|
+
max-width: 552px;
|
|
94
|
+
overflow: hidden;
|
|
89
95
|
color: var(--text-color);
|
|
90
96
|
transition: 0.3s;
|
|
91
97
|
}
|
|
98
|
+
.lm_filter_basic_item .filter_item_value span {
|
|
99
|
+
overflow: hidden;
|
|
100
|
+
white-space: nowrap;
|
|
101
|
+
text-overflow: ellipsis;
|
|
102
|
+
}
|
|
92
103
|
.lm_filter_basic_item .filter_item_icon {
|
|
93
|
-
font-size: 14px;
|
|
94
104
|
color: var(--text-color);
|
|
105
|
+
font-size: 14px;
|
|
95
106
|
transition: 0.3s;
|
|
96
107
|
}
|
|
97
108
|
.lm_filter_basic_item .filter_item_icon.addon_before {
|
|
98
109
|
color: var(--font-color);
|
|
99
110
|
}
|
|
111
|
+
.lm_filter_basic_item .filter_item_icon .icon_clear {
|
|
112
|
+
display: none;
|
|
113
|
+
}
|
|
100
114
|
.lm_filter_basic_item.expand .filter_item_icon.addon_after {
|
|
101
115
|
transform: rotateX(180deg);
|
|
102
116
|
}
|
|
@@ -110,23 +124,29 @@
|
|
|
110
124
|
.lm_filter_basic_item.active.lm_filter_complex_item .filter_item_label {
|
|
111
125
|
color: var(--primary-color);
|
|
112
126
|
}
|
|
127
|
+
.lm_filter_basic_item.active:hover .icon_down {
|
|
128
|
+
display: none;
|
|
129
|
+
}
|
|
130
|
+
.lm_filter_basic_item.active:hover .icon_clear {
|
|
131
|
+
display: inline-block;
|
|
132
|
+
}
|
|
113
133
|
.ant-dropdown.filter_dropdown_container_cascader > div {
|
|
114
134
|
transform: translateY(-4px);
|
|
115
135
|
}
|
|
116
136
|
.ant-dropdown.filter_dropdown_container_date .ant-picker {
|
|
117
|
-
visibility: hidden;
|
|
118
137
|
transform: translateY(-36px);
|
|
138
|
+
visibility: hidden;
|
|
119
139
|
}
|
|
120
140
|
.filter_dropdown {
|
|
121
141
|
display: flex;
|
|
122
142
|
flex-flow: column;
|
|
123
|
-
box-shadow: 0 2px 6px var(--box-shadow-color);
|
|
124
143
|
background-color: #fff;
|
|
144
|
+
box-shadow: 0 2px 6px var(--box-shadow-color);
|
|
125
145
|
}
|
|
126
146
|
.filter_dropdown .filter_header {
|
|
127
147
|
min-height: 40px;
|
|
128
|
-
border-bottom: 1px solid #eee;
|
|
129
148
|
padding: 8px;
|
|
149
|
+
border-bottom: 1px solid #eee;
|
|
130
150
|
}
|
|
131
151
|
.filter_dropdown .filter_header .filter_header_operate {
|
|
132
152
|
display: flex;
|
|
@@ -138,13 +158,13 @@
|
|
|
138
158
|
align-items: center;
|
|
139
159
|
}
|
|
140
160
|
.filter_dropdown .filter_header .filter_header_operate .filter_reset {
|
|
141
|
-
font-size: 12px;
|
|
142
161
|
color: var(--primary-color);
|
|
162
|
+
font-size: 12px;
|
|
143
163
|
cursor: pointer;
|
|
144
164
|
}
|
|
145
165
|
.filter_dropdown .filter_header .filter_header_operate .filter_tip {
|
|
146
|
-
font-size: 12px;
|
|
147
166
|
color: var(--text-color);
|
|
167
|
+
font-size: 12px;
|
|
148
168
|
}
|
|
149
169
|
.filter_dropdown .filter_header .ant-input-group {
|
|
150
170
|
line-height: 1;
|
|
@@ -165,32 +185,40 @@
|
|
|
165
185
|
}
|
|
166
186
|
.filter_dropdown .filter_body .filter_item {
|
|
167
187
|
display: flex;
|
|
188
|
+
gap: 8px;
|
|
168
189
|
align-items: center;
|
|
169
190
|
justify-content: space-between;
|
|
170
|
-
font-size: 12px;
|
|
171
|
-
height: 32px;
|
|
172
191
|
min-width: 120px;
|
|
192
|
+
height: 32px;
|
|
173
193
|
padding: 0 8px;
|
|
174
|
-
|
|
194
|
+
font-size: 12px;
|
|
175
195
|
white-space: nowrap;
|
|
176
196
|
cursor: pointer;
|
|
177
|
-
|
|
197
|
+
transition: 0.3s;
|
|
178
198
|
}
|
|
179
199
|
.filter_dropdown .filter_body .filter_item.last_item {
|
|
180
200
|
border-top: 1px solid var(--line-color);
|
|
181
201
|
}
|
|
182
202
|
.filter_dropdown .filter_body .filter_item .filter_item_content {
|
|
183
203
|
flex: auto;
|
|
204
|
+
overflow: hidden;
|
|
205
|
+
white-space: nowrap;
|
|
206
|
+
text-overflow: ellipsis;
|
|
207
|
+
}
|
|
208
|
+
.filter_dropdown .filter_body .filter_item .filter_item_content.lm-checkbox > span:last-child {
|
|
209
|
+
max-width: none;
|
|
210
|
+
overflow: hidden;
|
|
211
|
+
text-overflow: ellipsis;
|
|
184
212
|
}
|
|
185
213
|
.filter_dropdown .filter_body .filter_item .filter_item_operate {
|
|
186
214
|
display: inline-flex;
|
|
187
|
-
align-items: center;
|
|
188
215
|
gap: 4px;
|
|
216
|
+
align-items: center;
|
|
189
217
|
}
|
|
190
218
|
.filter_dropdown .filter_body .filter_item .filter_item_operate .icon_hover {
|
|
191
219
|
font-size: 16px;
|
|
192
|
-
transition: 0.3s;
|
|
193
220
|
opacity: 0;
|
|
221
|
+
transition: 0.3s;
|
|
194
222
|
}
|
|
195
223
|
.filter_dropdown .filter_body .filter_item .filter_item_operate .icon_hover:hover {
|
|
196
224
|
color: var(--primary-color);
|
|
@@ -212,15 +240,15 @@
|
|
|
212
240
|
display: flex;
|
|
213
241
|
align-items: center;
|
|
214
242
|
justify-content: space-between;
|
|
215
|
-
font-size: 12px;
|
|
216
243
|
min-height: 32px;
|
|
217
244
|
padding: 6px 8px;
|
|
218
|
-
|
|
245
|
+
font-size: 12px;
|
|
219
246
|
letter-spacing: 1px;
|
|
247
|
+
border-top: 1px solid #eee;
|
|
220
248
|
}
|
|
221
249
|
.filter_dropdown .filter_footer button {
|
|
222
|
-
font-size: 12px;
|
|
223
250
|
padding: 0 8px;
|
|
251
|
+
font-size: 12px;
|
|
224
252
|
}
|
|
225
253
|
.filter_dropdown .filter_footer .footer_save {
|
|
226
254
|
color: var(--primary-color);
|
|
@@ -238,14 +266,14 @@
|
|
|
238
266
|
.filter_dropdown .filter_empty {
|
|
239
267
|
display: flex;
|
|
240
268
|
flex-flow: column;
|
|
269
|
+
gap: 4px;
|
|
241
270
|
align-items: center;
|
|
242
271
|
justify-content: center;
|
|
243
|
-
font-size: 12px;
|
|
244
272
|
min-height: 40px;
|
|
245
|
-
color: #666;
|
|
246
|
-
padding: 16px 8px;
|
|
247
273
|
margin: auto;
|
|
248
|
-
|
|
274
|
+
padding: 16px 8px;
|
|
275
|
+
color: #666;
|
|
276
|
+
font-size: 12px;
|
|
249
277
|
}
|
|
250
278
|
.filter_dropdown .filter_empty .filter_empty_text {
|
|
251
279
|
display: inline-flex;
|
|
@@ -256,8 +284,8 @@
|
|
|
256
284
|
}
|
|
257
285
|
.filter_dropdown .ant-checkbox-wrapper {
|
|
258
286
|
flex: 1;
|
|
259
|
-
font-size: 12px;
|
|
260
287
|
align-items: center;
|
|
288
|
+
font-size: 12px;
|
|
261
289
|
}
|
|
262
290
|
.filter_dropdown .ant-checkbox-wrapper .ant-checkbox {
|
|
263
291
|
top: initial;
|
|
@@ -293,18 +321,18 @@
|
|
|
293
321
|
padding: 0 0 8px;
|
|
294
322
|
}
|
|
295
323
|
.ant-drawer.lm_filter_drawer .filter_drawer_group_add .ant-btn {
|
|
296
|
-
font-size: 12px;
|
|
297
324
|
max-width: initial;
|
|
325
|
+
font-size: 12px;
|
|
298
326
|
}
|
|
299
327
|
.ant-drawer.lm_filter_drawer .filter_drawer_group_list .filter_drawer_group_item {
|
|
300
328
|
margin-bottom: var(--gap);
|
|
301
329
|
}
|
|
302
330
|
.ant-drawer.lm_filter_drawer .filter_drawer_group_list .filter_drawer_group_item .item_box {
|
|
331
|
+
padding: calc(var(--gap) * 2);
|
|
303
332
|
line-height: 1;
|
|
333
|
+
background: var(--background-color);
|
|
304
334
|
border: 1px solid transparent;
|
|
305
335
|
border-radius: 2px;
|
|
306
|
-
background: var(--background-color);
|
|
307
|
-
padding: calc(var(--gap) * 2);
|
|
308
336
|
cursor: pointer;
|
|
309
337
|
transition: 0.3s;
|
|
310
338
|
}
|
|
@@ -314,12 +342,12 @@
|
|
|
314
342
|
justify-content: space-between;
|
|
315
343
|
}
|
|
316
344
|
.ant-drawer.lm_filter_drawer .filter_drawer_group_list .filter_drawer_group_item .item_box .item_header .item_header_title {
|
|
317
|
-
font-size: 12px;
|
|
318
345
|
font-weight: 500;
|
|
346
|
+
font-size: 12px;
|
|
319
347
|
}
|
|
320
348
|
.ant-drawer.lm_filter_drawer .filter_drawer_group_list .filter_drawer_group_item .item_box .item_header .item_header_icon {
|
|
349
|
+
color: #8c8c8c;
|
|
321
350
|
font-size: 16px;
|
|
322
|
-
color: #8C8C8C;
|
|
323
351
|
transition: 0.3s;
|
|
324
352
|
}
|
|
325
353
|
.ant-drawer.lm_filter_drawer .filter_drawer_group_list .filter_drawer_group_item .item_box .item_header .item_header_icon.icon_plus {
|
|
@@ -335,9 +363,9 @@
|
|
|
335
363
|
padding-top: 12px;
|
|
336
364
|
}
|
|
337
365
|
.ant-drawer.lm_filter_drawer .filter_drawer_group_list .filter_drawer_group_item .item_box .item_tags .ant-tag {
|
|
366
|
+
margin: 0;
|
|
338
367
|
color: var(--font-color);
|
|
339
368
|
background-color: var(--background-color);
|
|
340
|
-
margin: 0;
|
|
341
369
|
}
|
|
342
370
|
.ant-drawer.lm_filter_drawer .filter_drawer_group_list .filter_drawer_group_item .item_box .item_tags .ant-tag.add_tags {
|
|
343
371
|
background: transparent;
|
|
@@ -357,8 +385,8 @@
|
|
|
357
385
|
margin-bottom: 24px;
|
|
358
386
|
}
|
|
359
387
|
.ant-drawer.lm_filter_drawer .complex_filter_body .list_group .list_group_title {
|
|
360
|
-
font-size: 14px;
|
|
361
388
|
font-weight: 500;
|
|
389
|
+
font-size: 14px;
|
|
362
390
|
line-height: 1.25;
|
|
363
391
|
}
|
|
364
392
|
.ant-drawer.lm_filter_drawer .complex_filter_body .list_group .list_group_search {
|
|
@@ -368,14 +396,14 @@
|
|
|
368
396
|
display: inline-flex;
|
|
369
397
|
align-items: center;
|
|
370
398
|
justify-content: center;
|
|
371
|
-
font-size: 12px;
|
|
372
399
|
height: 24px;
|
|
373
|
-
|
|
400
|
+
padding: 0 8px;
|
|
374
401
|
color: var(--font-color);
|
|
402
|
+
font-size: 12px;
|
|
375
403
|
background-color: var(--stripe-color);
|
|
376
|
-
|
|
377
|
-
transition: 0.3s;
|
|
404
|
+
border-radius: 2px;
|
|
378
405
|
cursor: pointer;
|
|
406
|
+
transition: 0.3s;
|
|
379
407
|
}
|
|
380
408
|
.ant-drawer.lm_det_drawer .checkbox_tag:hover,
|
|
381
409
|
.ant-drawer.lm_det_drawer .checkbox_tag.active {
|
|
@@ -401,25 +429,25 @@
|
|
|
401
429
|
top: 0;
|
|
402
430
|
}
|
|
403
431
|
.ant-drawer.lm_det_drawer .ant-select {
|
|
404
|
-
font-size: 12px;
|
|
405
432
|
width: 100%;
|
|
433
|
+
font-size: 12px;
|
|
406
434
|
}
|
|
407
435
|
.ant-drawer.lm_det_drawer .custom_form {
|
|
408
436
|
display: flex;
|
|
409
437
|
flex-flow: column;
|
|
410
|
-
height: 100%;
|
|
411
438
|
gap: 24px;
|
|
439
|
+
height: 100%;
|
|
412
440
|
}
|
|
413
441
|
.ant-drawer.lm_det_drawer .custom_form .custom_label {
|
|
414
|
-
font-size: 14px;
|
|
415
|
-
font-weight: 500;
|
|
416
442
|
margin-bottom: 16px;
|
|
417
443
|
color: var(--font-color);
|
|
444
|
+
font-weight: 500;
|
|
445
|
+
font-size: 14px;
|
|
418
446
|
}
|
|
419
447
|
.ant-drawer.lm_det_drawer .custom_form .custom_full {
|
|
420
448
|
display: flex;
|
|
421
|
-
flex-flow: column;
|
|
422
449
|
flex: 1;
|
|
450
|
+
flex-flow: column;
|
|
423
451
|
}
|
|
424
452
|
.lm_filter_dropdown_picker {
|
|
425
453
|
padding: 0 !important;
|
|
@@ -428,17 +456,17 @@
|
|
|
428
456
|
display: flex;
|
|
429
457
|
}
|
|
430
458
|
.lm_filter_dropdown_picker .filter_picker_box .filter_picker_aside {
|
|
459
|
+
padding: 6px 0;
|
|
431
460
|
font-size: 12px;
|
|
432
461
|
border-right: 1px solid var(--background-color-hover);
|
|
433
|
-
padding: 6px 0;
|
|
434
462
|
}
|
|
435
463
|
.lm_filter_dropdown_picker .filter_picker_box .filter_picker_aside .filter_picker_aside_item {
|
|
436
464
|
display: flex;
|
|
437
465
|
align-items: center;
|
|
438
466
|
height: 32px;
|
|
439
467
|
padding: 0 8px;
|
|
440
|
-
transition: 0.3s;
|
|
441
468
|
cursor: pointer;
|
|
469
|
+
transition: 0.3s;
|
|
442
470
|
}
|
|
443
471
|
.lm_filter_dropdown_picker .filter_picker_box .filter_picker_aside .filter_picker_aside_item:hover,
|
|
444
472
|
.lm_filter_dropdown_picker .filter_picker_box .filter_picker_aside .filter_picker_aside_item.active {
|
|
@@ -449,13 +477,13 @@
|
|
|
449
477
|
align-items: center;
|
|
450
478
|
justify-content: space-between;
|
|
451
479
|
min-height: 40px;
|
|
452
|
-
line-height: 1;
|
|
453
480
|
padding: 0 16px;
|
|
481
|
+
line-height: 1;
|
|
454
482
|
border-bottom: 1px solid var(--background-color-hover);
|
|
455
483
|
}
|
|
456
484
|
.lm_filter_dropdown_picker .filter_picker_box .filter_picker_main .filter_picker_header .ant-radio-button-wrapper {
|
|
457
|
-
font-size: 12px;
|
|
458
485
|
color: var(--font2-color);
|
|
486
|
+
font-size: 12px;
|
|
459
487
|
}
|
|
460
488
|
.lm_filter_dropdown_picker .filter_picker_box .filter_picker_main .filter_picker_header .ant-radio-button-wrapper:hover,
|
|
461
489
|
.lm_filter_dropdown_picker .filter_picker_box .filter_picker_main .filter_picker_header .ant-radio-button-wrapper.ant-radio-button-wrapper-checked {
|