support.less 2.0 KB

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