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

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

Issue 63673004: [Files.app] Make the file-type dropbox at the bottom hidden by default (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/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
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 373 matching lines...) Expand 10 before | Expand all | Expand 10 after
384 tabindex="5"></button> 384 tabindex="5"></button>
385 <button id="delete-button" command="#delete" tabindex="6" 385 <button id="delete-button" command="#delete" tabindex="6"
386 i18n-values="aria-label:DELETE_BUTTON_LABEL"></button> 386 i18n-values="aria-label:DELETE_BUTTON_LABEL"></button>
387 </div> 387 </div>
388 <div class="preparing-label" i18n-content="PREPARING_LABEL"></div> 388 <div class="preparing-label" i18n-content="PREPARING_LABEL"></div>
389 <div class="progress-bar"> 389 <div class="progress-bar">
390 <div class="progress-track"></div> 390 <div class="progress-track"></div>
391 </div> 391 </div>
392 <div class="right buttonbar" id="open-panel" 392 <div class="right buttonbar" id="open-panel"
393 visibleif="open-file open-multi-file"> 393 visibleif="open-file open-multi-file">
394 <select class="file-type"></select> 394 <select class="file-type" hidden></select>
395 <button class="ok" disabled tabindex="7"></button> 395 <button class="ok" disabled tabindex="7"></button>
396 <button class="cancel" i18n-content="CANCEL_LABEL" tabindex="8"></ button> 396 <button class="cancel" i18n-content="CANCEL_LABEL" tabindex="8"></ button>
397 </div> 397 </div>
398 </div> 398 </div>
399 <div id="unmounted-panel"></div> 399 <div id="unmounted-panel"></div>
400 <div id="format-panel"> 400 <div id="format-panel">
401 <div class="error"></div> 401 <div class="error"></div>
402 <button id="format-button" command="#format"></button> 402 <button id="format-button" command="#format"></button>
403 </div> 403 </div>
404 </div> 404 </div>
405 </div> 405 </div>
406 </div> 406 </div>
407 <div class="dialog-footer progressable" tabindex="-1" 407 <div class="dialog-footer progressable" tabindex="-1"
408 visibleif="saveas-file folder"> 408 visibleif="saveas-file folder">
409 <div class="left"> 409 <div class="left">
410 <button id="new-folder-button" i18n-content="NEW_FOLDER_BUTTON_LABEL" 410 <button id="new-folder-button" i18n-content="NEW_FOLDER_BUTTON_LABEL"
411 visibleif="saveas-file folder" command="#new-folder" 411 visibleif="saveas-file folder" command="#new-folder"
412 tabindex="9"> 412 tabindex="9">
413 </button> 413 </button>
414 <div id="filename-input-box"> 414 <div id="filename-input-box">
415 <div class="filename-label" i18n-content="FILENAME_LABEL"></div> 415 <div class="filename-label" i18n-content="FILENAME_LABEL"></div>
416 <input type="text" spellcheck="false" tabindex="10"> 416 <input type="text" spellcheck="false" tabindex="10">
417 </div> 417 </div>
418 <div class="preparing-label" i18n-content="PREPARING_LABEL"></div> 418 <div class="preparing-label" i18n-content="PREPARING_LABEL"></div>
419 <div class="progress-bar"> 419 <div class="progress-bar">
420 <div class="progress-track"></div> 420 <div class="progress-track"></div>
421 </div> 421 </div>
422 </div> 422 </div>
423 <div class="right buttonbar"> 423 <div class="right buttonbar">
424 <select class="file-type"></select> 424 <select class="file-type" hidden></select>
425 <button class="ok" disabled tabindex="11"></button> 425 <button class="ok" disabled tabindex="11"></button>
426 <button class="cancel" i18n-content="CANCEL_LABEL" tabindex="12"></butto n> 426 <button class="cancel" i18n-content="CANCEL_LABEL" tabindex="12"></butto n>
427 </div> 427 </div>
428 </div> 428 </div>
429 <div id="drag-container"></div> 429 <div id="drag-container"></div>
430 <iframe id="command-dispatcher" hidden></iframe> 430 <iframe id="command-dispatcher" hidden></iframe>
431 <div class="overlay-pane" id="iframe-drag-area" hidden></div> 431 <div class="overlay-pane" id="iframe-drag-area" hidden></div>
432 </body> 432 </body>
433 </html> 433 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698