Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(187)

Side by Side Diff: chrome/browser/resources/chromeos/login/oobe_screen_hid_detection.css

Issue 252503002: Base version of HID detection OOBE screen. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Unused variabled removed. Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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-pincode {
48 display: none;
49 }
50
51 #hid-keyboard-tick,
52 #hid-mouse-tick {
53 left: -10px;
54 position: relative;
55 visibility: hidden;
56 }
57
58 .searching {
59 opacity: 0.6
60 }
61
62 .searching #hid-keyboard-label-searching,
63 .searching #hid-mouse-label-searching,
64 .connected #hid-keyboard-label-connected,
65 .connected #hid-mouse-label-connected,
66 .paired #hid-keyboard-label-paired,
67 .paired #hid-mouse-label-paired,
68 .pairing #hid-keyboard-label-pairing,
69 .connected #hid-keyboard-tick,
70 .connected #hid-mouse-tick,
71 .paired #hid-keyboard-tick,
72 .paired #hid-mouse-tick {
73 display: inline;
74 }
75
76 .connected #hid-keyboard-tick,
77 .connected #hid-mouse-tick,
78 .paired #hid-keyboard-tick,
79 .paired #hid-mouse-tick {
80 visibility: visible;
81 }
82
83 .pairing #hid-keyboard-pincode {
84 display: block;
85 margin-left: 40px;
86 padding: 15px 0;
87 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698