Fix cursor style for disabled button input

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.
This commit is contained in:
Nicolas Gallagher 2012-12-01 17:34:14 -08:00
parent 70c34af15b
commit 5399ff9c0e

2
normalize.css vendored
View File

@ -302,7 +302,7 @@ input[type="submit"] {
*/
button[disabled],
input[disabled] {
html input[disabled] {
cursor: default;
}