el-tableB.less 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. .warn-table {
  2. .el-table {
  3. thead th.el-table__cell {
  4. background: rgba(83, 89, 104, 0.3);
  5. }
  6. .el-table__body-wrapper {
  7. background-color: #040c0b;
  8. }
  9. .el-loading-mask {
  10. background-color: #606266;
  11. }
  12. &.el-table--striped .el-table__body tr.el-table__row--striped td {
  13. background-color: #161415;
  14. }
  15. th {
  16. background-color: #161f1e !important;
  17. color: #fff;
  18. height: 40px;
  19. }
  20. tr {
  21. height: 40px;
  22. background: #161f1e !important;
  23. td {
  24. color: #fff !important;
  25. }
  26. .el-input {
  27. .el-input__wrapper {
  28. background-color: #606266;
  29. }
  30. .el-input-group__prepend {
  31. background-color: #606266;
  32. color: #fff;
  33. }
  34. }
  35. &.isConfirm {
  36. &:hover {
  37. td {
  38. color: #05bb4c !important;
  39. background-color: transparent !important;
  40. }
  41. }
  42. }
  43. &:hover {
  44. td {
  45. color: #d35400 !important;
  46. background-color: transparent !important;
  47. }
  48. }
  49. }
  50. .el-table__empty-block {
  51. background: #040c0b;
  52. }
  53. }
  54. }