OLD | NEW |
---|---|
1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 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 | 5 |
6 #hid-detection { | 6 #hid-detection { |
7 min-height: 395px; | 7 min-height: 395px; |
8 padding: 70px 17px 21px; | 8 padding: 70px 17px 21px; |
9 width: 622px; | |
9 } | 10 } |
11 | |
12 #hid-detection .step-contents { | |
13 margin: 33px auto 82px; | |
14 width: 475px; | |
15 } | |
16 | |
17 #hid-detection #hid-invitation-text { | |
18 font-size: 16px; | |
19 } | |
20 | |
21 #hid-detection #hid-prerequisite-msg { | |
22 padding: 10px 0 40px; | |
23 } | |
24 | |
25 #hid-keyboard-block, | |
26 #hid-mouse-block { | |
27 padding: 20px, 0; | |
28 } | |
29 | |
30 #hid-keyboard-icon, | |
31 #hid-mouse-icon { | |
32 height: 40px; | |
33 width: 40px; | |
34 } | |
35 | |
36 #hid-mouse-icon-block, | |
37 #hid-keyboard-icon-block { | |
38 display: inline; | |
39 } | |
40 | |
41 #hid-mouse-label, | |
42 #hid-keyboard-label { | |
43 display: inline; | |
44 } | |
45 | |
46 #hid-detection .label, | |
47 #hid-keyboard-tick, | |
48 #hid-mouse-tick, | |
49 #hid-keyboard-pincode { | |
50 display: none; | |
51 } | |
52 | |
53 #hid-keyboard-tick, | |
54 #hid-mouse-tick { | |
55 left: -10px; | |
56 position: relative; | |
57 } | |
58 | |
59 .searching { | |
60 opacity: 0.6 | |
61 } | |
62 | |
63 .searching #hid-keyboard-label-searching, | |
64 .searching #hid-mouse-label-searching, | |
65 .connected #hid-keyboard-label-connected, | |
66 .connected #hid-mouse-label-connected, | |
67 .paired #hid-keyboard-label-paired, | |
68 .paired #hid-mouse-label-paired, | |
69 .pairing #hid-keyboard-label-pairing, | |
70 .connected #hid-keyboard-tick, | |
71 .connected #hid-mouse-tick, | |
72 .paired #hid-keyboard-tick, | |
73 .paired #hid-mouse-tick { | |
74 display: inline; | |
75 } | |
76 | |
77 .pairing #hid-keyboard-pincode { | |
78 display: block; | |
79 margin-left: 40px; | |
80 padding: 15px 0; | |
81 } | |
82 | |
83 /* searching pairing paired connected*/ | |
ygorshenin1
2014/04/24 11:30:24
What's the purpose of this comment?
merkulova
2014/04/24 12:49:46
Left from logging. Removed.
| |
OLD | NEW |