el-tableB.less 979 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. .warn-table {
  2. .el-table {
  3. thead th.el-table__cell {
  4. background: rgba(83, 89, 104, 0.3);
  5. }
  6. &.el-table--striped .el-table__body tr.el-table__row--striped td {
  7. background-color: #161415;
  8. }
  9. th {
  10. background-color: #161f1e !important;
  11. color: #fff;
  12. height: 40px;
  13. }
  14. tr {
  15. height: 40px;
  16. background: #161f1e !important;
  17. td {
  18. color: #fff !important;
  19. }
  20. &.isConfirm {
  21. &:hover {
  22. td {
  23. color: #05bb4c !important;
  24. background-color: transparent !important;
  25. }
  26. }
  27. }
  28. &:hover {
  29. td {
  30. color: #d35400 !important;
  31. background-color: transparent !important;
  32. }
  33. }
  34. }
  35. }
  36. }