| OLD | NEW |
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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 #gaia-signin { | 6 #gaia-signin { |
| 7 height: 609px; /* Should be the same as #user-image.loading min-heigth. */ | 7 height: 609px; /* Should be the same as #user-image.loading min-heigth. */ |
| 8 padding: 70px 17px 69px; /* Screen has no controls. */ | 8 padding: 70px 17px 69px; /* Screen has no controls. */ |
| 9 width: 722px; /* Should be the same as #user-image.loading width. */ | 9 width: 722px; /* Should be the same as #user-image.loading width. */ |
| 10 } | 10 } |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 left: 0; | 219 left: 0; |
| 220 position: absolute; | 220 position: absolute; |
| 221 right: 0; | 221 right: 0; |
| 222 text-align: center; | 222 text-align: center; |
| 223 top: 50px; | 223 top: 50px; |
| 224 } | 224 } |
| 225 | 225 |
| 226 #saml-notice-message { | 226 #saml-notice-message { |
| 227 margin: 0 auto; | 227 margin: 0 auto; |
| 228 } | 228 } |
| 229 |
| 230 #gaia-whitelist-error { |
| 231 bottom: 0; |
| 232 display: none; |
| 233 left: 0; |
| 234 position: absolute; |
| 235 right: 0; |
| 236 top: 0; |
| 237 } |
| 238 |
| 239 .new-gaia-flow #gaia-whitelist-error { |
| 240 display: block; |
| 241 visibility: hidden; |
| 242 } |
| 243 |
| 244 .new-gaia-flow .whitelist-error #gaia-whitelist-error { |
| 245 visibility: visible; |
| 246 } |
| 247 |
| 248 .new-gaia-flow #gaia-signin.whitelist-error .step-contents { |
| 249 visibility: hidden; |
| 250 } |
| OLD | NEW |