Skip to content

Commit

Permalink
Fix cursor style for disabled button input
Browse files Browse the repository at this point in the history
The Android 4.0.* work around - `html input[type="button"]` - requires
the addition of `html` to the selector for disabled inputs, otherwise
disabled button inputs still have the `pointer` cursor.
  • Loading branch information
necolas committed Dec 2, 2012
1 parent 70c34af commit 5399ff9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion normalize.css
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ input[type="submit"] {
*/

button[disabled],
input[disabled] {
html input[disabled] {
cursor: default;
}

Expand Down

0 comments on commit 5399ff9

Please sign in to comment.