index.less 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. &:nth-child(1) {
  8. width: 15%;
  9. }
  10. &:nth-child(2) {
  11. width: 20%;
  12. }
  13. &:nth-child(3) {
  14. width: 20%;
  15. }
  16. &:nth-child(4) {
  17. width: 20%;
  18. }
  19. &:nth-child(5) {
  20. width: 15%;
  21. }
  22. &:nth-child(6) {
  23. width: 10%;
  24. }
  25. }
  26. .ant-table-thead {
  27. & > tr {
  28. transition: none;
  29. display: block;
  30. & > th {
  31. display: inline-flex;
  32. align-items: left;
  33. justify-content: left;
  34. }
  35. }
  36. }
  37. .ant-table-tbody {
  38. & > tr {
  39. transition: none;
  40. display: block;
  41. border-bottom: 1px solid #f5f5f5;
  42. & > td {
  43. border-bottom: none;
  44. display: inline-flex;
  45. align-items: left;
  46. justify-content: left;
  47. }
  48. &.ant-table-expanded-row-level-1 > td {
  49. height: auto;
  50. }
  51. }
  52. }
  53. }
  54. }