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 d6c54bba6f
commit 07c0beb3d0

2
normalize.css vendored
View File

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