| OLD | NEW |
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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 .bluetooth-device-list { | 5 .bluetooth-device-list { |
| 6 margin: 10px; | 6 margin: 10px; |
| 7 padding: 5px 10px; | 7 padding: 5px 10px; |
| 8 } | 8 } |
| 9 | 9 |
| 10 .bluetooth-device[paired] { | 10 .bluetooth-device[paired] { |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 } | 67 } |
| 68 | 68 |
| 69 /* Force the message to be vertical centered so that a shorter message does not | 69 /* Force the message to be vertical centered so that a shorter message does not |
| 70 look out of place when there is room for a much longer message. */ | 70 look out of place when there is room for a much longer message. */ |
| 71 #bluetooth-pairing-message-contents { | 71 #bluetooth-pairing-message-contents { |
| 72 display: table-cell; | 72 display: table-cell; |
| 73 vertical-align: middle; | 73 vertical-align: middle; |
| 74 } | 74 } |
| 75 | 75 |
| 76 #bluetooth-pairing-instructions, | 76 #bluetooth-pairing-instructions, |
| 77 #bluetooth-passkey { | 77 #bluetooth-pairing-passkey-display, |
| 78 margin: 10px; | 78 #bluetooth-pairing-passkey-entry, |
| 79 #bluetooth-pairing-pincode-entry, |
| 80 #bluetooth-passkey, |
| 81 #bluetooth-pincode { |
| 79 text-align: center; | 82 text-align: center; |
| 80 } | 83 } |
| 81 | 84 |
| 85 #bluetooth-pairing-instructions { |
| 86 margin: 10px; |
| 87 } |
| 88 |
| 82 #bluetooth-pairing-passkey-display, | 89 #bluetooth-pairing-passkey-display, |
| 83 #bluetooth-pairing-passkey-entry { | 90 #bluetooth-pairing-passkey-entry, |
| 91 #bluetooth-pairing-pincode-entry { |
| 84 margin: 40px 0; | 92 margin: 40px 0; |
| 85 text-align: center; | |
| 86 } | 93 } |
| 87 | 94 |
| 88 .bluetooth-keyboard-button { | 95 .bluetooth-keyboard-button { |
| 89 -webkit-padding-end: 15px; | 96 -webkit-padding-end: 15px; |
| 90 -webkit-padding-start: 15px; | 97 -webkit-padding-start: 15px; |
| 91 background-image: -webkit-gradient(linear, | 98 background-image: -webkit-gradient(linear, |
| 92 left top, | 99 left top, |
| 93 left bottom, | 100 left bottom, |
| 94 color-stop(0, #e9e9e9), | 101 color-stop(0, #e9e9e9), |
| 95 color-stop(1, #f5f5f5)); | 102 color-stop(1, #f5f5f5)); |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 border: 1px solid #ccc; | 142 border: 1px solid #ccc; |
| 136 box-shadow: 0 0 0 1px #888, | 143 box-shadow: 0 0 0 1px #888, |
| 137 inset 0 1px 1px 1px #fff, | 144 inset 0 1px 1px 1px #fff, |
| 138 inset 0 -1px 1px 1px #eee; | 145 inset 0 -1px 1px 1px #eee; |
| 139 color: #222; | 146 color: #222; |
| 140 } | 147 } |
| 141 | 148 |
| 142 .bluetooth-keyboard-button.key-pin { | 149 .bluetooth-keyboard-button.key-pin { |
| 143 color: #222; | 150 color: #222; |
| 144 } | 151 } |
| OLD | NEW |