You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

overrides.less 936 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*
  2. * @Author: 赵伟
  3. * @Date: 2024-04-28 08:47:43
  4. * @Description: 覆盖 antd 样式
  5. */
  6. // 设置 Table 可以滑动
  7. .vertical-scroll-table {
  8. .ant-table-wrapper {
  9. height: 100%;
  10. .ant-spin-nested-loading {
  11. height: 100%;
  12. .ant-spin-container {
  13. height: 100%;
  14. .ant-table {
  15. height: calc(100% - 74px); // 分页控件的高度
  16. .ant-table-container {
  17. height: 100%;
  18. .ant-table-body {
  19. overflow-y: auto !important;
  20. }
  21. }
  22. }
  23. }
  24. }
  25. }
  26. }
  27. // Tabs 样式
  28. // 删除底部白色横线
  29. .ant-tabs {
  30. .ant-tabs-nav::before {
  31. border: none;
  32. }
  33. // 删除下边的 margin-bottom
  34. .ant-tabs-nav {
  35. margin-bottom: 0;
  36. }
  37. }
  38. // 表格样式
  39. .ant-table-header {
  40. border: 1px solid rgba(167, 178, 194, 0.17);
  41. border-bottom: none;
  42. }
  43. .ant-table-wrapper .ant-table-thead > tr > td {
  44. background-color: #fff;
  45. }