Index: chrome/browser/resources/options/options_page.css |
diff --git a/chrome/browser/resources/options/options_page.css b/chrome/browser/resources/options/options_page.css |
index d5398afd2f988dcceff295a422b4374c869400f2..018a7c894bd9a15a605e0a8dbdc9cee105910c3d 100644 |
--- a/chrome/browser/resources/options/options_page.css |
+++ b/chrome/browser/resources/options/options_page.css |
@@ -348,7 +348,7 @@ list > * { |
border: none; |
} |
-list > :hover { |
+list:not(.disabled) > :hover { |
background-color: #f2f2f2; |
} |
@@ -357,9 +357,23 @@ list:focus > [selected], |
list:focus > [lead][selected], |
list > [selected]:hover { |
background-color: #f2f2f2; |
+ background-image: none; |
+} |
+ |
+list > [lead][selected], |
+list:focus > [lead][selected] { |
border-top: 1px solid #b2b2b2; |
border-bottom: 1px solid #b2b2b2; |
- background-image: none; |
+ z-index: 3; |
+} |
+ |
+list.disabled > [lead][selected], |
arv (Not doing code reviews)
2010/12/04 01:03:27
Use disabled attribute
stuartmorgan
2010/12/04 01:36:51
Done.
|
+list.disabled:focus > [lead][selected] { |
+ border: none; |
+} |
+ |
+list.disabled { |
+ opacity: 0.6; |
} |
list > .heading { |