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

Unified Diff: third_party/WebKit/Source/devtools/front_end/quick_open/filteredListWidget.css

Issue 2773583002: [DevTools] Introduce a sidebar with a drop-down
Patch Set: [DevTools] Introduce a sidebar with a drop-down Created 3 years, 8 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: third_party/WebKit/Source/devtools/front_end/quick_open/filteredListWidget.css
diff --git a/third_party/WebKit/Source/devtools/front_end/quick_open/filteredListWidget.css b/third_party/WebKit/Source/devtools/front_end/quick_open/filteredListWidget.css
index d8f44584023035e197f8cdc1765d205b785b48ff..e32c4e36e14fa8739afd7f75dbfb914cb5bcbbbf 100644
--- a/third_party/WebKit/Source/devtools/front_end/quick_open/filteredListWidget.css
+++ b/third_party/WebKit/Source/devtools/front_end/quick_open/filteredListWidget.css
@@ -19,12 +19,26 @@
font-size: inherit;
}
+.filtered-list-widget-input-container {
+ display: flex;
+ flex-direction: row;
+ align-items: center;
+ margin: 11px 0 4px 0;
+ height: 18px;
+ flex-shrink: 0;
+}
+
.filtered-list-widget-input {
white-space: pre;
- height: 18px;
- margin-top: 12px;
overflow: hidden;
flex: auto;
+ align-self: stretch;
+ margin-top: 1px;
+}
+
+.filtered-list-input-icon {
+ flex-shrink: 1;
+ margin-left: 8px;
}
.filtered-list-widget-progress {
@@ -119,3 +133,7 @@
color: #888;
background: #fbfbfb;
}
+
+.hovered {
+ background-color: #F7F7F7;
+}

Powered by Google App Engine
This is Rietveld 408576698