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 0; | 6 margin: 10px 0; |
7 padding: 5px 10px; | 7 padding: 5px 10px; |
8 } | 8 } |
9 | 9 |
10 .bluetooth-device[notconnectable] { | 10 .bluetooth-device[notconnectable] { |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 #bluetooth-pairing-passkey-entry, | 103 #bluetooth-pairing-passkey-entry, |
104 #bluetooth-pairing-pincode-entry { | 104 #bluetooth-pairing-pincode-entry { |
105 margin: 40px 0; | 105 margin: 40px 0; |
106 } | 106 } |
107 | 107 |
108 .bluetooth-keyboard-button { | 108 .bluetooth-keyboard-button { |
109 -webkit-padding-end: 15px; | 109 -webkit-padding-end: 15px; |
110 -webkit-padding-start: 15px; | 110 -webkit-padding-start: 15px; |
111 border: 1px solid #ccc; | 111 border: 1px solid #ccc; |
112 border-radius: 4px; | 112 border-radius: 4px; |
113 box-shadow: 0 0 0 1px #222, | 113 box-shadow: 0 0 0 1px #222; |
114 inset 0 1px 1px 1px #fff, | |
115 inset 0 -1px 1px 1px #eee; | |
116 color: #222; | 114 color: #222; |
117 display: inline-block; | 115 display: inline-block; |
118 font-size: 16px; | 116 font-size: 16px; |
119 height: 38px; | 117 height: 38px; |
120 line-height: 38px; | 118 line-height: 38px; |
121 margin: 0 10px 0 0; | 119 margin: 0 10px 0 0; |
122 position: relative; | 120 position: relative; |
123 text-align: center; | 121 text-align: center; |
124 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); | 122 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); |
125 vertical-align: baseline; | 123 vertical-align: baseline; |
(...skipping 26 matching lines...) Expand all Loading... |
152 .bluetooth-keyboard-button.key-next { | 150 .bluetooth-keyboard-button.key-next { |
153 background: rgb(77, 144, 254); | 151 background: rgb(77, 144, 254); |
154 background-image: none; | 152 background-image: none; |
155 border: 2px solid rgb(77, 144, 254); | 153 border: 2px solid rgb(77, 144, 254); |
156 box-shadow: none; | 154 box-shadow: none; |
157 color: #fff; | 155 color: #fff; |
158 } | 156 } |
159 | 157 |
160 .bluetooth-keyboard-button.key-untyped { | 158 .bluetooth-keyboard-button.key-untyped { |
161 border: 1px solid #d4d4d4; | 159 border: 1px solid #d4d4d4; |
162 box-shadow: 0 0 0 1px #888, | 160 box-shadow: 0 0 0 1px #888; |
163 inset 0 1px 1px 1px #fff, | |
164 inset 0 -1px 1px 1px #eee; | |
165 color: #666; | 161 color: #666; |
166 } | 162 } |
OLD | NEW |