OLD | NEW |
1 /* Copyright 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright 2013 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 #oauth-enrollment { | 6 #oauth-enrollment { |
7 min-height: 609px; | 7 min-height: 609px; |
8 padding: 70px 17px 21px; | 8 padding: 70px 17px 21px; |
9 width: 722px; | 9 width: 722px; |
10 } | 10 } |
11 | 11 |
12 #oauth-enroll-step-contents { | 12 #oauth-enroll-step-contents { |
13 color: #666; | 13 color: #666; |
14 display: -webkit-box; | 14 display: -webkit-box; |
15 margin-bottom: 10px; | 15 margin-bottom: 10px; |
16 } | 16 } |
17 | 17 |
18 #oauth-enroll-step-contents > div { | 18 #oauth-enroll-step-contents > div { |
19 display: none; | 19 display: none; |
20 } | 20 } |
21 | 21 |
22 .oauth-enroll-state-working #oauth-enroll-step-working, | 22 .oauth-enroll-state-working #oauth-enroll-step-working, |
23 .oauth-enroll-state-error #oauth-enroll-step-error, | 23 .oauth-enroll-state-error #oauth-enroll-step-error, |
| 24 .oauth-enroll-state-attribute-prompt #oauth-enroll-step-attribute-prompt, |
24 .oauth-enroll-state-success #oauth-enroll-step-success { | 25 .oauth-enroll-state-success #oauth-enroll-step-success { |
25 display: table; | 26 display: table; |
26 height: 480px; | 27 height: 480px; |
27 margin: 0 auto; | 28 margin: 0 auto; |
28 } | 29 } |
29 | 30 |
30 .oauth-enroll-state-signin #oauth-enroll-step-signin { | 31 .oauth-enroll-state-signin #oauth-enroll-step-signin { |
31 display: -webkit-flex; | 32 display: -webkit-flex; |
32 width: 100%; | 33 width: 100%; |
33 } | 34 } |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 display: none; | 119 display: none; |
119 } | 120 } |
120 | 121 |
121 .oauth-enroll-state-signin.mode-manual #oauth-enroll-cancel-button, | 122 .oauth-enroll-state-signin.mode-manual #oauth-enroll-cancel-button, |
122 .oauth-enroll-state-signin.mode-forced #oauth-enroll-back-button, | 123 .oauth-enroll-state-signin.mode-forced #oauth-enroll-back-button, |
123 .oauth-enroll-state-signin.mode-recovery #oauth-enroll-back-button, | 124 .oauth-enroll-state-signin.mode-recovery #oauth-enroll-back-button, |
124 .oauth-enroll-state-working.mode-manual #oauth-enroll-cancel-button, | 125 .oauth-enroll-state-working.mode-manual #oauth-enroll-cancel-button, |
125 .oauth-enroll-state-working.mode-forced #oauth-enroll-back-button, | 126 .oauth-enroll-state-working.mode-forced #oauth-enroll-back-button, |
126 .oauth-enroll-state-working.mode-recovery #oauth-enroll-back-button, | 127 .oauth-enroll-state-working.mode-recovery #oauth-enroll-back-button, |
127 .oauth-enroll-state-error.mode-manual #oauth-enroll-cancel-button, | 128 .oauth-enroll-state-error.mode-manual #oauth-enroll-cancel-button, |
| 129 .oauth-enroll-state-error.mode-manual #oauth-enroll-done-button, |
128 .oauth-enroll-state-error.mode-forced #oauth-enroll-back-button, | 130 .oauth-enroll-state-error.mode-forced #oauth-enroll-back-button, |
129 .oauth-enroll-state-error.mode-recovery #oauth-enroll-back-button, | 131 .oauth-enroll-state-error.mode-recovery #oauth-enroll-back-button, |
| 132 .oauth-enroll-state-attribute-prompt #oauth-enroll-continue-button, |
130 .oauth-enroll-state-success #oauth-enroll-done-button { | 133 .oauth-enroll-state-success #oauth-enroll-done-button { |
131 display: inline; | 134 display: inline; |
132 } | 135 } |
133 | 136 |
134 #oobe.oauth-enrollment #header-oauth-enrollment { | 137 #oobe.oauth-enrollment #header-oauth-enrollment { |
135 display: block; | 138 display: block; |
136 } | 139 } |
137 | 140 |
138 #oauth-saml-notice-container { | 141 #oauth-saml-notice-container { |
139 left: 0; | 142 left: 0; |
(...skipping 21 matching lines...) Expand all Loading... |
161 } | 164 } |
162 | 165 |
163 #oauth-enrollment.saml #oauth-enroll-signin-divider, | 166 #oauth-enrollment.saml #oauth-enroll-signin-divider, |
164 #oauth-enrollment.saml #oauth-enroll-signin-right { | 167 #oauth-enrollment.saml #oauth-enroll-signin-right { |
165 display: none; | 168 display: none; |
166 } | 169 } |
167 | 170 |
168 #oauth-saml-notice-message { | 171 #oauth-saml-notice-message { |
169 margin: 0 auto; | 172 margin: 0 auto; |
170 } | 173 } |
| 174 |
| 175 .oauth-enroll-textbox { |
| 176 display: inline-block; |
| 177 position: relative; |
| 178 top: 10px; |
| 179 vertical-align: top; |
| 180 } |
| 181 |
| 182 .oauth-enroll-textbox.oauth-enroll-attribute-field[type='text'] { |
| 183 border-color: black; |
| 184 display: inline; |
| 185 font-size: 16px; |
| 186 position: relative; |
| 187 width: 250px; |
| 188 } |
| 189 |
| 190 .oauth-enroll-textbox.auth-enroll-attribute-label { |
| 191 display: inline; |
| 192 position: relative; |
| 193 } |
OLD | NEW |