I have an HTML form with a specific code snippet:
#stoppage_section .stoppage{
cursor: move; /* fallback if grab cursor is unsupported */
cursor: grab;
cursor: -moz-grab;
cursor: -webkit-grab;
}
<div id="stoppage_section">
<div class="stoppage">
<input class="form-control" ....>
</div>
<div class="stoppage">
<input class="form-control" ....>
</div>
</div>
I am looking to have the cursor display as a 'move' icon when the user navigates within the 'stoppage_section' area. However, I want the cursor to function normally when it hovers over input fields.
This code works correctly in Chrome, but there is an issue in Firefox where the input fields become uneditable.
Desired Outcome
The desired behavior is for the cursor to show a 'move' icon when over a div
and to function normally when over input fields.
I am currently using Mozilla Firefox Version 48.0.2. The latest version is not suitable for me due to the changes in Firebug's appearance, which I find displeasing.