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

Unified Diff: chrome/browser/resources/file_manager/js/image_editor/image_editor.css

Issue 7828044: [filebrowser] First step to image editor. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Removed commented code. Created 9 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/file_manager/js/image_editor/image_editor.css
===================================================================
--- chrome/browser/resources/file_manager/js/image_editor/image_editor.css (revision 100141)
+++ chrome/browser/resources/file_manager/js/image_editor/image_editor.css (working copy)
@@ -6,8 +6,7 @@
/* Main container div for the editor */
.image-editor {
- background: white;
- position: absolute;
+ background: black;
width: 100%;
height: 100%;
}
@@ -15,7 +14,11 @@
/* Editor toolbar */
.toolbar {
width: 100%;
- height: 32px;
+ height: 100%;
+ display: -webkit-box;
+ -webkit-box-orient: horizontal;
+ -webkit-box-align: center;
+ -webkit-box-pack: center;
}
.toolbar button {
@@ -34,10 +37,9 @@
/* The container div for the main canvas */
.canvas-wrapper {
- position: absolute;
width: 100%;
- top: 32px;
- bottom: 0;
+ height: 100%;
+ background: black;
}
/* Scaling controls */

Powered by Google App Engine
This is Rietveld 408576698