zmdms-webui 2.8.4 → 2.8.6
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/login/forget-password.js +7 -1
- package/dist/es/table/index.css +1 -1
- package/dist/es/uploadlist/index.css +1 -1
- package/dist/index.dark.css +1 -1
- package/dist/index.default.css +1 -1
- package/dist/less/components/Table/style/index.less +3 -0
- package/dist/less/components/UploadList/style/index.less +20 -0
- package/package.json +1 -1
|
@@ -49,6 +49,26 @@
|
|
|
49
49
|
align-items: center;
|
|
50
50
|
justify-content: space-between;
|
|
51
51
|
padding-right: 10px;
|
|
52
|
+
.preview-list__item--left {
|
|
53
|
+
> button {
|
|
54
|
+
height: auto;
|
|
55
|
+
display: flex;
|
|
56
|
+
> span:first-child {
|
|
57
|
+
margin-top: 1px;
|
|
58
|
+
}
|
|
59
|
+
> span:last-child {
|
|
60
|
+
/* 1. 必须设置高度限制(或让 line-height * 3 自动撑起高度) */
|
|
61
|
+
display: -webkit-box; /* 弹性盒模型,用于多行文本换行计算 */
|
|
62
|
+
-webkit-line-clamp: 3; /* 限制显示的行数 */
|
|
63
|
+
-webkit-box-orient: vertical; /* 文本排列方向:垂直 */
|
|
64
|
+
overflow: hidden; /* 隐藏超出部分 */
|
|
65
|
+
text-overflow: ellipsis; /* 超出部分显示省略号 */
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
.preview-list__item--right {
|
|
70
|
+
flex-shrink: 0;
|
|
71
|
+
}
|
|
52
72
|
}
|
|
53
73
|
}
|
|
54
74
|
}
|