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 #sync-promo { | 6 #sync-promo { |
7 background-color: #f6f6f6; | 7 background-color: #f6f6f6; |
8 border-bottom: solid 1px #dbdbdb; | 8 border-bottom: solid 1px #dbdbdb; |
9 margin-top: 0px; | 9 margin-top: 0px; |
10 position: fixed; | 10 position: fixed; |
(...skipping 24 matching lines...) Expand all Loading... |
35 } | 35 } |
36 | 36 |
37 #sync-setup-login-summary-title { | 37 #sync-setup-login-summary-title { |
38 font-size: 115%; | 38 font-size: 115%; |
39 font-weight: bold; | 39 font-weight: bold; |
40 } | 40 } |
41 | 41 |
42 #sync-setup-login-left-column { | 42 #sync-setup-login-left-column { |
43 padding: 30px; | 43 padding: 30px; |
44 } | 44 } |
| 45 |
| 46 #sync-promo-login-status { |
| 47 margin-bottom: 20px; |
| 48 padding-right: 4px; |
| 49 padding-top: 4px; |
| 50 width: 100%; |
| 51 } |
| 52 |
| 53 #sync-promo-login-status-cell { |
| 54 display: table-cell; |
| 55 float: right; |
| 56 margin-bottom: 4px; |
| 57 margin-right: 4px; |
| 58 } |
| 59 |
| 60 #sync-promo-login-status-msg { |
| 61 vertical-align: middle; |
| 62 } |
| 63 |
| 64 #login-status-avatar-icon { |
| 65 height: 24px; |
| 66 vertical-align: top; |
| 67 } |
OLD | NEW |