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