_ion-range-slider.scss 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. //
  2. // Ion Range Slider
  3. //
  4. // Overwrite/Extend styles
  5. // --------------------------------------------------
  6. .irs {
  7. &-line {
  8. height: 5px;
  9. background: $body-bg;
  10. border: none;
  11. border-radius: 3px;
  12. }
  13. &-bar {
  14. height: 5px;
  15. border: none;
  16. background: $brand-primary;
  17. &-edge {
  18. height: 5px;
  19. border: none;
  20. background: $brand-primary;
  21. border-radius: 3px 0 0 3px;
  22. }
  23. }
  24. &-slider {
  25. top: 25px;
  26. width: 20px;
  27. height: 20px;
  28. border: none;
  29. background: $white;
  30. border-radius: 50%;
  31. box-shadow: 0 1px 5px rgba(0,0,0,.35);
  32. @include hover {
  33. background: $white;
  34. box-shadow: 0 1px 5px rgba(0,0,0,.75);
  35. }
  36. }
  37. &-from,
  38. &-to,
  39. &-single {
  40. color: $white;
  41. font-size: 13px;
  42. background: $brand-primary;
  43. }
  44. &-grid-pol {
  45. background: $brand-primary;
  46. }
  47. }