el-table.less 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. // el-table
  2. .main-body,
  3. .warn-table,
  4. .df-table {
  5. .el-table,
  6. .custom-table.el-table {
  7. background: transparent;
  8. border: 0px;
  9. &.el-table--border::after,
  10. &.el-table--group::after,
  11. &::before {
  12. background-color: transparent;
  13. }
  14. tr {
  15. &:hover {
  16. td {
  17. color: @green;
  18. background-color: transparent !important;
  19. }
  20. }
  21. }
  22. td {
  23. border: 0px;
  24. padding: 0;
  25. // height: 27px;
  26. // line-height: 27px;
  27. height: 37px;
  28. line-height: 37px;
  29. // font-size: 12px;
  30. color: #b3bdc0;
  31. &.light,
  32. &.always-light {
  33. color: @green !important;
  34. }
  35. }
  36. th {
  37. border: 0px;
  38. padding: 0px;
  39. // height: 30px;
  40. // line-height: 30px;
  41. height: 37px;
  42. line-height: 37px;
  43. font-weight: normal;
  44. text-align: center;
  45. color: @gray-l;
  46. cursor: pointer;
  47. &.is-leaf {
  48. border: 0px;
  49. }
  50. &.light,
  51. &.always-light {
  52. color: @green !important;
  53. }
  54. }
  55. th,
  56. tr {
  57. background-color: transparent;
  58. border: 0px;
  59. }
  60. thead {
  61. color: @gray-l;
  62. font-weight: 500;
  63. font-size: 14px;
  64. border: 0px;
  65. th,
  66. &.is-group th {
  67. &.el-table__cell {
  68. background: #282f31;
  69. }
  70. // & > .cell {
  71. // }
  72. // background-color: fade(@gray, 20);
  73. }
  74. }
  75. .el-table__body {
  76. border: 0px;
  77. font-size: 14px;
  78. }
  79. &.el-table--striped .el-table__body tr.el-table__row--striped {
  80. &:hover td {
  81. background-color: fade(@gray, 20) !important;
  82. }
  83. td {
  84. background-color: fade(@gray, 20);
  85. }
  86. }
  87. &.el-table--border,
  88. &.el-table--group {
  89. border: none;
  90. }
  91. .ascending .sort-caret.ascending {
  92. border-bottom-color: @green;
  93. }
  94. .descending .sort-caret.descending {
  95. border-top-color: @green;
  96. }
  97. }
  98. .el-table__expanded-cell {
  99. background: transparent;
  100. }
  101. .el-table__footer-wrapper tbody td {
  102. background: #1a1f2fcc;
  103. }
  104. // .el-table__body tr.hover-row.current-row > td,
  105. // .el-table__body tr.hover-row.el-table__row--striped.current-row > td,
  106. // .el-table__body tr.hover-row.el-table__row--striped > td,
  107. // .el-table__body tr.hover-row > td {
  108. // background: transparent;
  109. // color: @green;
  110. // }
  111. }
  112. .warn-table {
  113. .el-table {
  114. thead th.el-table__cell {
  115. background: rgba(83, 89, 104, 0.3);
  116. }
  117. &.el-table--striped .el-table__body tr.el-table__row--striped td {
  118. background-color: #161415;
  119. }
  120. tr {
  121. &:hover {
  122. td {
  123. color: #d35400 !important;
  124. background-color: transparent !important;
  125. }
  126. }
  127. }
  128. }
  129. }