OLD | NEW |
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2011 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 -webkit-box-align: center; | 7 -webkit-box-align: center; |
8 -webkit-box-pack: center; | 8 -webkit-box-pack: center; |
9 display: -webkit-box; | 9 display: -webkit-box; |
10 height: 470px; | 10 height: 470px; |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 #gaia-loading { | 54 #gaia-loading { |
55 -webkit-box-align: center; | 55 -webkit-box-align: center; |
56 -webkit-box-pack: center; | 56 -webkit-box-pack: center; |
57 bottom: 0; | 57 bottom: 0; |
58 display: -webkit-box; | 58 display: -webkit-box; |
59 left: 0; | 59 left: 0; |
60 position: absolute; | 60 position: absolute; |
61 right: 0; | 61 right: 0; |
62 top: 0; | 62 top: 0; |
63 } | 63 } |
| 64 |
| 65 /* Position to be aligned with the login box in iframe */ |
| 66 #login-box { |
| 67 position: absolute; |
| 68 top: 77px; |
| 69 visibility: hidden; |
| 70 width: 32px; |
| 71 z-index: -1; |
| 72 } |
OLD | NEW |