From 07c0beb3d0dbeaeb789a456baa76b8f762daedab Mon Sep 17 00:00:00 2001 From: Nicolas Gallagher Date: Sat, 1 Dec 2012 17:34:14 -0800 Subject: [PATCH] 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. --- normalize.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/normalize.css b/normalize.css index 5d90639..751fdd7 100644 --- a/normalize.css +++ b/normalize.css @@ -427,7 +427,7 @@ input[type="submit"] { */ button[disabled], -input[disabled] { +html input[disabled] { cursor: default; }