12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- @import '../setting.less';
- #appBody.light {
- // 电量预测
- .main-body {
- .dlTable {
- .el-table thead.is-group th.el-table__cell {
- background-color: @gray-3;
- }
- .el-table__expanded-cell {
- background: @gray-3;
- }
- .el-table__body {
- tr.hover-row > td {
- background-color: @white;
- color: @black !important;
- }
- td {
- background-color: @white;
- }
- td[rowspan="2"],
- td[rowspan="3"],
- tr.hover-row>td[rowspan="2"],
- tr.hover-row>td[rowspan="3"],
- tr td:last-of-type,
- tr td:nth-last-of-type(2),
- tr:hover td {
- color: @black;
- background-color: @gray-3 !important;
- }
- }
- .el-table__fixed-footer-wrapper tbody td.el-table__cell {
- color: @gray;
- background-color: @gray-3 !important;
- }
- .el-table__footer-wrapper tbody td.el-table__cell,
- .el-table__header-wrapper tbody td.el-table__cell {
- color: @black;
- background-color: @white;
- }
- }
- }
- }
|