modal.less 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. .fsTable {
  2. :global {
  3. .ant-table-tbody > tr > td,
  4. .ant-table-thead > tr > th {
  5. height: 62px;
  6. }
  7. }
  8. :global {
  9. .ant-table-tbody > tr > td,
  10. .ant-table-thead > tr > th {
  11. &:nth-child(1) {
  12. width: 22%;
  13. }
  14. &:nth-child(2) {
  15. width: 22%;
  16. }
  17. &:nth-child(3) {
  18. width: 22%;
  19. }
  20. &:nth-child(4) {
  21. width: 17%;
  22. }
  23. &:nth-child(5) {
  24. width: 17%;
  25. }
  26. }
  27. .ant-table-thead {
  28. & > tr {
  29. transition: none;
  30. display: block;
  31. & > th {
  32. display: inline-flex;
  33. align-items: center;
  34. justify-content: center;
  35. }
  36. }
  37. }
  38. .ant-table-tbody {
  39. & > tr {
  40. transition: none;
  41. display: block;
  42. border-bottom: 1px solid #f5f5f5;
  43. & > td {
  44. border-bottom: none;
  45. display: inline-flex;
  46. align-items: center;
  47. justify-content: center;
  48. }
  49. &.ant-table-expanded-row-level-1 > td {
  50. height: auto;
  51. }
  52. }
  53. }
  54. }
  55. }
  56. .sTable {
  57. :global {
  58. .ant-table-tbody > tr > td,
  59. .ant-table-thead > tr > th {
  60. height: 62px;
  61. }
  62. }
  63. :global {
  64. .ant-table-tbody > tr > td,
  65. .ant-table-thead > tr > th {
  66. &:nth-child(1) {
  67. width: 17%;
  68. }
  69. &:nth-child(2) {
  70. width: 17%;
  71. }
  72. &:nth-child(3) {
  73. width: 17%;
  74. }
  75. &:nth-child(4) {
  76. width: 17%;
  77. }
  78. &:nth-child(5) {
  79. width: 18%;
  80. }
  81. &:nth-child(6) {
  82. width: 14%;
  83. }
  84. }
  85. .ant-table-thead {
  86. & > tr {
  87. transition: none;
  88. display: block;
  89. & > th {
  90. display: inline-flex;
  91. align-items: center;
  92. justify-content: center;
  93. }
  94. }
  95. }
  96. .ant-table-tbody {
  97. & > tr {
  98. transition: none;
  99. display: block;
  100. border-bottom: 1px solid #f5f5f5;
  101. & > td {
  102. border-bottom: none;
  103. display: inline-flex;
  104. align-items: center;
  105. justify-content: center;
  106. }
  107. &.ant-table-expanded-row-level-1 > td {
  108. height: auto;
  109. }
  110. }
  111. }
  112. }
  113. }