table.less 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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: 25%;
  16. }
  17. &:nth-child(2) {
  18. width: 25%;
  19. }
  20. // &:nth-child(3) {
  21. // width: 17%;
  22. // }
  23. //
  24. &:nth-child(3) {
  25. width: 15%;
  26. }
  27. &:nth-child(4) {
  28. width: 20%;
  29. }
  30. &:nth-child(5) {
  31. width: 15%;
  32. }
  33. }
  34. .ant-table-thead {
  35. & > tr {
  36. transition: none;
  37. display: block;
  38. & > th {
  39. display: inline-flex;
  40. align-items: center;
  41. justify-content: center;
  42. }
  43. }
  44. }
  45. .ant-table-tbody {
  46. & > tr {
  47. transition: none;
  48. display: block;
  49. border-bottom: 1px solid #f5f5f5;
  50. & > td {
  51. border-bottom: none;
  52. display: inline-flex;
  53. align-items: center;
  54. justify-content: center;
  55. }
  56. &.ant-table-expanded-row-level-1 > td {
  57. height: auto;
  58. }
  59. }
  60. }
  61. }
  62. }
  63. }
  64. .splitLine {
  65. background: @border-color-split;
  66. display: inline-block;
  67. margin: 0 8px;
  68. width: 1px;
  69. height: 12px;
  70. }