OLD | NEW |
(Empty) | |
| 1 /* Copyright 2016 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 #continue-button-text { |
| 6 text-transform: none; |
| 7 } |
| 8 |
| 9 #keyboard-icon, |
| 10 #mouse-icon { |
| 11 height: 40px; |
| 12 width: 40px; |
| 13 } |
| 14 |
| 15 #keyboard-tick, |
| 16 #mouse-tick { |
| 17 -webkit-margin-start: -28px; |
| 18 position: relative; |
| 19 top: 4px; /* icon is 40x40, tick is 32x32, 4 = (40-32)/2 */ |
| 20 } |
| 21 |
| 22 #hid-keyboard-pincode { |
| 23 padding-bottom: 4px; |
| 24 }; |
| 25 |
| 26 #hid-continue-button { |
| 27 -webkit-padding-end: 18px; |
| 28 } |
| 29 |
| 30 .bottom-buttons { |
| 31 padding: 0 6px; /* = 8px - 2px back button border */ |
| 32 } |
| 33 |
| 34 .hid-selection-entry { |
| 35 border-top: 1px solid lightgrey; |
| 36 min-height: 44px; |
| 37 padding: 0 20px; |
| 38 } |
| 39 |
| 40 .hid-selection-entry:last-of-type { |
| 41 border-bottom: 1px solid lightgrey; |
| 42 } |
OLD | NEW |