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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/emulation/sensors.css

Issue 2906983002: DevTools: cleanup text input styles (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
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2015 The Chromium Authors. All rights reserved. 2 * Copyright (c) 2015 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 .sensors-view { 7 .sensors-view {
8 padding: 12px; 8 padding: 12px;
9 display: block; 9 display: block;
10 } 10 }
(...skipping 10 matching lines...) Expand all
21 .sensors-view input:not(.error-input):enabled:focus, 21 .sensors-view input:not(.error-input):enabled:focus,
22 .sensors-view select:enabled:focus { 22 .sensors-view select:enabled:focus {
23 border-color: rgb(77, 144, 254); 23 border-color: rgb(77, 144, 254);
24 outline: none; 24 outline: none;
25 } 25 }
26 26
27 .sensors-view input, 27 .sensors-view input,
28 .sensors-view select { 28 .sensors-view select {
29 border: 1px solid #bfbfbf; 29 border: 1px solid #bfbfbf;
30 border-radius: 2px; 30 border-radius: 2px;
31 box-sizing: border-box;
32 color: #444;
33 font: inherit;
34 border-width: 1px;
35 text-align: left;
36 } 31 }
37 32
38 .sensors-view input { 33 .sensors-view input {
39 min-height: 2em; 34 min-height: 2em;
40 padding: 3px; 35 padding: 3px;
41 width: 100%; 36 width: 100%;
42 max-width: 100px; 37 max-width: 100px;
43 margin: -5px 10px 0px 0px; 38 margin: -5px 10px 0px 0px;
44 text-align: end; 39 text-align: end;
45 } 40 }
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 316
322 .touch-label select { 317 .touch-label select {
323 margin-left: 10px; 318 margin-left: 10px;
324 } 319 }
325 320
326 .panel-section-separator { 321 .panel-section-separator {
327 height: 2px; 322 height: 2px;
328 margin-bottom: 12px; 323 margin-bottom: 12px;
329 background: #f1f1f1; 324 background: #f1f1f1;
330 } 325 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698