iov-design 2.15.68 → 2.15.69
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/lib/index.js +1 -1
- package/lib/iov-design.common.js +1 -1
- package/lib/theme-chalk/index.css +1 -1
- package/lib/theme-chalk/pagination.css +1 -1
- package/lib/theme-chalk/select.css +1 -1
- package/lib/theme-chalk/tabs.css +1 -1
- package/lib/theme-chalk/upload.css +1 -1
- package/package.json +1 -1
- package/packages/theme-chalk/src/common/var.scss +1 -1
- package/packages/theme-chalk/src/pagination.scss +1 -8
- package/packages/theme-chalk/src/select.scss +12 -2
- package/packages/theme-chalk/src/tabs.scss +1 -0
- package/packages/theme-chalk/src/upload.scss +19 -13
- package/src/index.js +1 -1
|
@@ -265,6 +265,12 @@
|
|
|
265
265
|
.el-upload-list__file {
|
|
266
266
|
background: #fff;
|
|
267
267
|
}
|
|
268
|
+
|
|
269
|
+
.el-upload-list {
|
|
270
|
+
.iov-icon-delete {
|
|
271
|
+
color: $--color-fill-6;
|
|
272
|
+
}
|
|
273
|
+
}
|
|
268
274
|
}
|
|
269
275
|
|
|
270
276
|
// 上传文件列表
|
|
@@ -273,6 +279,19 @@
|
|
|
273
279
|
padding: 0;
|
|
274
280
|
list-style: none;
|
|
275
281
|
|
|
282
|
+
.iov-icon-delete {
|
|
283
|
+
display: none;
|
|
284
|
+
position: absolute;
|
|
285
|
+
top: 50%;
|
|
286
|
+
right: 8px;
|
|
287
|
+
cursor: pointer;
|
|
288
|
+
transform: translateY(-50%);
|
|
289
|
+
color: $--color-fill-5;
|
|
290
|
+
&:hover {
|
|
291
|
+
color: $--color-primary-6;
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
|
|
276
295
|
@include e(item) {
|
|
277
296
|
margin-top: 4px;
|
|
278
297
|
position: relative;
|
|
@@ -286,19 +305,6 @@
|
|
|
286
305
|
color: $--color-success-6;
|
|
287
306
|
}
|
|
288
307
|
|
|
289
|
-
.iov-icon-delete {
|
|
290
|
-
display: none;
|
|
291
|
-
position: absolute;
|
|
292
|
-
top: 50%;
|
|
293
|
-
right: 8px;
|
|
294
|
-
cursor: pointer;
|
|
295
|
-
transform: translateY(-50%);
|
|
296
|
-
color: $--color-fill-5;
|
|
297
|
-
&:hover {
|
|
298
|
-
color: $--color-primary-6;
|
|
299
|
-
}
|
|
300
|
-
}
|
|
301
|
-
|
|
302
308
|
&:hover {
|
|
303
309
|
.iov-icon-delete {
|
|
304
310
|
display: inline-block;
|