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

Unified Diff: third_party/WebKit/Source/devtools/front_end/resources/filterToolbarItem.css

Issue 2662403002: [DevTools] Merge filter bar with the main toolbar (Closed)
Patch Set: 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/resources/filterToolbarItem.css
diff --git a/third_party/WebKit/Source/devtools/front_end/resources/filterToolbarItem.css b/third_party/WebKit/Source/devtools/front_end/resources/filterToolbarItem.css
new file mode 100644
index 0000000000000000000000000000000000000000..3da427497a5414740024da06216f9e43d0d89f0b
--- /dev/null
+++ b/third_party/WebKit/Source/devtools/front_end/resources/filterToolbarItem.css
@@ -0,0 +1,22 @@
+.filter-input-body {
dgozman 2017/02/01 00:28:35 Missing copyright.
eostroukhov 2017/02/03 01:17:40 File's gone
+ background: #FFF;
+ display: flex;
+ align-items: center;
+ border: 1px solid rgb(163, 163, 163);
+ border-radius: 2px;
+ padding: 0 4px 0 4px;
+ margin: 0 4px 0 4px;
+}
+
+.filter-input-field {
+ border: none;
+}
+
+.filter-clear-button {
+ margin-top: 3px;
+ opacity: 0.7;
+}
+
+.filter-clear-button:hover {
+ opacity: 1;
+}

Powered by Google App Engine
This is Rietveld 408576698