Skip to content

Commit 07c0beb

Browse files
committed
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.
1 parent d6c54bb commit 07c0beb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

normalize.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ input[type="submit"] {
427427
*/
428428

429429
button[disabled],
430-
input[disabled] {
430+
html input[disabled] {
431431
cursor: default;
432432
}
433433

0 commit comments

Comments
 (0)