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 |
deleted file mode 100644 |
index 31c6847602898f4bc680c3fd075b3beb52fe9fd2..0000000000000000000000000000000000000000 |
--- a/chrome/browser/resources/file_manager/js/image_editor/image_editor.css |
+++ /dev/null |
@@ -1,106 +0,0 @@ |
-/* |
- * Copyright (c) 2011 The Chromium Authors. All rights reserved. |
- * Use of this source code is governed by a BSD-style license that can be |
- * found in the LICENSE file. |
- */ |
- |
-/* Main container div for the editor */ |
-.image-editor { |
- background: black; |
- width: 100%; |
- height: 100%; |
-} |
- |
-/* Editor toolbar */ |
-.toolbar { |
- width: 100%; |
- height: 100%; |
- display: -webkit-box; |
- -webkit-box-orient: horizontal; |
- -webkit-box-align: center; |
- -webkit-box-pack: center; |
-} |
- |
-.toolbar button { |
- margin: 3px; |
- height: 26px; |
-} |
- |
-.toolbar input { |
- width: 200px; |
-} |
- |
-.toolbar span { |
- margin-left: 10px; |
- margin-right: 10px; |
-} |
- |
-/* The container div for the main canvas */ |
-.canvas-wrapper { |
- width: 100%; |
- height: 100%; |
- background: black; |
-} |
- |
-/* Scaling controls */ |
-.scale-tool { |
- position: absolute; |
- width: 305px; |
- height: 43px; |
- right: 0; |
- bottom: 0; |
- border: 1px solid black; |
- border-right-width: 0; |
- border-bottom-width: 0; |
- background: white; |
-} |
- |
-.size-div { |
- position: absolute; |
- right: 2px; |
-} |
- |
-.scale-div { |
- position: absolute; |
- width: 100%; |
- top: 18px; |
-} |
- |
-.scale-div button{ |
- position: absolute; |
- width: 23px; |
- height: 23px; |
- top: 1px; |
-} |
- |
-.scale-div .scale-down{ |
- left: 1px; |
-} |
- |
-.scale-div input{ |
- position: absolute; |
- left: 24px; |
- top: 0; |
- width: 150px; |
-} |
- |
-.scale-div span{ |
- position: absolute; |
- left: 180px; |
- top: 2px; |
-} |
- |
-.scale-div .scale-up{ |
- right: 63px; |
-} |
- |
-.scale-div .scale-1to1{ |
- width: 32px; |
- right: 29px; |
-} |
- |
-.scale-div .scale-fit{ |
- width: 26px; |
- right: 1px; |
-} |
- |