bootstrap-table-fixed-columns.css 370 B

12345678910111213141516171819202122232425
  1. .fixed-columns,
  2. .fixed-columns-right {
  3. position: absolute;
  4. top: 0;
  5. height: 100%;
  6. background-color: #fff;
  7. box-sizing: border-box;
  8. z-index: 1;
  9. }
  10. .fixed-columns {
  11. left: 0;
  12. }
  13. .fixed-columns .fixed-table-body {
  14. overflow: hidden !important;
  15. }
  16. .fixed-columns-right {
  17. right: 0;
  18. }
  19. .fixed-columns-right .fixed-table-body {
  20. overflow-x: hidden !important;
  21. }