| OLD | NEW |
| 1 /* Copyright 2016 The Chromium Authors. All rights reserved. | 1 /* Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. | 3 * found in the LICENSE file. |
| 4 */ | 4 */ |
| 5 | 5 |
| 6 :root { | 6 :root { |
| 7 --expandable-list-item-border: 1px solid gray; | 7 --expandable-list-item-border: 1px solid gray; |
| 8 --fade-duration: 225ms; | 8 --fade-duration: 225ms; |
| 9 --header-height: 48px; | 9 --header-height: 48px; |
| 10 --md-timing-function: cubic-bezier(.4, 0, .6, 1); | 10 --md-timing-function: cubic-bezier(.4, 0, .6, 1); |
| (...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 392 .flex { | 392 .flex { |
| 393 display: flex; | 393 display: flex; |
| 394 } | 394 } |
| 395 } | 395 } |
| 396 | 396 |
| 397 /* Device Details Page */ | 397 /* Device Details Page */ |
| 398 .device-details-page section, | 398 .device-details-page section, |
| 399 .info-container fieldset { | 399 .info-container fieldset { |
| 400 -webkit-margin-start: 1em; | 400 -webkit-margin-start: 1em; |
| 401 } | 401 } |
| 402 |
| 403 /* Value Control */ |
| 404 .value-control > div { |
| 405 display: flex; |
| 406 margin: 4px 0; |
| 407 } |
| 408 |
| 409 .value-control > div > input { |
| 410 flex-grow: 1; |
| 411 } |
| 412 |
| 413 .value-control > div:nth-of-type(2) { |
| 414 justify-content: flex-end; |
| 415 } |
| OLD | NEW |