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

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

Issue 2875193002: DevTools: update text inputs to new style (Closed)
Patch Set: ac Created 3 years, 7 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 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 221
222 /* Input */ 222 /* Input */
223 223
224 .toolbar-input { 224 .toolbar-input {
225 width: 120px; 225 width: 120px;
226 height: 20px; 226 height: 20px;
227 padding: 3px; 227 padding: 3px;
228 margin: 1px 3px; 228 margin: 1px 3px;
229 background-color: white; 229 background-color: white;
230 border: solid 1px #d8d8d8; 230 border: solid 1px #d8d8d8;
231 border-radius: 2px;
231 min-width: 35px; 232 min-width: 35px;
232 } 233 }
233 234
234 .toolbar-input.focused, 235 .toolbar-input.focused,
235 .toolbar-input.hover { 236 .toolbar-input.hover {
236 border: solid 1px rgb(202, 202, 202); 237 border: solid 1px rgb(202, 202, 202);
237 } 238 }
238 239
239 .toolbar-input > input { 240 .toolbar-input > input {
240 border: none; 241 border: none;
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 margin-top: -1px; 302 margin-top: -1px;
302 width: 28px; 303 width: 28px;
303 left: -2px; 304 left: -2px;
304 } 305 }
305 306
306 span.toolbar-select-container.toolbar-item.warning { 307 span.toolbar-select-container.toolbar-item.warning {
307 background: #ffd7d7; 308 background: #ffd7d7;
308 padding: 0 5px 0 0; 309 padding: 0 5px 0 0;
309 margin-right: 1px; 310 margin-right: 1px;
310 } 311 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698