dlyc.less 953 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. @import '../setting.less';
  2. #appBody.light {
  3. // 电量预测
  4. .main-body {
  5. .dlTable {
  6. .el-table thead.is-group th.el-table__cell {
  7. background-color: @gray-3;
  8. }
  9. .el-table__expanded-cell {
  10. background: @gray-3;
  11. }
  12. .el-table__body {
  13. tr.hover-row > td {
  14. background-color: @white;
  15. color: @black !important;
  16. }
  17. td {
  18. background-color: @white;
  19. }
  20. td[rowspan="2"],
  21. td[rowspan="3"],
  22. tr.hover-row>td[rowspan="2"],
  23. tr.hover-row>td[rowspan="3"],
  24. tr td:last-of-type,
  25. tr td:nth-last-of-type(2),
  26. tr:hover td {
  27. color: @black;
  28. background-color: @gray-3 !important;
  29. }
  30. }
  31. .el-table__fixed-footer-wrapper tbody td.el-table__cell {
  32. color: @gray;
  33. background-color: @gray-3 !important;
  34. }
  35. .el-table__footer-wrapper tbody td.el-table__cell,
  36. .el-table__header-wrapper tbody td.el-table__cell {
  37. color: @black;
  38. background-color: @white;
  39. }
  40. }
  41. }
  42. }