el-tableB.less 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. .warn-table {
  2. .el-table {
  3. .caret-wrapper {
  4. display: none !important;
  5. }
  6. }
  7. .el-table {
  8. .el-table__header {
  9. thead {
  10. tr {
  11. th {
  12. // background: #8F93A7 !important;
  13. color: #fff;
  14. }
  15. }
  16. }
  17. }
  18. thead th.el-table__cell {
  19. background: rgba(83, 89, 104, 0.3);
  20. }
  21. .el-table__body-wrapper {
  22. background-color: #040c0b;
  23. }
  24. .el-loading-mask {
  25. background-color: #606266;
  26. }
  27. &.el-table--striped .el-table__body tr.el-table__row--striped td {
  28. background-color: #161415;
  29. }
  30. th {
  31. background-color: #161f1e !important;
  32. color: #fff;
  33. height: 40px;
  34. }
  35. tr {
  36. height: 40px;
  37. background: #161f1e !important;
  38. td {
  39. color: #fff !important;
  40. }
  41. .el-input {
  42. .el-input__wrapper {
  43. background-color: #606266;
  44. }
  45. .el-input-group__prepend {
  46. background-color: #606266;
  47. color: #fff;
  48. }
  49. }
  50. &.isConfirm {
  51. &:hover {
  52. td {
  53. color: #05bb4c !important;
  54. background-color: transparent !important;
  55. }
  56. }
  57. }
  58. &:hover {
  59. td {
  60. color: #d35400 !important;
  61. background-color: transparent !important;
  62. }
  63. }
  64. }
  65. .el-table__empty-block {
  66. background: #212223;
  67. }
  68. }
  69. .toolSty {
  70. .el-popper {
  71. width: 50% !important;
  72. }
  73. }
  74. }