You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are hard to fix bugs due to the Material Design spec requiring things the native component doesn't expect (such as resizing the thumb, see Slider frustrating on mobile #1445).
There are certain parts of the spec we simply can't implement in certain browsers, particularly around animations.
The current implementation is incomplete, and only covers continuous sliders. Adding the rest would be very difficult, given the limitations above.
We should instead switch to a similar approach to the one we use in checkboxes and radio buttons, where we have a hidden native element for state and accessibility, and we render our own styling on top.
The text was updated successfully, but these errors were encountered:
mdl-slider
is implemented with native styling on the HTMLrange
element. This is causing a number of problems:We should instead switch to a similar approach to the one we use in checkboxes and radio buttons, where we have a hidden native element for state and accessibility, and we render our own styling on top.
The text was updated successfully, but these errors were encountered: