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

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

Issue 2343183003: Show a spinner UI for zero-touch enrollment (Closed)
Patch Set: Created 4 years, 3 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
OLDNEW
1 /* Copyright 2015 The Chromium Authors. All rights reserved. 1 /* Copyright 2015 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 #oauth-enrollment { 5 #oauth-enrollment {
6 height: 528px; 6 height: 528px;
7 padding: 0; 7 padding: 0;
8 width: 448px; 8 width: 448px;
9 } 9 }
10 10
11 #oauth-enrollment.saml { 11 #oauth-enrollment.saml {
12 padding-top: 44px; 12 padding-top: 44px;
13 width: 562px; 13 width: 562px;
14 } 14 }
15 15
16 #oauth-enroll-step-contents { 16 #oauth-enroll-step-contents {
17 color: #666; 17 color: #666;
18 height: 100%; 18 height: 100%;
19 width: 100%; 19 width: 100%;
20 } 20 }
21 21
22 #oauth-enroll-step-contents > div { 22 #oauth-enroll-step-contents > div {
23 display: none; 23 display: none;
24 } 24 }
25 25
26 .oauth-enroll-state-working #oauth-enroll-step-working {
xiyuan 2016/09/16 19:45:15 Can we add class="fit" to the throbber-notice and
kumarniranjan 2016/09/16 20:53:40 Done.
27 display: block;
28 height: 50%;
29 margin-top: 50%;
30 width: 100%;
31 }
32
26 .oauth-enroll-state-error #oauth-enroll-step-error, 33 .oauth-enroll-state-error #oauth-enroll-step-error,
27 .oauth-enroll-state-success #oauth-enroll-step-success, 34 .oauth-enroll-state-success #oauth-enroll-step-success,
28 .oauth-enroll-state-abe-success #oauth-enroll-step-abe-success { 35 .oauth-enroll-state-abe-success #oauth-enroll-step-abe-success {
29 display: table; 36 display: table;
30 height: 480px; 37 height: 480px;
31 margin: 0 auto; 38 margin: 0 auto;
32 } 39 }
33 40
34 .oauth-enroll-state-working #oauth-enroll-step-signin,
35 .oauth-enroll-state-attribute-prompt-error 41 .oauth-enroll-state-attribute-prompt-error
36 #oauth-enroll-step-attribute-prompt-error, 42 #oauth-enroll-step-attribute-prompt-error,
37 .oauth-enroll-state-signin #oauth-enroll-step-signin, 43 .oauth-enroll-state-signin #oauth-enroll-step-signin,
38 .oauth-enroll-state-attribute-prompt 44 .oauth-enroll-state-attribute-prompt
39 #oauth-enroll-step-attribute-prompt { 45 #oauth-enroll-step-attribute-prompt {
40 display: block; 46 display: block;
41 height: 100%; 47 height: 100%;
42 width: 100%; 48 width: 100%;
43 } 49 }
44 50
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 } 121 }
116 122
117 .oauth-enroll-state-signin #oauth-enroll-navigation, 123 .oauth-enroll-state-signin #oauth-enroll-navigation,
118 .oauth-enroll-state-working #oauth-enroll-navigation { 124 .oauth-enroll-state-working #oauth-enroll-navigation {
119 color: white; 125 color: white;
120 } 126 }
121 127
122 #oauth-enrollment.saml #oauth-enroll-navigation { 128 #oauth-enrollment.saml #oauth-enroll-navigation {
123 color: rgba(0, 0, 0, .54); 129 color: rgba(0, 0, 0, .54);
124 } 130 }
125
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698