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

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

Issue 2557763003: DevTools: sort completions by prototype. (Closed)
Patch Set: same w/ cross-origin check Created 4 years 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: 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 2f0045d88eab8e92cae98af699d35bdc6ef8d518..a7f0e356218877e7f27f8ff68d0aafcb7f25a87f 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/suggestBox.css
+++ b/third_party/WebKit/Source/devtools/front_end/ui/suggestBox.css
@@ -85,11 +85,17 @@
background-color: #f9f9f9;
}
-.suggestion-text {
+.suggestion-title {
overflow: hidden;
text-overflow: ellipsis;
}
+.suggestion-subtitle {
+ flex: auto;
+ text-align: right;
+ color: #999;
+}
+
.suggestion-icon {
user-select: none;
align-self: center;
@@ -107,6 +113,9 @@
.suggest-box .suggest-box-content-item.selected {
background-color: rgb(56, 121, 217);
+}
+
+.suggest-box .suggest-box-content-item.selected > span {
color: #FFF;
}

Powered by Google App Engine
This is Rietveld 408576698