table.less 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. // 自定义table
  2. @titleGray: #9ca5a8;
  3. @rowGray: #606769;
  4. @darkBack: #536268;
  5. .el-table td.el-table__cell,
  6. .el-table th.el-table__cell.is-leaf {
  7. border-bottom: 0 !important;
  8. }
  9. .el-table th.el-table__cell {
  10. border-right: 1px solid rgba(0, 0, 0, 0.8) !important;
  11. }
  12. .com-table {
  13. width: 100%;
  14. border-collapse: collapse;
  15. thead {
  16. tr {
  17. display: table;
  18. table-layout: fixed;
  19. width: 100%;
  20. th {
  21. background-color: fade(@darkBack, 20%);
  22. height: 30px;
  23. line-height: 30px;
  24. color: @titleGray;
  25. font-weight: 400;
  26. font-size: @fontsize-s;
  27. position: sticky;
  28. top: 0;
  29. cursor: pointer;
  30. &.light,
  31. &.always-light {
  32. color: @green;
  33. }
  34. }
  35. }
  36. }
  37. tbody {
  38. display: block;
  39. tr {
  40. display: table;
  41. table-layout: fixed;
  42. width: 100%;
  43. &:nth-child(2n) {
  44. background-color: fade(@rowGray, 20%);
  45. }
  46. td {
  47. padding: 4px;
  48. color: @rowGray;
  49. text-align: center;
  50. font-size: @fontsize-s;
  51. white-space: nowrap;
  52. overflow: hidden;
  53. text-overflow: ellipsis;
  54. & > span {
  55. white-space: nowrap;
  56. overflow: hidden;
  57. text-overflow: ellipsis;
  58. }
  59. &.light,
  60. &.always-light {
  61. color: @green !important;
  62. }
  63. &.num {
  64. font-family: "Bicubik";
  65. font-weight: 400;
  66. }
  67. }
  68. }
  69. }
  70. }