Skip to content

Instantly share code, notes, and snippets.

@ScarletPonytail
Created June 10, 2019 13:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ScarletPonytail/89a1e8ade64cbd7c9ae856abc0b951c3 to your computer and use it in GitHub Desktop.
Save ScarletPonytail/89a1e8ade64cbd7c9ae856abc0b951c3 to your computer and use it in GitHub Desktop.
@mixin slider-track {
-webkit-appearance: none !important;
-moz-appearance: none !important;
appearance: none !important;
width: 100%;
background: #fff !important;
border-color: transparent !important;
color: transparent !important;
}
input[type=range]::-webkit-slider-runnable-track {
@include slider-track;
}
input[type=range]::-moz-range-track {
@include slider-track;
}
input[type=range]::-ms-track {
@include slider-track;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment