Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(973)

Unified Diff: chrome/browser/resources/options/options_page.css

Issue 664583006: Improve keyboard navigation on 'Manage search engines' options page (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 a2e4cf5a12b21285e823df221c4abab628c0198a..26fcb4b5630fb76624729110cefdba2e651d3816 100644
--- a/chrome/browser/resources/options/options_page.css
+++ b/chrome/browser/resources/options/options_page.css
@@ -311,15 +311,8 @@ list[type='text'][inlineeditable] input {
}
list > :not([editing]) [displaymode='edit'] {
- display: none;
-}
-
-list > [editing] [displaymode='static'] {
- /* Don't use display:none because we need to keep an element focusable. */
- left: 0;
- pointer-events: none;
- position: absolute;
- visibility: hidden;
+ border: none;
+ background-color: rgb(255, 255, 255);
Dan Beam 2014/10/18 01:35:44 ^ why is this necessary? also, why not "white"?
}
list > [editing] input:invalid {

Powered by Google App Engine
This is Rietveld 408576698