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

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

Issue 2666013002: DevTools: render console filter in the main console toolbar. (Closed)
Patch Set: Created 3 years, 10 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2014 The Chromium Authors. All rights reserved. 2 * Copyright (c) 2014 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 :host { 7 :host {
8 flex: none; 8 flex: none;
9 padding: 0 2px; 9 padding: 0 2px;
10 } 10 }
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 border: 0; 194 border: 0;
195 border-radius: 0; 195 border-radius: 0;
196 padding: 0 15px 0 5px; 196 padding: 0 15px 0 5px;
197 margin-right: -10px; 197 margin-right: -10px;
198 position: relative; 198 position: relative;
199 } 199 }
200 200
201 /* Input */ 201 /* Input */
202 202
203 input.toolbar-item { 203 input.toolbar-item {
204 width: 200px; 204 width: 120px;
dgozman 2017/01/31 04:21:30 I think this will affect more toolbars.
pfeldman 2017/01/31 19:54:45 I know, but I don't yet know where this results in
205 height: 20px; 205 height: 20px;
206 padding: 3px; 206 padding: 3px;
207 margin: 1px 3px; 207 margin: 1px 3px;
208 background-color: white; 208 background-color: white;
209 border: solid 1px #d8d8d8; 209 border: solid 1px #d8d8d8;
210 } 210 }
211 211
212 input.toolbar-item:focus, 212 input.toolbar-item:focus,
213 input.toolbar-item.hover { 213 input.toolbar-item.hover {
214 border: solid 1px rgb(202, 202, 202); 214 border: solid 1px rgb(202, 202, 202);
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
248 margin-top: -1px; 248 margin-top: -1px;
249 width: 28px; 249 width: 28px;
250 left: -2px; 250 left: -2px;
251 } 251 }
252 252
253 span.toolbar-select-container.toolbar-item.warning { 253 span.toolbar-select-container.toolbar-item.warning {
254 background: #ffd7d7; 254 background: #ffd7d7;
255 padding: 0 5px 0 0; 255 padding: 0 5px 0 0;
256 margin-right: 1px; 256 margin-right: 1px;
257 } 257 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698