| OLD | NEW |
| 1 /* Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2015 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 .icons { | 5 .icons { |
| 6 display: inline-block; | 6 display: inline-block; |
| 7 text-align: right; | 7 text-align: right; |
| 8 width: 96px; | 8 width: 96px; |
| 9 } | 9 } |
| 10 | 10 |
| 11 .inputs { | 11 .inputs { |
| 12 display: inline-block; | 12 display: inline-block; |
| 13 } | 13 } |
| 14 | 14 |
| 15 .inputs > cr-input { | 15 .inputs > paper-input { |
| 16 border-bottom: 1px solid gray; | 16 border-bottom: 1px solid gray; |
| 17 } | 17 } |
| 18 | 18 |
| 19 .inputs > cr-input:not(:last-child) { | 19 .inputs > paper-input:not(:last-child) { |
| 20 border-right: 1px solid gray; | 20 border-right: 1px solid gray; |
| 21 } | 21 } |
| 22 | 22 |
| 23 .narrow-input { | 23 .narrow-input { |
| 24 width: 140px; | 24 width: 140px; |
| 25 } | 25 } |
| 26 | 26 |
| 27 .wide-input { | 27 .wide-input { |
| 28 width: 300px; | 28 width: 300px; |
| 29 } | 29 } |
| OLD | NEW |