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

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, 6 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/ui/inspectorCommon.css ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 296
296 .toolbar-shadow.floating { 297 .toolbar-shadow.floating {
297 flex-direction: column; 298 flex-direction: column;
298 height: auto; 299 height: auto;
299 background-color: white; 300 background-color: white;
300 border: 1px solid #ccc; 301 border: 1px solid #ccc;
301 margin-top: -1px; 302 margin-top: -1px;
302 width: 28px; 303 width: 28px;
303 left: -2px; 304 left: -2px;
304 } 305 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/ui/inspectorCommon.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698