| 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 #dialogOuterDiv { | |
| 6 margin-bottom: 16px; | |
| 7 } | |
| 8 | |
| 9 #dialogHeaderDiv { | |
| 10 height: 40px; | |
| 11 margin: 0 5px 10px; | |
| 12 } | |
| 13 | |
| 14 #dialogFooterDiv { | |
| 15 height: 40px; | |
| 16 margin: 0 20px; | |
| 17 } | |
| 18 | |
| 19 #dialogMessage { | |
| 20 margin-bottom: 10px; | |
| 21 } | |
| 22 | |
| 23 #dialogTitle { | |
| 24 font-size: 125%; | |
| 25 margin: 0 10px; | |
| 26 } | |
| 27 | |
| 28 #dialogDeviceList { | |
| 29 -webkit-margin-start: 4px; | |
| 30 height: 210px; | |
| 31 margin-bottom: 20px; | |
| 32 overflow-y: auto; | |
| 33 } | |
| 34 | |
| 35 #pairing { | |
| 36 margin-bottom: 10px; | |
| 37 } | |
| 38 | |
| 39 #pairing paper-input { | |
| 40 text-align: center; | |
| 41 } | |
| 42 | |
| 43 #pinDiv { | |
| 44 margin-top: 10px; | |
| 45 } | |
| 46 | |
| 47 iron-selector { | |
| 48 width: 100%; | |
| 49 } | |
| 50 | |
| 51 paper-spinner { | |
| 52 height: 20px; | |
| 53 margin: 0 10px; | |
| 54 width: 20px; | |
| 55 } | |
| 56 | |
| 57 /* .display indicates a displayed pin code or passkey. */ | |
| 58 span.display { | |
| 59 border: 1px solid #ccc; | |
| 60 border-radius: 4px; | |
| 61 box-shadow: 0 0 0 1px #222; | |
| 62 color: #222; | |
| 63 font-size: 16px; | |
| 64 height: 38px; | |
| 65 line-height: 38px; | |
| 66 margin: 0 5px; | |
| 67 padding: 0 15px; | |
| 68 text-align: center; | |
| 69 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); | |
| 70 } | |
| 71 | |
| 72 span.display.next { | |
| 73 background: rgb(77, 144, 254); | |
| 74 border: 2px solid rgb(77, 144, 254); | |
| 75 box-shadow: none; | |
| 76 color: #fff; | |
| 77 } | |
| 78 | |
| 79 span.display.untyped { | |
| 80 border: 1px solid #d4d4d4; | |
| 81 box-shadow: 0 0 0 1px #888; | |
| 82 color: #666; | |
| 83 } | |
| 84 | |
| 85 /* .confirm indicates a confirmation passkey. */ | |
| 86 span.confirm { | |
| 87 color: #999; | |
| 88 font-size: 20px; | |
| 89 font-weight: 600; /* semibold */ | |
| 90 margin: 0 20px; | |
| 91 } | |
| OLD | NEW |