Skip to content

Commit 5399ff9

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 70c34af commit 5399ff9

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
@@ -302,7 +302,7 @@ input[type="submit"] {
302302
*/
303303

304304
button[disabled],
305-
input[disabled] {
305+
html input[disabled] {
306306
cursor: default;
307307
}
308308

0 commit comments

Comments
 (0)