| 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-enroll-step-contents { | 12 #oauth-enroll-step-contents { |
| 13 color: #666; | 13 color: #666; |
| 14 height: 100%; | 14 height: 100%; |
| 15 margin-bottom: 10px; | 15 margin-bottom: 10px; |
| 16 position: relative; | 16 position: relative; |
| 17 width: 100%; | 17 width: 100%; |
| 18 } | 18 } |
| 19 | 19 |
| 20 #oauth-enroll-step-contents > div { | 20 #oauth-enroll-step-contents > div { |
| 21 display: none; | 21 display: none; |
| 22 } | 22 } |
| 23 | 23 |
| 24 .oauth-enroll-state-working #oauth-enroll-step-working, | 24 .oauth-enroll-state-working #oauth-enroll-step-working, |
| 25 .oauth-enroll-state-error #oauth-enroll-step-error, | 25 .oauth-enroll-state-error #oauth-enroll-step-error, |
| 26 .oauth-enroll-state-attribute-prompt #oauth-enroll-step-attribute-prompt, |
| 26 .oauth-enroll-state-success #oauth-enroll-step-success { | 27 .oauth-enroll-state-success #oauth-enroll-step-success { |
| 27 display: table; | 28 display: table; |
| 28 height: 480px; | 29 height: 480px; |
| 29 margin: 0 auto; | 30 margin: 0 auto; |
| 30 } | 31 } |
| 31 | 32 |
| 32 .oauth-enroll-state-signin #oauth-enroll-step-signin { | 33 .oauth-enroll-state-signin #oauth-enroll-step-signin { |
| 33 display: block; | 34 display: block; |
| 34 height: 100%; | 35 height: 100%; |
| 35 width: 100%; | 36 width: 100%; |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 | 87 |
| 87 .oauth-enroll-button { | 88 .oauth-enroll-button { |
| 88 display: none; | 89 display: none; |
| 89 } | 90 } |
| 90 | 91 |
| 91 .oauth-enroll-state-signin.mode-manual #oauth-enroll-cancel-button, | 92 .oauth-enroll-state-signin.mode-manual #oauth-enroll-cancel-button, |
| 92 .oauth-enroll-state-signin #oauth-enroll-back-button, | 93 .oauth-enroll-state-signin #oauth-enroll-back-button, |
| 93 .oauth-enroll-state-working.mode-manual #oauth-enroll-cancel-button, | 94 .oauth-enroll-state-working.mode-manual #oauth-enroll-cancel-button, |
| 94 .oauth-enroll-state-working #oauth-enroll-back-button, | 95 .oauth-enroll-state-working #oauth-enroll-back-button, |
| 95 .oauth-enroll-state-error.mode-manual #oauth-enroll-cancel-button, | 96 .oauth-enroll-state-error.mode-manual #oauth-enroll-cancel-button, |
| 97 .oauth-enroll-state-error.mode-manual #oauth-enroll-done-button, |
| 96 .oauth-enroll-state-error #oauth-enroll-back-button, | 98 .oauth-enroll-state-error #oauth-enroll-back-button, |
| 99 .oauth-enroll-state-attribute-prompt #oauth-enroll-continue-button, |
| 97 .oauth-enroll-state-success #oauth-enroll-done-button { | 100 .oauth-enroll-state-success #oauth-enroll-done-button { |
| 98 display: inline; | 101 display: inline; |
| 99 } | 102 } |
| 100 | 103 |
| 101 #oobe.oauth-enrollment #header-oauth-enrollment { | 104 #oobe.oauth-enrollment #header-oauth-enrollment { |
| 102 display: block; | 105 display: block; |
| 103 } | 106 } |
| 104 | 107 |
| 105 #oauth-saml-notice-container { | 108 #oauth-saml-notice-container { |
| 106 left: 0; | 109 left: 0; |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 top: 14px; | 163 top: 14px; |
| 161 width: 18px; | 164 width: 18px; |
| 162 z-index: 1; | 165 z-index: 1; |
| 163 } | 166 } |
| 164 | 167 |
| 165 html[dir=rtl] #oauth-enroll-back-button { | 168 html[dir=rtl] #oauth-enroll-back-button { |
| 166 -webkit-transform: scaleX(-1); | 169 -webkit-transform: scaleX(-1); |
| 167 left: auto; | 170 left: auto; |
| 168 right: 14px; | 171 right: 14px; |
| 169 } | 172 } |
| 173 |
| 174 .oauth-enroll-textbox { |
| 175 display: inline; |
| 176 position: relative; |
| 177 top: 10px; |
| 178 vertical-align: top; |
| 179 } |
| 180 |
| 181 .oauth-enroll-textbox.oauth-enroll-attribute-field[type='text'] { |
| 182 border-color: black; |
| 183 font-size: 16px; |
| 184 position: relative; |
| 185 width: 250px; |
| 186 } |
| 187 |
| 188 .oauth-enroll-textbox #auth-enroll-attribute-label { |
| 189 display: inline; |
| 190 position: relative; |
| 191 } |
| OLD | NEW |