scrollbar.less 827 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /* Scrollbar */
  2. .swiper-scrollbar {
  3. border-radius: 10px;
  4. position: relative;
  5. -ms-touch-action: none;
  6. background: rgba(0, 0, 0, 0.1);
  7. .swiper-scrollbar-disabled > &,
  8. &.swiper-scrollbar-disabled {
  9. display: none !important;
  10. }
  11. .swiper-horizontal > &,
  12. &.swiper-scrollbar-horizontal {
  13. position: absolute;
  14. left: 1%;
  15. bottom: 3px;
  16. z-index: 50;
  17. height: 5px;
  18. width: 98%;
  19. }
  20. .swiper-vertical > &,
  21. &.swiper-scrollbar-vertical {
  22. position: absolute;
  23. right: 3px;
  24. top: 1%;
  25. z-index: 50;
  26. width: 5px;
  27. height: 98%;
  28. }
  29. }
  30. .swiper-scrollbar-drag {
  31. height: 100%;
  32. width: 100%;
  33. position: relative;
  34. background: rgba(0, 0, 0, 0.5);
  35. border-radius: 10px;
  36. left: 0;
  37. top: 0;
  38. }
  39. .swiper-scrollbar-cursor-drag {
  40. cursor: move;
  41. }
  42. .swiper-scrollbar-lock {
  43. display: none;
  44. }