| OLD | NEW |
| 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 } |
| 11 | 11 |
| 12 .sensors-view label { | 12 .sensors-view label { |
| 13 margin-bottom: 10px; | 13 margin-bottom: 10px; |
| 14 } | 14 } |
| 15 | 15 |
| 16 .sensors-view input { | 16 .sensors-view input { |
| 17 text-align: right; | |
| 18 width: 80px; | |
| 19 } | |
| 20 | |
| 21 .sensors-view input:not(.error-input):enabled:focus, | |
| 22 .sensors-view select:enabled:focus { | |
| 23 border-color: rgb(77, 144, 254); | |
| 24 outline: none; | |
| 25 } | |
| 26 | |
| 27 .sensors-view input, | |
| 28 .sensors-view select { | |
| 29 border: 1px solid #bfbfbf; | |
| 30 border-radius: 2px; | |
| 31 } | |
| 32 | |
| 33 .sensors-view input { | |
| 34 min-height: 2em; | |
| 35 padding: 3px; | |
| 36 width: 100%; | 17 width: 100%; |
| 37 max-width: 100px; | 18 max-width: 100px; |
| 38 margin: -5px 10px 0px 0px; | 19 margin: -5px 10px 0px 0px; |
| 39 text-align: end; | 20 text-align: end; |
| 40 } | 21 } |
| 41 | 22 |
| 42 .sensors-view input[readonly] { | 23 .sensors-view input[readonly] { |
| 43 background-color: rgb(235, 235, 228); | 24 background-color: rgb(235, 235, 228); |
| 44 } | 25 } |
| 45 | 26 |
| (...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 316 | 297 |
| 317 .touch-label select { | 298 .touch-label select { |
| 318 margin-left: 10px; | 299 margin-left: 10px; |
| 319 } | 300 } |
| 320 | 301 |
| 321 .panel-section-separator { | 302 .panel-section-separator { |
| 322 height: 2px; | 303 height: 2px; |
| 323 margin-bottom: 12px; | 304 margin-bottom: 12px; |
| 324 background: #f1f1f1; | 305 background: #f1f1f1; |
| 325 } | 306 } |
| OLD | NEW |