| 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 html { | 5 html { |
| 6 /* It's necessary to put this here instead of in body in order to get the | 6 /* It's necessary to put this here instead of in body in order to get the |
| 7 background-size of 100% to work properly */ | 7 background-size of 100% to work properly */ |
| 8 height: 100%; | 8 height: 100%; |
| 9 overflow: hidden; | 9 overflow: hidden; |
| 10 } | 10 } |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 display: -webkit-box; | 178 display: -webkit-box; |
| 179 height: 49px; | 179 height: 49px; |
| 180 } | 180 } |
| 181 | 181 |
| 182 #footer-content > * { | 182 #footer-content > * { |
| 183 margin: 0 9px; | 183 margin: 0 9px; |
| 184 } | 184 } |
| 185 | 185 |
| 186 #logo-img { | 186 #logo-img { |
| 187 margin-top: 4px; | 187 margin-top: 4px; |
| 188 |
| 189 /* TODO: Remove once http://crbug.com/135179 is fixed */ |
| 190 content: url('chrome://theme/IDR_PRODUCT_LOGO'); |
| 188 } | 191 } |
| 189 | 192 |
| 190 body.bare-minimum #footer { | 193 body.bare-minimum #footer { |
| 191 background: transparent; | 194 background: transparent; |
| 192 bottom: auto; | 195 bottom: auto; |
| 193 font-weight: normal; | 196 font-weight: normal; |
| 194 position: absolute; | 197 position: absolute; |
| 195 right: 0; | 198 right: 0; |
| 196 } | 199 } |
| 197 | 200 |
| (...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 438 padding: 0; | 441 padding: 0; |
| 439 } | 442 } |
| 440 | 443 |
| 441 .other-sessions-promo-message:only-child { | 444 .other-sessions-promo-message:only-child { |
| 442 display: block; | 445 display: block; |
| 443 } | 446 } |
| 444 | 447 |
| 445 .other-sessions-promo-message p { | 448 .other-sessions-promo-message p { |
| 446 margin: 0; | 449 margin: 0; |
| 447 } | 450 } |
| OLD | NEW |