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 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 /* The cr.ui.Table representing the detailed file list. */ | 265 /* The cr.ui.Table representing the detailed file list. */ |
266 .detail-table { | 266 .detail-table { |
267 position: absolute; | 267 position: absolute; |
268 top: 0; | 268 top: 0; |
269 left: 0; | 269 left: 0; |
270 border: 0; | 270 border: 0; |
271 } | 271 } |
272 | 272 |
273 /* Bottom pane describing current selection. */ | 273 /* Bottom pane describing current selection. */ |
274 .preview-panel { | 274 .preview-panel { |
275 -webkit-border-start: 1px #aaa solid; | |
276 -webkit-box-orient: horizontal; | 275 -webkit-box-orient: horizontal; |
277 display: -webkit-box; | 276 display: -webkit-box; |
278 height: 61px; | 277 height: 61px; |
279 background-color: #F0F0F0; | 278 background-color: #F0F0F0; |
280 padding: 0px 14px 0px 14px; | 279 padding: 0px 14px 0px 14px; |
281 | 280 |
282 opacity: 1; | 281 opacity: 1; |
283 -webkit-transform: translate(0, 0); | 282 -webkit-transform: translate(0, 0); |
284 } | 283 } |
285 | 284 |
(...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
598 /* Overlay pane covering the entire file manager window (e.g. image editor)*/ | 597 /* Overlay pane covering the entire file manager window (e.g. image editor)*/ |
599 .overlay-pane { | 598 .overlay-pane { |
600 position: absolute; | 599 position: absolute; |
601 top: 0; | 600 top: 0; |
602 left: 0; | 601 left: 0; |
603 width: 100%; | 602 width: 100%; |
604 height: 100%; | 603 height: 100%; |
605 border: none; | 604 border: none; |
606 z-index: 100; | 605 z-index: 100; |
607 } | 606 } |
OLD | NEW |