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

Side by Side Diff: chrome/browser/resources/file_manager/main.html

Issue 7764011: File Manager: Assorted fixes and polish (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <!-- 2 <!--
3 -- Copyright (c) 2011 The Chromium Authors. All rights reserved. 3 -- Copyright (c) 2011 The Chromium Authors. All rights reserved.
4 -- Use of this source code is governed by a BSD-style license that can be 4 -- Use of this source code is governed by a BSD-style license that can be
5 -- found in the LICENSE file. 5 -- found in the LICENSE file.
6 --> 6 -->
7 <html> 7 <html>
8 <head> 8 <head>
9 <script> 9 <script>
10 // Resources from shared locations are loaded dynamically, so we can 10 // Resources from shared locations are loaded dynamically, so we can
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 <div></div> 131 <div></div>
132 </div> 132 </div>
133 </div> 133 </div>
134 <div class=preview-container> 134 <div class=preview-container>
135 <div class=table-header style='width:100%'> 135 <div class=table-header style='width:100%'>
136 <div class=table-header-cell> 136 <div class=table-header-cell>
137 <div class='preview-label table-header-label' 137 <div class='preview-label table-header-label'
138 i18n-content=PREVIEW_COLUMN_LABEL>[PREVIEW]</div> 138 i18n-content=PREVIEW_COLUMN_LABEL>[PREVIEW]</div>
139 </div> 139 </div>
140 </div> 140 </div>
141 <center><img class=preview-img></center>
zel 2011/08/27 00:09:41 we should center in CSS instead
141 <div class=preview-filename></div> 142 <div class=preview-filename></div>
142 <center><img class=preview-img></center>
143 <div class="preview-metadata"> 143 <div class="preview-metadata">
144 <table class="preview-metadata-table"> 144 <table class="preview-metadata-table">
145 </table> 145 </table>
146 </div> 146 </div>
147 <div class=vertical-spacer></div> 147 <div class=vertical-spacer></div>
148 <div class=task-buttons></div> 148 <div class=task-buttons></div>
149 <div class=clipboard-status> 149 <div class=clipboard-status>
150 <div class=clipboard-buttons> 150 <div class=clipboard-buttons>
151 <button class='clipboard-copy' command='#copy' 151 <button class='clipboard-copy' command='#copy'
152 onclick='fileManager.copySelectionToClipboard()' 152 onclick='fileManager.copySelectionToClipboard()'
(...skipping 21 matching lines...) Expand all
174 visibleif='this.dialogType_ == "saveas-file"'> 174 visibleif='this.dialogType_ == "saveas-file"'>
175 <div class=horizontal-spacer></div> 175 <div class=horizontal-spacer></div>
176 <button class=ok disabled tabindex=2>[OK]</button> 176 <button class=ok disabled tabindex=2>[OK]</button>
177 <button class=cancel tabindex=3 i18n-content=CANCEL_LABEL 177 <button class=cancel tabindex=3 i18n-content=CANCEL_LABEL
178 >[CANCEL]</button> 178 >[CANCEL]</button>
179 </div> 179 </div>
180 180
181 <script>init();</script> 181 <script>init();</script>
182 </body> 182 </body>
183 </html> 183 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698