| 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 height: 100%; | 6 height: 100%; |
| 7 } | 7 } |
| 8 | 8 |
| 9 body { | 9 body { |
| 10 display: -webkit-box; | 10 display: -webkit-box; |
| (...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 | 273 |
| 274 #print-preview .button-strip button { | 274 #print-preview .button-strip button { |
| 275 -webkit-margin-start: 4px; | 275 -webkit-margin-start: 4px; |
| 276 display: block; | 276 display: block; |
| 277 } | 277 } |
| 278 | 278 |
| 279 #link-container { | 279 #link-container { |
| 280 -webkit-box-orient: vertical; | 280 -webkit-box-orient: vertical; |
| 281 display: -webkit-box; | 281 display: -webkit-box; |
| 282 } | 282 } |
| 283 |
| 284 #main-container { |
| 285 -webkit-box-flex: 1; |
| 286 -webkit-box-orient: vertical; |
| 287 display: -webkit-box; |
| 288 height: 100%; |
| 289 position: relative; |
| 290 } |
| OLD | NEW |