table.less 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. @import "~antd/lib/style/themes/default.less";
  2. @import "../../utils/utils.less";
  3. .table {
  4. :global {
  5. .ant-table-tbody > tr > td,
  6. .ant-table-thead > tr > th {
  7. height: 50px;
  8. }
  9. }
  10. &.motion {
  11. :global {
  12. .ant-table-tbody > tr > td,
  13. .ant-table-thead > tr > th {
  14. &:nth-child(1) {
  15. width: 20%;
  16. }
  17. &:nth-child(2) {
  18. width: 20%;
  19. }
  20. &:nth-child(3) {
  21. width: 20%;
  22. }
  23. &:nth-child(4) {
  24. width: 20%;
  25. }
  26. &:nth-child(5) {
  27. width: 20%;
  28. }
  29. }
  30. .ant-table-thead {
  31. & > tr {
  32. transition: none;
  33. display: block;
  34. & > th {
  35. display: inline-flex;
  36. align-items: center;
  37. justify-content: center;
  38. }
  39. }
  40. }
  41. .ant-table-tbody {
  42. & > tr {
  43. transition: none;
  44. display: block;
  45. border-bottom: 1px solid #f5f5f5;
  46. & > td {
  47. border-bottom: none;
  48. display: inline-flex;
  49. align-items: center;
  50. justify-content: center;
  51. }
  52. &.ant-table-expanded-row-level-1 > td {
  53. height: auto;
  54. }
  55. }
  56. }
  57. }
  58. }
  59. }
  60. .splitLine {
  61. background: @border-color-split;
  62. display: inline-block;
  63. margin: 0 8px;
  64. width: 1px;
  65. height: 12px;
  66. }