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 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
235 left: 0; | 235 left: 0; |
236 position: absolute; | 236 position: absolute; |
237 right: 0; | 237 right: 0; |
238 text-align: center; | 238 text-align: center; |
239 top: 50px; | 239 top: 50px; |
240 } | 240 } |
241 | 241 |
242 #saml-notice-message { | 242 #saml-notice-message { |
243 margin: 0 auto; | 243 margin: 0 auto; |
244 } | 244 } |
| 245 |
| 246 #gaia-whitelist-error { |
| 247 bottom: 0; |
| 248 display: none; |
| 249 left: 0; |
| 250 position: absolute; |
| 251 right: 0; |
| 252 top: 0; |
| 253 } |
| 254 |
| 255 .new-gaia-flow #gaia-whitelist-error { |
| 256 display: block; |
| 257 visibility: hidden; |
| 258 } |
| 259 |
| 260 .new-gaia-flow .whitelist-error #gaia-whitelist-error { |
| 261 visibility: visible; |
| 262 } |
| 263 |
| 264 .new-gaia-flow #gaia-signin.whitelist-error .step-contents { |
| 265 visibility: hidden; |
| 266 } |
| 267 |
| 268 .new-gaia-flow #gaia-signin.whitelist-error .step-loading { |
| 269 visibility: hidden; |
| 270 } |
OLD | NEW |