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

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

Issue 79683004: Merge 234982 "[Files.app] Make the file-type dropbox at the bott..." (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1700/src/
Patch Set: Created 7 years, 1 month 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
« no previous file with comments | « chrome/browser/resources/file_manager/foreground/js/file_manager.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <!-- 2 <!--
3 -- Copyright (c) 2012 The Chromium Authors. All rights reserved. 3 -- Copyright (c) 2012 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 i18n-values="dir:textdirection;"> 7 <html i18n-values="dir:textdirection;">
8 <head> 8 <head>
9 <!-- We have to set some default title, or chrome will use the page name. 9 <!-- We have to set some default title, or chrome will use the page name.
10 -- As soon as we init and change to a directory, we'll show the directory 10 -- As soon as we init and change to a directory, we'll show the directory
(...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after
389 tabindex="5"></button> 389 tabindex="5"></button>
390 <button id="delete-button" command="#delete" tabindex="6" 390 <button id="delete-button" command="#delete" tabindex="6"
391 i18n-values="aria-label:DELETE_BUTTON_LABEL"></button> 391 i18n-values="aria-label:DELETE_BUTTON_LABEL"></button>
392 </div> 392 </div>
393 <div class="preparing-label" i18n-content="PREPARING_LABEL"></div> 393 <div class="preparing-label" i18n-content="PREPARING_LABEL"></div>
394 <div class="progress-bar"> 394 <div class="progress-bar">
395 <div class="progress-track"></div> 395 <div class="progress-track"></div>
396 </div> 396 </div>
397 <div class="right buttonbar" id="open-panel" 397 <div class="right buttonbar" id="open-panel"
398 visibleif="open-file open-multi-file"> 398 visibleif="open-file open-multi-file">
399 <select class="file-type"></select> 399 <select class="file-type" hidden></select>
400 <button class="ok" disabled tabindex="7"></button> 400 <button class="ok" disabled tabindex="7"></button>
401 <button class="cancel" i18n-content="CANCEL_LABEL" tabindex="8"></ button> 401 <button class="cancel" i18n-content="CANCEL_LABEL" tabindex="8"></ button>
402 </div> 402 </div>
403 </div> 403 </div>
404 <div id="unmounted-panel"></div> 404 <div id="unmounted-panel"></div>
405 <div id="format-panel"> 405 <div id="format-panel">
406 <div class="error"></div> 406 <div class="error"></div>
407 <button id="format-button" command="#format"></button> 407 <button id="format-button" command="#format"></button>
408 </div> 408 </div>
409 </div> 409 </div>
410 </div> 410 </div>
411 </div> 411 </div>
412 <div class="dialog-footer progressable" tabindex="-1" 412 <div class="dialog-footer progressable" tabindex="-1"
413 visibleif="saveas-file folder"> 413 visibleif="saveas-file folder">
414 <div class="left"> 414 <div class="left">
415 <button id="new-folder-button" i18n-content="NEW_FOLDER_BUTTON_LABEL" 415 <button id="new-folder-button" i18n-content="NEW_FOLDER_BUTTON_LABEL"
416 visibleif="saveas-file folder" command="#new-folder" 416 visibleif="saveas-file folder" command="#new-folder"
417 tabindex="9"> 417 tabindex="9">
418 </button> 418 </button>
419 <div id="filename-input-box"> 419 <div id="filename-input-box">
420 <div class="filename-label" i18n-content="FILENAME_LABEL"></div> 420 <div class="filename-label" i18n-content="FILENAME_LABEL"></div>
421 <input type="text" spellcheck="false" tabindex="10"> 421 <input type="text" spellcheck="false" tabindex="10">
422 </div> 422 </div>
423 <div class="preparing-label" i18n-content="PREPARING_LABEL"></div> 423 <div class="preparing-label" i18n-content="PREPARING_LABEL"></div>
424 <div class="progress-bar"> 424 <div class="progress-bar">
425 <div class="progress-track"></div> 425 <div class="progress-track"></div>
426 </div> 426 </div>
427 </div> 427 </div>
428 <div class="right buttonbar"> 428 <div class="right buttonbar">
429 <select class="file-type"></select> 429 <select class="file-type" hidden></select>
430 <button class="ok" disabled tabindex="11"></button> 430 <button class="ok" disabled tabindex="11"></button>
431 <button class="cancel" i18n-content="CANCEL_LABEL" tabindex="12"></butto n> 431 <button class="cancel" i18n-content="CANCEL_LABEL" tabindex="12"></butto n>
432 </div> 432 </div>
433 </div> 433 </div>
434 <div id="drag-container"></div> 434 <div id="drag-container"></div>
435 <iframe id="command-dispatcher" hidden></iframe> 435 <iframe id="command-dispatcher" hidden></iframe>
436 <div class="overlay-pane" id="iframe-drag-area" hidden></div> 436 <div class="overlay-pane" id="iframe-drag-area" hidden></div>
437 </body> 437 </body>
438 </html> 438 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/file_manager/foreground/js/file_manager.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698