Skip to content
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

fix(UI): Add cursor pointer to range elements #4059

Merged
merged 1 commit into from Mar 23, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions ui/less/range_elements.less
Expand Up @@ -57,6 +57,11 @@
/* The track should fill the range element. */
width: 100%;

/* Since range elements are special input elements, they must reflect user
* interaction, so when the user hovers over the range element, the cursor
* must be a pointer. */
cursor: pointer;

/* The track should be tall enough to contain the thumb without clipping it.
* It is very tricky to make the thumb show outside the track on IE 11, and
* it is incompatible with our background gradients. */
Expand Down