| OLD | NEW |
| (Empty) |
| 1 /* Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 * Use of this source code is governed by a BSD-style license that can be | |
| 3 * found in the LICENSE file. */ | |
| 4 | |
| 5 iron-icon { | |
| 6 -webkit-margin-end: 5px; | |
| 7 -webkit-margin-start: -3px; | |
| 8 } | |
| 9 | |
| 10 paper-button { | |
| 11 margin: 0; | |
| 12 } | |
| 13 | |
| 14 span { | |
| 15 -webkit-margin-end: 10px; | |
| 16 } | |
| 17 | |
| 18 #lockedDiv span { | |
| 19 color: red; | |
| 20 font-weight: 500; | |
| 21 } | |
| 22 | |
| 23 #lockedDiv paper-input { | |
| 24 -webkit-margin-start: 10px; | |
| 25 width: 80px; | |
| 26 } | |
| 27 | |
| 28 #unlockSimDialog paper-input { | |
| 29 -webkit-margin-start: 5px; | |
| 30 } | |
| 31 | |
| 32 #unlockSimDialog span { | |
| 33 -webkit-margin-start: 5px; | |
| 34 } | |
| 35 | |
| 36 .pin { | |
| 37 min-width: 100px; | |
| 38 } | |
| 39 | |
| 40 .puk { | |
| 41 min-width: 200px; | |
| 42 } | |
| 43 | |
| 44 .error { | |
| 45 color: red; | |
| 46 max-width: 400px; | |
| 47 } | |
| OLD | NEW |