index.less 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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: 8%;
  16. }
  17. &:nth-child(2) {
  18. width: 8%;
  19. }
  20. &:nth-child(3) {
  21. width: 5%;
  22. }
  23. &:nth-child(4) {
  24. width: 9%;
  25. }
  26. &:nth-child(5) {
  27. width: 6%;
  28. }
  29. &:nth-child(6) {
  30. width: 9%;
  31. }
  32. &:nth-child(7) {
  33. width: 9%;
  34. }
  35. &:nth-child(8) {
  36. width: 6%;
  37. }
  38. &:nth-child(9) {
  39. width: 8%;
  40. }
  41. &:nth-child(10) {
  42. width: 7%;
  43. }
  44. &:nth-child(11) {
  45. width: 7%;
  46. }
  47. &:nth-child(12) {
  48. width: 4%;
  49. }
  50. &:nth-child(13) {
  51. width: 4%;
  52. }
  53. &:nth-child(14) {
  54. width: 10%;
  55. }
  56. }
  57. .ant-table-thead {
  58. & > tr {
  59. transition: none;
  60. display: block;
  61. & > th {
  62. display: inline-flex;
  63. align-items: center;
  64. justify-content: center;
  65. }
  66. }
  67. }
  68. .ant-table-tbody {
  69. & > tr {
  70. transition: none;
  71. display: block;
  72. border-bottom: 1px solid #f5f5f5;
  73. & > td {
  74. border-bottom: none;
  75. display: inline-flex;
  76. align-items: center;
  77. justify-content: center;
  78. }
  79. &.ant-table-expanded-row-level-1 > td {
  80. height: auto;
  81. }
  82. }
  83. }
  84. }
  85. }
  86. }
  87. .tableSearchForm {
  88. padding: 24px;
  89. background: #fbfbfb;
  90. border: 1px solid #d9d9d9;
  91. border-radius: 6px;
  92. margin-bottom: 20px;
  93. .ant-form-item {
  94. display: flex;
  95. }
  96. .ant-form-item-label {
  97. overflow: visible;
  98. }
  99. }