OLD | NEW |
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, |
26 .oauth-enroll-state-error #oauth-enroll-step-error, | 27 .oauth-enroll-state-error #oauth-enroll-step-error, |
27 .oauth-enroll-state-success #oauth-enroll-step-success, | 28 .oauth-enroll-state-success #oauth-enroll-step-success, |
28 .oauth-enroll-state-abe-success #oauth-enroll-step-abe-success { | 29 .oauth-enroll-state-abe-success #oauth-enroll-step-abe-success { |
29 display: table; | 30 display: table; |
30 height: 480px; | 31 height: 480px; |
31 margin: 0 auto; | 32 margin: 0 auto; |
32 } | 33 } |
33 | 34 |
34 .oauth-enroll-state-working #oauth-enroll-step-signin, | |
35 .oauth-enroll-state-attribute-prompt-error | 35 .oauth-enroll-state-attribute-prompt-error |
36 #oauth-enroll-step-attribute-prompt-error, | 36 #oauth-enroll-step-attribute-prompt-error, |
37 .oauth-enroll-state-signin #oauth-enroll-step-signin, | 37 .oauth-enroll-state-signin #oauth-enroll-step-signin, |
38 .oauth-enroll-state-attribute-prompt | 38 .oauth-enroll-state-attribute-prompt |
39 #oauth-enroll-step-attribute-prompt { | 39 #oauth-enroll-step-attribute-prompt { |
40 display: block; | 40 display: block; |
41 height: 100%; | 41 height: 100%; |
42 width: 100%; | 42 width: 100%; |
43 } | 43 } |
44 | 44 |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 } | 115 } |
116 | 116 |
117 .oauth-enroll-state-signin #oauth-enroll-navigation, | 117 .oauth-enroll-state-signin #oauth-enroll-navigation, |
118 .oauth-enroll-state-working #oauth-enroll-navigation { | 118 .oauth-enroll-state-working #oauth-enroll-navigation { |
119 color: white; | 119 color: white; |
120 } | 120 } |
121 | 121 |
122 #oauth-enrollment.saml #oauth-enroll-navigation { | 122 #oauth-enrollment.saml #oauth-enroll-navigation { |
123 color: rgba(0, 0, 0, .54); | 123 color: rgba(0, 0, 0, .54); |
124 } | 124 } |
125 | |
OLD | NEW |