table.less 723 B

1234567891011121314151617181920212223242526272829303132
  1. @prefix-cls: ~'@{namespace}-basic-table';
  2. // fix table unnecessary scrollbar
  3. .@{prefix-cls} {
  4. .ant-table-wrapper {
  5. .ant-spin-nested-loading {
  6. .ant-spin-container {
  7. .ant-table {
  8. .ant-table-content {
  9. .ant-table-scroll {
  10. .ant-table-hide-scrollbar {
  11. overflow-y: auto !important;
  12. }
  13. .ant-table-body {
  14. overflow: auto !important;
  15. }
  16. }
  17. .ant-table-fixed-right {
  18. .ant-table-body-outer {
  19. .ant-table-body-inner {
  20. overflow-y: auto !important;
  21. }
  22. }
  23. }
  24. }
  25. }
  26. }
  27. }
  28. }
  29. }