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 -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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 text-decoration: none; | 44 text-decoration: none; |
45 } | 45 } |
46 | 46 |
47 #signin-frame { | 47 #signin-frame { |
48 background-color: #fefefe; | 48 background-color: #fefefe; |
49 border: 1px solid lightgray; | 49 border: 1px solid lightgray; |
50 height: 100%; | 50 height: 100%; |
51 width: 340px; | 51 width: 340px; |
52 } | 52 } |
53 | 53 |
| 54 html[oobe=new] #signin-frame { |
| 55 background-color: transparent; |
| 56 background-image: -webkit-linear-gradient(top, |
| 57 rgba(255, 255, 255, 0.988281), |
| 58 rgba(255, 255, 255, 0.949219)); |
| 59 } |
| 60 |
54 #gaia-loading { | 61 #gaia-loading { |
55 -webkit-box-align: center; | 62 -webkit-box-align: center; |
56 -webkit-box-pack: center; | 63 -webkit-box-pack: center; |
57 bottom: 0; | 64 bottom: 0; |
58 display: -webkit-box; | 65 display: -webkit-box; |
59 left: 0; | 66 left: 0; |
60 position: absolute; | 67 position: absolute; |
61 right: 0; | 68 right: 0; |
62 top: 0; | 69 top: 0; |
63 } | 70 } |
64 | 71 |
65 #gaia-loading .spinner { | 72 #gaia-loading .spinner { |
66 height: 32px; | 73 height: 32px; |
67 width: 32px; | 74 width: 32px; |
68 } | 75 } |
69 | 76 |
70 /* Position to be aligned with the login box in iframe */ | 77 /* Position to be aligned with the login box in iframe */ |
71 #login-box { | 78 #login-box { |
72 height: 31px; | 79 height: 31px; |
73 position: absolute; | 80 position: absolute; |
74 top: 77px; | 81 top: 77px; |
75 visibility: hidden; | 82 visibility: hidden; |
76 z-index: -1; | 83 z-index: -1; |
77 } | 84 } |
OLD | NEW |