index.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. @import '../common/index.css';
  2. .van-slider {
  3. position: relative;
  4. border-radius: 999px;
  5. border-radius: var(--border-radius-max, 999px);
  6. background-color: #ebedf0;
  7. background-color: var(--slider-inactive-background-color, #ebedf0);
  8. }
  9. .van-slider:before {
  10. position: absolute;
  11. right: 0;
  12. left: 0;
  13. content: '';
  14. top: -8px;
  15. top: -var(--padding-xs, 8px);
  16. bottom: -8px;
  17. bottom: -var(--padding-xs, 8px);
  18. }
  19. .van-slider__bar {
  20. position: relative;
  21. border-radius: inherit;
  22. transition: width 0.2s;
  23. transition: width var(--animation-duration-fast, 0.2s);
  24. background-color: #1989fa;
  25. background-color: var(--slider-active-background-color, #1989fa);
  26. }
  27. .van-slider__button {
  28. width: 24px;
  29. height: 24px;
  30. border-radius: 50%;
  31. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  32. background-color: #fff;
  33. background-color: var(--slider-button-background-color, #fff);
  34. }
  35. .van-slider__button-wrapper {
  36. position: absolute;
  37. top: 50%;
  38. right: 0;
  39. -webkit-transform: translate3d(50%, -50%, 0);
  40. transform: translate3d(50%, -50%, 0);
  41. }
  42. .van-slider--disabled {
  43. opacity: 0.5;
  44. }