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 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
274 border: 0; | 274 border: 0; |
275 } | 275 } |
276 | 276 |
277 /* Bottom pane describing current selection. */ | 277 /* Bottom pane describing current selection. */ |
278 .preview-panel { | 278 .preview-panel { |
279 -webkit-box-orient: horizontal; | 279 -webkit-box-orient: horizontal; |
280 display: -webkit-box; | 280 display: -webkit-box; |
281 height: 61px; | 281 height: 61px; |
282 background-color: #F0F0F0; | 282 background-color: #F0F0F0; |
283 padding: 0px 14px 0px 14px; | 283 padding: 0px 14px 0px 14px; |
| 284 position: relative; |
| 285 z-index: 3; |
284 | 286 |
285 opacity: 1; | 287 opacity: 1; |
286 -webkit-transform: translate(0, 0); | 288 -webkit-transform: translate(0, 0); |
287 } | 289 } |
288 | 290 |
289 .preview-panel[visibility=hiding] { | 291 .preview-panel[visibility=hiding] { |
290 -webkit-transition: all 220ms ease; | 292 -webkit-transition: all 220ms ease; |
291 -webkit-transform: translate(0, 5px); | 293 -webkit-transform: translate(0, 5px); |
292 opacity: 0; | 294 opacity: 0; |
293 } | 295 } |
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
621 /* Overlay pane covering the entire file manager window (e.g. image editor)*/ | 623 /* Overlay pane covering the entire file manager window (e.g. image editor)*/ |
622 .overlay-pane { | 624 .overlay-pane { |
623 position: absolute; | 625 position: absolute; |
624 top: 0; | 626 top: 0; |
625 left: 0; | 627 left: 0; |
626 width: 100%; | 628 width: 100%; |
627 height: 100%; | 629 height: 100%; |
628 border: none; | 630 border: none; |
629 z-index: 100; | 631 z-index: 100; |
630 } | 632 } |
OLD | NEW |