Chromium Code Reviews| 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 66 width: 420px; | 66 width: 420px; |
| 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 | |
|
James Hawkins
2012/03/15 17:25:30
nit: Remove extra blank line.
kevers
2012/03/15 17:36:19
Done.
| |
| 76 #bluetooth-pairing-instructions, | 77 #bluetooth-pairing-instructions, |
| 77 #bluetooth-passkey { | 78 #bluetooth-pairing-passkey-display, |
| 78 margin: 10px; | 79 #bluetooth-pairing-passkey-entry, |
| 80 #bluetooth-pairing-pincode-entry, | |
| 81 #bluetooth-passkey, | |
| 82 #bluetooth-pincode { | |
| 79 text-align: center; | 83 text-align: center; |
| 80 } | 84 } |
| 81 | 85 |
| 86 #bluetooth-pairing-instructions { | |
| 87 margin: 10px; | |
| 88 } | |
| 89 | |
| 82 #bluetooth-pairing-passkey-display, | 90 #bluetooth-pairing-passkey-display, |
| 83 #bluetooth-pairing-passkey-entry { | 91 #bluetooth-pairing-passkey-entry, |
| 92 #bluetooth-pairing-pincode-entry { | |
| 84 margin: 40px 0; | 93 margin: 40px 0; |
| 85 text-align: center; | |
| 86 } | 94 } |
| 87 | 95 |
| 88 .bluetooth-keyboard-button { | 96 .bluetooth-keyboard-button { |
| 89 -webkit-padding-end: 15px; | 97 -webkit-padding-end: 15px; |
| 90 -webkit-padding-start: 15px; | 98 -webkit-padding-start: 15px; |
| 91 background-image: -webkit-gradient(linear, | 99 background-image: -webkit-gradient(linear, |
| 92 left top, | 100 left top, |
| 93 left bottom, | 101 left bottom, |
| 94 color-stop(0, #e9e9e9), | 102 color-stop(0, #e9e9e9), |
| 95 color-stop(1, #f5f5f5)); | 103 color-stop(1, #f5f5f5)); |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 135 border: 1px solid #ccc; | 143 border: 1px solid #ccc; |
| 136 box-shadow: 0 0 0 1px #888, | 144 box-shadow: 0 0 0 1px #888, |
| 137 inset 0 1px 1px 1px #fff, | 145 inset 0 1px 1px 1px #fff, |
| 138 inset 0 -1px 1px 1px #eee; | 146 inset 0 -1px 1px 1px #eee; |
| 139 color: #222; | 147 color: #222; |
| 140 } | 148 } |
| 141 | 149 |
| 142 .bluetooth-keyboard-button.key-pin { | 150 .bluetooth-keyboard-button.key-pin { |
| 143 color: #222; | 151 color: #222; |
| 144 } | 152 } |
| OLD | NEW |