Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(647)

Side by Side Diff: chrome/browser/resources/file_manager/css/file_manager.css

Issue 7453045: Moved ChromeOS Image Editor into an iframe. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/component_extension_resources.grd ('k') | chrome/browser/resources/file_manager/js/file_manager.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698