Index: chrome/browser/resources/shared/css/checkbox.css |
diff --git a/chrome/browser/resources/shared/css/checkbox.css b/chrome/browser/resources/shared/css/checkbox.css |
index c8cb63f690b2d8db44960d2c61246378015c709b..2ece95e986f04877f4f308bd5948966c3b1e1fc4 100644 |
--- a/chrome/browser/resources/shared/css/checkbox.css |
+++ b/chrome/browser/resources/shared/css/checkbox.css |
@@ -26,7 +26,7 @@ input[type='checkbox']:disabled { |
opacity: .75; |
} |
-input[type='checkbox']:not(:disabled):not(.disabled):hover { |
+input[type='checkbox']:not(:disabled):not(.disabled):not(:active):hover { |
background: -webkit-linear-gradient(#fff, #e6e6e6); |
text-shadow: 0 1px 0 rgba(255, 255, 255, 1); |
} |
@@ -35,8 +35,10 @@ input[type='checkbox']:active { |
-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, .2); |
background: -webkit-linear-gradient(#f0f0f0, #bebebe); |
border: 1px solid #808080; |
+/* |
dpapad
2011/11/15 16:47:24
Remove commented out rules?
Evan Stade
2011/11/15 17:54:35
ah. Of course.
|
padding-bottom: 4px; |
padding-top: 6px; |
+*/ |
text-shadow: 0 1px 0 rgba(255, 255, 255, .25); |
} |
@@ -75,7 +77,7 @@ input[type='radio']:disabled { |
opacity: .75; |
} |
-input[type='radio']:not(:disabled):not(.disabled):hover { |
+input[type='radio']:not(:disabled):not(.disabled):not(:active):hover { |
background: -webkit-linear-gradient(#fff, #e6e6e6); |
text-shadow: 0 1px 0 rgba(255, 255, 255, 1); |
} |