zmdms-webui 2.2.8 → 2.3.0
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 +1 -0
- package/dist/es/form/index.css +1 -1
- package/dist/es/table/hooks.js +2 -1
- package/dist/es/table/table.js +13 -3
- package/dist/index.dark.css +1 -1
- package/dist/index.default.css +1 -1
- package/dist/less/components/Form/style/index.less +6 -1
- package/package.json +1 -1
|
@@ -45,8 +45,13 @@
|
|
|
45
45
|
.ztxk-form__left {
|
|
46
46
|
flex: 1;
|
|
47
47
|
position: relative;
|
|
48
|
-
|
|
48
|
+
// 超出隐藏移动到toggle样式中,因为在编辑页时,下拉框的一个简单的做法是直接挂载到当前下拉框容器中,这样滚动页面时,下拉区域会随着滚动
|
|
49
|
+
// overflow: hidden;
|
|
49
50
|
transition: max-height 0.3s ease-out;
|
|
51
|
+
// 切换容器高度
|
|
52
|
+
&.ztxk-form__left--toggle {
|
|
53
|
+
overflow: hidden;
|
|
54
|
+
}
|
|
50
55
|
&.ztxk-form__left--flex {
|
|
51
56
|
display: flex;
|
|
52
57
|
flex-wrap: wrap;
|