zmdms-webui 2.7.2 → 2.7.3
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/button/button.js +2 -1
- package/dist/es/button/index.css +1 -1
- package/dist/es/button/interface.d.ts +2 -0
- package/dist/es/config/ZtxkContext.d.ts +4 -0
- package/dist/es/config/ZtxkContext.js +1 -0
- package/dist/es/container/container.d.ts +3 -0
- package/dist/es/container/container.js +3 -2
- package/dist/es/container/index.css +1 -1
- package/dist/es/table/components/TableDynamicHeader.d.ts +14 -0
- package/dist/es/table/components/TableDynamicHeader.js +28 -0
- package/dist/es/table/index.css +1 -1
- package/dist/es/table/interface.d.ts +2 -0
- package/dist/es/table/table.js +7 -0
- package/dist/index.dark.css +1 -1
- package/dist/index.default.css +1 -1
- package/dist/less/components/Button/style/index.less +13 -0
- package/dist/less/components/Container/style/index.less +3 -0
- package/dist/less/components/Table/style/index.less +15 -0
- package/package.json +1 -1
|
@@ -90,6 +90,19 @@ button.ant-btn-default {
|
|
|
90
90
|
}
|
|
91
91
|
}
|
|
92
92
|
|
|
93
|
+
// 20251111 新增白色背景模式
|
|
94
|
+
button.zt-btn-white {
|
|
95
|
+
background-color: @bg-white;
|
|
96
|
+
color: @weight-3;
|
|
97
|
+
border-color: @weight-3;
|
|
98
|
+
&:focus,
|
|
99
|
+
&:active {
|
|
100
|
+
background-color: @bg-white;
|
|
101
|
+
color: @weight-3;
|
|
102
|
+
border-color: @weight-3;
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
|
|
93
106
|
.ant-popover button.ant-btn-primary,
|
|
94
107
|
button.zt-btn-primary,
|
|
95
108
|
button.ant-btn-primary {
|
|
@@ -360,3 +360,18 @@
|
|
|
360
360
|
}
|
|
361
361
|
}
|
|
362
362
|
}
|
|
363
|
+
|
|
364
|
+
// 表格动态头部样式
|
|
365
|
+
.ztxk-table-dynamic--header {
|
|
366
|
+
margin-bottom: @margin-base;
|
|
367
|
+
> button {
|
|
368
|
+
margin-right: @margin-base;
|
|
369
|
+
&:last-child {
|
|
370
|
+
margin-right: 0;
|
|
371
|
+
}
|
|
372
|
+
&.ant-btn > .anticon + span,
|
|
373
|
+
&.ant-btn > span + .anticon {
|
|
374
|
+
margin-left: 2px;
|
|
375
|
+
}
|
|
376
|
+
}
|
|
377
|
+
}
|