mirror of
https://github.com/necolas/normalize.css.git
synced 2024-12-25 15:14:19 +00:00
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:
parent
d6c54bba6f
commit
07c0beb3d0
2
normalize.css
vendored
2
normalize.css
vendored
@ -427,7 +427,7 @@ input[type="submit"] {
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
button[disabled],
|
button[disabled],
|
||||||
input[disabled] {
|
html input[disabled] {
|
||||||
cursor: default;
|
cursor: default;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user