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

Unified Diff: chrome/browser/resources/file_manager/js/image_editor/image_editor.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, 5 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
diff --git a/chrome/browser/resources/file_manager/js/image_editor/image_editor.css b/chrome/browser/resources/file_manager/js/image_editor/image_editor.css
index 8936bfd83057dfd314e8fe798c63b8fe12e8a871..4a47f756474d4bc9c3df37724ea42ae2fa3bb5e0 100644
--- a/chrome/browser/resources/file_manager/js/image_editor/image_editor.css
+++ b/chrome/browser/resources/file_manager/js/image_editor/image_editor.css
@@ -4,21 +4,18 @@
* found in the LICENSE file.
*/
+/* Main container div for the editor */
.image-editor {
background: white;
position: absolute;
- left: 2px;
- top: 2px;
- right: 2px;
- bottom: 2px;
- z-index: 100;
+ width: 100%;
+ height: 100%;
}
+/* Editor toolbar */
.toolbar {
width: 100%;
height: 32px;
- border: 1px solid black;
- border-bottom-width: 0;
}
.toolbar button {
@@ -35,14 +32,15 @@
margin-right: 10px;
}
+/* The container div for the main canvas */
.canvas-wrapper {
position: absolute;
width: 100%;
top: 32px;
bottom: 0;
- border: 1px solid black;
}
+/* Scaling controls */
.scale-tool {
position: absolute;
width: 275px;

Powered by Google App Engine
This is Rietveld 408576698