bootstrap-table-sticky-header.css 416 B

12345678910111213141516171819202122
  1. /**
  2. * @author vincent loh <vincent.ml@gmail.com>
  3. * @version: v1.0.0
  4. * https://github.com/vinzloh/bootstrap-table/
  5. * Sticky header for bootstrap-table
  6. */
  7. .fix-sticky {
  8. position: fixed;
  9. z-index: 100;
  10. }
  11. .fix-sticky thead {
  12. background: #fff;
  13. }
  14. .fix-sticky thead th,
  15. .fix-sticky thead th:first-child {
  16. border-left: 0;
  17. border-right: 0;
  18. border-bottom: 1px solid #eee;
  19. border-radius: 0;
  20. }