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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/suggestBox.css

Issue 2742573007: DevTools: initial console suggestion should be greyed out (Closed)
Patch Set: use another css Created 3 years, 9 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/ui/SuggestBox.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/devtools/front_end/ui/suggestBox.css
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/suggestBox.css b/third_party/WebKit/Source/devtools/front_end/ui/suggestBox.css
index 816bc72882c317e64a34378fcb05bd88d8b7041f..0a0ec31c3c2770fbef7ab7cd65299f2a23df85f2 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/suggestBox.css
+++ b/third_party/WebKit/Source/devtools/front_end/ui/suggestBox.css
@@ -90,6 +90,22 @@
}
.suggest-box-content-item.selected > span {
+ color: #fff;
+}
+
+.default-selection-is-dimmed .suggest-box-content-item.selected {
+ background-color: whitesmoke;
+}
+
+.default-selection-is-dimmed .suggest-box-content-item.selected > span {
+ color: inherit;
+}
+
+.user-has-interacted .suggest-box-content-item.selected {
+ background-color: rgb(56, 121, 217);
+}
+
+.user-has-interacted .suggest-box-content-item.selected > span {
color: #FFF;
}
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/ui/SuggestBox.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698