-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
missing support for fill-lower and fill-upper #2
Comments
The problem with fill-lower and ticks is that they're vendor specific features, so using them here would only apply to those browsers, and at that point why not just use the vendor pseudos directly? |
well thats right, but imo it would be nicer to write ::fill-lower instead of both, ::-moz-range-progress and ::-ms-fill-lower. Same for the ticks. A shorthand is easier to remember and it could include all necessary vendor prefixes to cover all supporting browsers. |
I thought ticks were an ms only thing? Might consider including progress/fill-lower, with the caveat that WebKit and blink aren't supported. I'm flat out atm though, would accept a PR if you'd like to submit one? |
yes, they are ms only, but to style them properly you have to use three different prefixed selectors. |
👍 |
A bundled selector for (::-moz-range-progress, ::-ms-fill-lower) would be nice, as well as a bundled selector to style IEs range ticks. (::-ms-ticks-before, ::-ms-ticks-after, ::-ms-track)
The text was updated successfully, but these errors were encountered: