zmdms-webui 2.9.7 → 2.9.8
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/es/form/form.js +3 -3
- package/dist/es/form/index.css +1 -1
- package/dist/es/form/resetButton.js +3 -2
- package/dist/es/node_modules/@ant-design/icons/es/icons/MoreOutlined.js +18 -0
- package/dist/es/node_modules/@ant-design/icons-svg/es/asn/MoreOutlined.js +5 -0
- package/dist/es/table/index.css +1 -1
- package/dist/es/table/useTableSummaryCollapse.js +3 -2
- package/dist/index.dark.css +1 -1
- package/dist/index.default.css +1 -1
- package/dist/less/components/Form/style/index.less +17 -4
- package/dist/less/components/Table/style/index.less +3 -2
- package/package.json +1 -1
|
@@ -145,20 +145,33 @@
|
|
|
145
145
|
> button.ant-btn {
|
|
146
146
|
margin-left: 10px;
|
|
147
147
|
margin-right: 0;
|
|
148
|
+
width: 70px;
|
|
148
149
|
&:first-child {
|
|
149
150
|
margin-left: 0;
|
|
150
151
|
}
|
|
151
152
|
}
|
|
153
|
+
.zt-btn-dropdown--default {
|
|
154
|
+
width: 70px;
|
|
155
|
+
flex: 1;
|
|
156
|
+
> button {
|
|
157
|
+
padding: 0 5px;
|
|
158
|
+
&:first-child {
|
|
159
|
+
padding-right: 0px;
|
|
160
|
+
padding-left: 15px;
|
|
161
|
+
}
|
|
162
|
+
&.ant-dropdown-trigger {
|
|
163
|
+
padding: 0 2px;
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
}
|
|
152
167
|
}
|
|
153
168
|
.ztxk-form__right--common-right {
|
|
154
169
|
margin-top: 13px;
|
|
155
170
|
&.ztxk-form__right--common-right--new-layout {
|
|
156
171
|
display: flex;
|
|
157
172
|
button {
|
|
158
|
-
padding: 0
|
|
159
|
-
|
|
160
|
-
padding: 0 2px;
|
|
161
|
-
}
|
|
173
|
+
padding: 0 10px;
|
|
174
|
+
width: 70px !important;
|
|
162
175
|
}
|
|
163
176
|
}
|
|
164
177
|
}
|
|
@@ -2,11 +2,10 @@
|
|
|
2
2
|
// 动态列配置文本样式
|
|
3
3
|
.ztxk-table__dynamic-text {
|
|
4
4
|
font-size: 12px;
|
|
5
|
-
color:
|
|
5
|
+
color: #4285f4;
|
|
6
6
|
cursor: pointer;
|
|
7
7
|
}
|
|
8
8
|
// 表格合计折叠样式
|
|
9
|
-
|
|
10
9
|
// 表格合计
|
|
11
10
|
.ztxk-table-summary-collapse {
|
|
12
11
|
height: 20px;
|
|
@@ -15,6 +14,7 @@
|
|
|
15
14
|
justify-content: center;
|
|
16
15
|
position: sticky;
|
|
17
16
|
left: 0;
|
|
17
|
+
display: table-cell;
|
|
18
18
|
// overflow: hidden;
|
|
19
19
|
margin: 0 -17px;
|
|
20
20
|
.ztxk-table-summary-collapse-title {
|
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
align-items: center;
|
|
30
30
|
justify-content: center;
|
|
31
31
|
color: #555555;
|
|
32
|
+
width: 76px;
|
|
32
33
|
> span {
|
|
33
34
|
margin-left: 7px;
|
|
34
35
|
}
|