| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2011 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 /* Outer frame of the dialog. */ | 7 /* Outer frame of the dialog. */ |
| 8 body { | 8 body { |
| 9 -webkit-box-flex: 1; | 9 -webkit-box-flex: 1; |
| 10 -webkit-box-orient: vertical; | 10 -webkit-box-orient: vertical; |
| (...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 413 -webkit-box-flex: 1; | 413 -webkit-box-flex: 1; |
| 414 display: -webkit-box; | 414 display: -webkit-box; |
| 415 } | 415 } |
| 416 | 416 |
| 417 /* A vertical spring. */ | 417 /* A vertical spring. */ |
| 418 .vertical-spacer { | 418 .vertical-spacer { |
| 419 -webkit-box-orient: vertical; | 419 -webkit-box-orient: vertical; |
| 420 -webkit-box-flex: 1; | 420 -webkit-box-flex: 1; |
| 421 display: -webkit-box; | 421 display: -webkit-box; |
| 422 } | 422 } |
| 423 |
| 424 /* Overlay pane covering the entire file manager window (e.g. image editor)*/ |
| 425 .overlay-pane { |
| 426 position: absolute; |
| 427 top: 0; |
| 428 left: 0; |
| 429 width: 100%; |
| 430 height: 100%; |
| 431 border: none; |
| 432 z-index: 100; |
| 433 } |
| OLD | NEW |