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 | 5 |
6 #oauth-enrollment { | 6 #oauth-enrollment { |
7 height: 609px; | 7 height: 609px; |
8 padding: 0; | 8 padding: 0; |
9 width: 522px; | 9 width: 522px; |
10 } | 10 } |
11 | 11 |
12 #oauth-enrollment.saml { | 12 #oauth-enrollment.saml { |
13 height: 528px; | 13 height: 528px; |
14 width: 562px; | 14 width: 562px; |
15 } | 15 } |
16 | 16 |
17 #oauth-enroll-step-contents { | 17 #oauth-enroll-step-contents { |
18 color: #666; | 18 color: #666; |
19 height: 100%; | 19 height: 100%; |
20 width: 100%; | 20 width: 100%; |
21 } | 21 } |
22 | 22 |
23 #oauth-enroll-step-contents > div { | 23 #oauth-enroll-step-contents > div { |
24 display: none; | 24 display: none; |
25 } | 25 } |
26 | 26 |
27 .oauth-enroll-state-working #oauth-enroll-step-working, | 27 .oauth-enroll-state-working #oauth-enroll-step-working, |
28 .oauth-enroll-state-error #oauth-enroll-step-error, | 28 .oauth-enroll-state-error #oauth-enroll-step-error, |
| 29 .oauth-enroll-state-attribute-prompt #oauth-enroll-step-attribute-prompt, |
29 .oauth-enroll-state-success #oauth-enroll-step-success { | 30 .oauth-enroll-state-success #oauth-enroll-step-success { |
30 display: table; | 31 display: table; |
31 height: 480px; | 32 height: 480px; |
32 margin: 0 auto; | 33 margin: 0 auto; |
33 } | 34 } |
34 | 35 |
35 .oauth-enroll-state-signin #oauth-enroll-step-signin { | 36 .oauth-enroll-state-signin #oauth-enroll-step-signin { |
36 display: block; | 37 display: block; |
37 height: 100%; | 38 height: 100%; |
38 width: 100%; | 39 width: 100%; |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 | 90 |
90 .oauth-enroll-button { | 91 .oauth-enroll-button { |
91 display: none; | 92 display: none; |
92 } | 93 } |
93 | 94 |
94 .oauth-enroll-state-signin.mode-manual #oauth-enroll-cancel-button, | 95 .oauth-enroll-state-signin.mode-manual #oauth-enroll-cancel-button, |
95 .oauth-enroll-state-signin #oauth-enroll-back-button, | 96 .oauth-enroll-state-signin #oauth-enroll-back-button, |
96 .oauth-enroll-state-working.mode-manual #oauth-enroll-cancel-button, | 97 .oauth-enroll-state-working.mode-manual #oauth-enroll-cancel-button, |
97 .oauth-enroll-state-working #oauth-enroll-back-button, | 98 .oauth-enroll-state-working #oauth-enroll-back-button, |
98 .oauth-enroll-state-error.mode-manual #oauth-enroll-cancel-button, | 99 .oauth-enroll-state-error.mode-manual #oauth-enroll-cancel-button, |
| 100 .oauth-enroll-state-error.mode-manual #oauth-enroll-done-button, |
99 .oauth-enroll-state-error #oauth-enroll-back-button, | 101 .oauth-enroll-state-error #oauth-enroll-back-button, |
| 102 .oauth-enroll-state-attribute-prompt #oauth-enroll-continue-button, |
100 .oauth-enroll-state-success #oauth-enroll-done-button { | 103 .oauth-enroll-state-success #oauth-enroll-done-button { |
101 display: inline; | 104 display: inline; |
102 } | 105 } |
103 | 106 |
104 #oobe.oauth-enrollment #header-oauth-enrollment { | 107 #oobe.oauth-enrollment #header-oauth-enrollment { |
105 display: block; | 108 display: block; |
106 } | 109 } |
107 | 110 |
108 #oauth-saml-notice-container { | 111 #oauth-saml-notice-container { |
109 -webkit-margin-start: 19px; | 112 -webkit-margin-start: 19px; |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 | 173 |
171 html[dir=rtl] #oauth-enroll-back-button { | 174 html[dir=rtl] #oauth-enroll-back-button { |
172 -webkit-transform: scaleX(-1); | 175 -webkit-transform: scaleX(-1); |
173 left: auto; | 176 left: auto; |
174 right: 14px; | 177 right: 14px; |
175 } | 178 } |
176 | 179 |
177 #oauth-enrollment.saml #oauth-enroll-back-button { | 180 #oauth-enrollment.saml #oauth-enroll-back-button { |
178 display: none; | 181 display: none; |
179 } | 182 } |
| 183 |
| 184 .oauth-enroll-textbox { |
| 185 display: inline-block; |
| 186 position: relative; |
| 187 top: 10px; |
| 188 vertical-align: top; |
| 189 } |
| 190 |
| 191 .oauth-enroll-textbox.oauth-enroll-attribute-field[type='text'] { |
| 192 border-color: black; |
| 193 font-size: 16px; |
| 194 position: relative; |
| 195 width: 250px; |
| 196 } |
| 197 |
| 198 .oauth-enroll-textbox.auth-enroll-attribute-label { |
| 199 display: inline; |
| 200 position: relative; |
| 201 } |
OLD | NEW |