| 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 .overlay { | 5 #bluetooth-pairing { |
| 6 padding: 0; | |
| 7 } | |
| 8 | |
| 9 .overlay .page { | |
| 10 max-width: 480px; | 6 max-width: 480px; |
| 11 width: 100%; | 7 width: 100%; |
| 12 } | 8 } |
| 13 | 9 |
| 14 .overlay .page h1 { | 10 #bluetooth-pairing h1 { |
| 15 border-bottom: 1px solid #c0c0c0; | 11 border-bottom: 1px solid #c0c0c0; |
| 16 font-size: 15px; | 12 font-size: 15px; |
| 17 } | 13 } |
| 18 | 14 |
| 19 .overlay .page > .close-button { | 15 #bluetooth-pairing > .close-button { |
| 20 padding: 8px 16px; | 16 padding: 8px 16px; |
| 21 } | 17 } |
| 22 | 18 |
| 23 .overlay .page .button-strip button { | 19 #bluetooth-pairing .button-strip button { |
| 24 background-color: rgb(66, 133, 244); | 20 background-color: rgb(66, 133, 244); |
| 25 background-image: none; | 21 background-image: none; |
| 26 border: none; | 22 border: none; |
| 27 color: white; | 23 color: white; |
| 28 font-size: 14px; | 24 font-size: 14px; |
| 29 padding: 8px 20px; | 25 padding: 8px 20px; |
| 30 text-shadow: none; | 26 text-shadow: none; |
| 31 } | 27 } |
| 32 | 28 |
| 33 .bluetooth-device-list { | 29 .bluetooth-device-list { |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 border: 2px solid rgb(77, 144, 254); | 179 border: 2px solid rgb(77, 144, 254); |
| 184 box-shadow: none; | 180 box-shadow: none; |
| 185 color: #fff; | 181 color: #fff; |
| 186 } | 182 } |
| 187 | 183 |
| 188 .bluetooth-keyboard-button.key-untyped { | 184 .bluetooth-keyboard-button.key-untyped { |
| 189 border: 1px solid #d4d4d4; | 185 border: 1px solid #d4d4d4; |
| 190 box-shadow: 0 0 0 1px #888; | 186 box-shadow: 0 0 0 1px #888; |
| 191 color: #666; | 187 color: #666; |
| 192 } | 188 } |
| OLD | NEW |