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

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

Issue 2662403002: [DevTools] Merge filter bar with the main toolbar (Closed)
Patch Set: [DevTools] Merge filter bar with the main toolbar Created 3 years, 11 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/ui/toolbar.css
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/toolbar.css b/third_party/WebKit/Source/devtools/front_end/ui/toolbar.css
index 6223cbfd37c82045fab64471c63e1331917b8404..67545ff8e6400da9b434a978c9eaec4dbd57d183 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/toolbar.css
+++ b/third_party/WebKit/Source/devtools/front_end/ui/toolbar.css
@@ -200,7 +200,7 @@ select.toolbar-item {
/* Input */
-input.toolbar-item {
+.toolbar-input {
width: 120px;
height: 20px;
padding: 3px;
@@ -209,11 +209,28 @@ input.toolbar-item {
border: solid 1px #d8d8d8;
}
-input.toolbar-item:focus,
-input.toolbar-item.hover {
+.toolbar-input:focus,
+.toolbar-input.focused,
+.toolbar-input.hover {
border: solid 1px rgb(202, 202, 202);
}
+.toolbar-input > input {
+ border: none;
+ flex-grow: 1;
+}
+
+.toolbar-input-clear-button {
+ opacity: 0.7;
+ flex-basis: 13px;
+ flex-shrink: 0;
+ height: 13px;
+}
+
+.toolbar-input-clear-button:hover {
+ opacity: 1;
+}
+
/* Separator */
.toolbar-divider {

Powered by Google App Engine
This is Rietveld 408576698