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