scrollBar.css 557 B

1234567891011121314151617181920212223242526272829303132333435
  1. .zl-scrollBarBox {
  2. height: 100%;
  3. position: absolute;
  4. background: #f3f3f3
  5. }
  6. .zl-scrollBar {
  7. position: absolute;
  8. left: 0;
  9. top: 0;
  10. background: #848484;
  11. transition: background .3s
  12. }
  13. .zl-scrollBar.zl-verticalBar {
  14. min-height: 10px
  15. }
  16. .zl-scrollBar.zl-horizontalBar {
  17. min-width: 10px
  18. }
  19. .zl-scrollBar:hover {
  20. background: #000
  21. }
  22. .zl-scrollContentDiv {
  23. position: relative!important;
  24. width: 100%!important;
  25. height: 100%!important;
  26. padding: 0!important;
  27. margin: 0!important;
  28. top: 0;
  29. left: 0
  30. }