n20-common-lib 3.0.69 → 3.0.70
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/package.json +1 -1
- package/src/assets/css/table.scss +15 -12
- package/src/assets/css/v3/table.scss +931 -518
- package/style/index.css +1 -1
- package/theme/blue.css +1 -1
- package/theme/cctcRed.css +1 -1
- package/theme/green.css +1 -1
- package/theme/lightBlue.css +1 -1
- package/theme/orange.css +1 -1
- package/theme/purple.css +1 -1
- package/theme/red.css +1 -1
- package/theme/yellow.css +1 -1
package/package.json
CHANGED
|
@@ -237,8 +237,8 @@
|
|
|
237
237
|
}
|
|
238
238
|
}
|
|
239
239
|
|
|
240
|
-
/* 为没有wrapper的旧版本组件添加兼容样式
|
|
241
|
-
/*
|
|
240
|
+
/* 为没有wrapper的旧版本组件添加兼容样式 */
|
|
241
|
+
/* 这些全局样式会被v3版本的wrapper样式覆盖,实现兼容 */
|
|
242
242
|
.el-table--small {
|
|
243
243
|
font-size: 14px;
|
|
244
244
|
}
|
|
@@ -421,11 +421,6 @@
|
|
|
421
421
|
font-size: 14px !important;
|
|
422
422
|
}
|
|
423
423
|
|
|
424
|
-
.vxe-header--row th,
|
|
425
|
-
th.vxe-header--column {
|
|
426
|
-
position: relative;
|
|
427
|
-
font-weight: $--font-weight-primary;
|
|
428
|
-
}
|
|
429
424
|
|
|
430
425
|
.vxe-table--tooltip-wrapper {
|
|
431
426
|
z-index: 9999 !important;
|
|
@@ -454,11 +449,6 @@ th.vxe-header--column {
|
|
|
454
449
|
max-height: 100%;
|
|
455
450
|
}
|
|
456
451
|
|
|
457
|
-
.vxe-header--column {
|
|
458
|
-
.vxe-cell {
|
|
459
|
-
justify-content: center !important;
|
|
460
|
-
}
|
|
461
|
-
}
|
|
462
452
|
|
|
463
453
|
.el-table th.el-table__cell > .cell {
|
|
464
454
|
overflow: hidden;
|
|
@@ -466,6 +456,19 @@ th.vxe-header--column {
|
|
|
466
456
|
white-space: nowrap;
|
|
467
457
|
}
|
|
468
458
|
|
|
459
|
+
/* TableSetSize 组件样式 - 仅在v2版本中引入 */
|
|
460
|
+
@import '../../components/TableSetSize/style.scss';
|
|
461
|
+
|
|
462
|
+
.el-table-set-size-item {
|
|
463
|
+
.icon-mini {
|
|
464
|
+
background-image: url('../../components/TableSetSize/small.png');
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
.icon-mini {
|
|
468
|
+
background-image: url('../../components/TableSetSize/mini.png');
|
|
469
|
+
}
|
|
470
|
+
}
|
|
471
|
+
|
|
469
472
|
@import '../../components/TableSetSize/style.scss';
|
|
470
473
|
|
|
471
474
|
.el-table-set-size-item {
|