#9371 closed feature (fixed)
Slider should change the mouse cursor, by a mouse hovering action.
Reported by: | trazan_coder | Owned by: | trazan_coder |
---|---|---|---|
Priority: | minor | Milestone: | 1.12.2 |
Component: | ui.slider | Version: | 1.10.3 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
For a better usability, the slider should change the mouse cursor, by touching the slider button.
Change History (7)
comment:1 Changed 10 years ago by
Owner: | set to trazan_coder |
---|---|
Status: | new → pending |
comment:2 Changed 10 years ago by
Component: | ui.core → ui.slider |
---|
comment:3 Changed 10 years ago by
Status: | pending → new |
---|
Example about the hover effect could be seen at http://dojotoolkit.org/reference-guide/1.7/dijit/form/Slider.html. Just run the first example and you will see the mouse cursor hover effect if you slide the slider.
comment:4 follow-up: 5 Changed 10 years ago by
-1
Per the spec cursor: pointer
is for indicating links, not clickable elements. See the comments here for a relevant discussion: http://css-tricks.com/snippets/css/give-clickable-elements-a-pointer-cursor/.
I would say we should be consistent with the native range implementation here.
comment:5 Changed 10 years ago by
Replying to tj.vantoll:
-1
Per the spec
cursor: pointer
is for indicating links, not clickable elements. See the comments here for a relevant discussion: http://css-tricks.com/snippets/css/give-clickable-elements-a-pointer-cursor/.I would say we should be consistent with the native range implementation here.
I disagree about this. This pattern isn't a normal button. It's a not standard html element, because of this it's important to give a hint for the user, that an action is available at this element.
comment:7 Changed 6 years ago by
Milestone: | none → 1.12.2 |
---|
Do you have examples of common sliders that do this? Event
<input type="range">
doesn't use apointer
cursor by default.