| 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 } |
| 11 | 11 |
| 12 #gaia-signin:not(.full-width).no-right-panel { | 12 #gaia-signin:not(.full-width).no-right-panel { |
| 13 width: 522px; | 13 width: 522px; |
| 14 } | 14 } |
| 15 | 15 |
| 16 .new-gaia-flow #gaia-signin { | 16 .new-gaia-flow #gaia-signin { |
| 17 height: 528px; | 17 height: 528px; |
| 18 padding: 0 0 0; | 18 padding: 0 0 0; |
| 19 width: 448px; | 19 width: 448px; |
| 20 } | 20 } |
| 21 | 21 |
| 22 .new-gaia-flow .throbber { | 22 .new-gaia-flow .throbber { |
| 23 display: none; | 23 display: none; |
| 24 } | 24 } |
| 25 | 25 |
| 26 throbber-notice { | 26 #inner-container:not(.new-gaia-flow) throbber-notice { |
| 27 display: none; | 27 display: none; |
| 28 } | 28 } |
| 29 | 29 |
| 30 .new-gaia-flow throbber-notice { | |
| 31 display: block; | |
| 32 } | |
| 33 | |
| 34 #gaia-signin.full-width { | 30 #gaia-signin.full-width { |
| 35 padding: 75px 0 0; | 31 padding: 75px 0 0; |
| 36 } | 32 } |
| 37 | 33 |
| 38 .new-gaia-flow #gaia-signin.full-width { | 34 .new-gaia-flow #gaia-signin.full-width { |
| 39 padding-top: 47px; | 35 padding-top: 47px; |
| 40 width: 562px; | 36 width: 562px; |
| 41 } | 37 } |
| 42 | 38 |
| 43 #signin-right { | 39 #signin-right { |
| (...skipping 22 matching lines...) Expand all Loading... |
| 66 } | 62 } |
| 67 | 63 |
| 68 #close-button-item, | 64 #close-button-item, |
| 69 #back-button-item { | 65 #back-button-item { |
| 70 color: white; | 66 color: white; |
| 71 position: absolute; | 67 position: absolute; |
| 72 top: 10px; | 68 top: 10px; |
| 73 z-index: 1; | 69 z-index: 1; |
| 74 } | 70 } |
| 75 | 71 |
| 76 #close-button-item:disabled, | 72 #close-button-item[disabled], |
| 77 #back-button-item:disabled { | 73 #back-button-item[disabled] { |
| 78 color: rgb(127, 127, 127); | 74 color: rgb(127, 127, 127); |
| 79 } | 75 } |
| 80 | 76 |
| 81 #close-button-item { | 77 #close-button-item { |
| 82 right: 10px; | 78 right: 10px; |
| 83 } | 79 } |
| 84 | 80 |
| 85 #back-button-item { | 81 #back-button-item { |
| 86 left: 10px; | 82 left: 10px; |
| 87 } | 83 } |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 } | 277 } |
| 282 | 278 |
| 283 .new-gaia-flow #gaia-signin.whitelist-error .step-contents { | 279 .new-gaia-flow #gaia-signin.whitelist-error .step-contents { |
| 284 visibility: hidden; | 280 visibility: hidden; |
| 285 } | 281 } |
| 286 | 282 |
| 287 .new-gaia-flow #gaia-signin.whitelist-error .step-loading { | 283 .new-gaia-flow #gaia-signin.whitelist-error .step-loading { |
| 288 visibility: hidden; | 284 visibility: hidden; |
| 289 } | 285 } |
| 290 | 286 |
| 291 html /deep/ #forgotPasswordDlg { | |
| 292 position: fixed; | |
| 293 top: 200px; | |
| 294 width: 350px; | |
| 295 } | |
| OLD | NEW |