bootstrap-table-fixed-columns.css 739 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. .fixed-columns, .fixed-columns-right {
  2. position: absolute;
  3. top: 0;
  4. height: 100%;
  5. background-color: #fff;
  6. box-sizing: border-box;
  7. z-index: 1;
  8. box-shadow: 0 -1px 8px rgba(0, 0, 0, .08);
  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. box-shadow: -1px 0 8px rgba(0, 0, 0, .08)
  19. }
  20. .fixed-columns-right .fixed-table-body {
  21. overflow-x: hidden !important
  22. }
  23. .fix-sticky {
  24. position: fixed;
  25. z-index: 100;
  26. }
  27. .fix-sticky thead {
  28. background: #fff;
  29. }
  30. .fix-sticky thead th,
  31. .fix-sticky thead th:first-child {
  32. border-left: 0;
  33. border-right: 0;
  34. border-bottom: 1px solid #eee;
  35. border-radius: 0;
  36. }