bootstrap-table-sticky-header.css 360 B

123456789101112131415161718192021
  1. /**
  2. * @author vincent loh <vincent.ml@gmail.com>
  3. * @update zhixin wen <wenzhixin2010@gmail.com>
  4. */
  5. .fix-sticky {
  6. position: fixed !important;
  7. overflow: hidden;
  8. z-index: 100;
  9. }
  10. .fix-sticky table thead {
  11. background: #fff;
  12. }
  13. .fix-sticky table thead.thead-light {
  14. background: #e9ecef;
  15. }
  16. .fix-sticky table thead.thead-dark {
  17. background: #212529;
  18. }