@ganwei-web/gw-base-components-plus 1.0.28 → 1.0.29
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.
|
@@ -611,6 +611,7 @@
|
|
|
611
611
|
background: var(--form-input-background);
|
|
612
612
|
}
|
|
613
613
|
.el-table {
|
|
614
|
+
height: 100%;
|
|
614
615
|
background-color: transparent;
|
|
615
616
|
}
|
|
616
617
|
.el-table th,
|
|
@@ -618,6 +619,9 @@
|
|
|
618
619
|
padding: 8px;
|
|
619
620
|
background-color: var(--table-header-background);
|
|
620
621
|
}
|
|
622
|
+
.el-table .el-table__empty-block {
|
|
623
|
+
width: 100%;
|
|
624
|
+
}
|
|
621
625
|
.el-table .el-table__header th {
|
|
622
626
|
height: 24px;
|
|
623
627
|
padding: 8px;
|
|
@@ -691,14 +695,11 @@
|
|
|
691
695
|
.el-table tbody .el-table__row:nth-child(2n+1) td.el-table__cell {
|
|
692
696
|
background-color: var(--table-body-background__strip2);
|
|
693
697
|
}
|
|
694
|
-
.el-table tbody .el-
|
|
695
|
-
background-color: var(--table-body-background__hover)
|
|
696
|
-
}
|
|
697
|
-
.el-table tbody .el-table__row > td.el-table__cell {
|
|
698
|
-
background-color: transparent !important;
|
|
698
|
+
.el-table tbody tr.hover-row > td.el-table__cell {
|
|
699
|
+
background-color: var(--table-body-background__hover);
|
|
699
700
|
}
|
|
700
|
-
.el-table tbody .
|
|
701
|
-
background
|
|
701
|
+
.el-table tbody tr.hover-row > td.el-table__cell .cell {
|
|
702
|
+
background: transparent;
|
|
702
703
|
}
|
|
703
704
|
.el-table tbody .el-table__fixed-right::before,
|
|
704
705
|
.el-table tbody .el-table__fixed::before {
|
|
@@ -707,6 +708,9 @@
|
|
|
707
708
|
.el-table .el-table__body tr:hover > td.el-table__cell {
|
|
708
709
|
background-color: var(--table-body-background__hover);
|
|
709
710
|
}
|
|
711
|
+
.el-table .el-table__body tr:hover > td.el-table__cell .cell {
|
|
712
|
+
background: transparent;
|
|
713
|
+
}
|
|
710
714
|
.el-table .el-table__fixed-right-patch {
|
|
711
715
|
background-color: var(--table-header-background);
|
|
712
716
|
border-bottom-color: var(--table-header-background);
|