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

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

Issue 14167008: Restyled the butter bar in Files.app. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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
« no previous file with comments | « chrome/browser/resources/file_manager/css/file_manager.css ('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 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 <div class=dialog-title invisibleif="full-page"></div> 217 <div class=dialog-title invisibleif="full-page"></div>
218 <div class=dialog-container> 218 <div class=dialog-container>
219 <div class=dialog-sidebar> 219 <div class=dialog-sidebar>
220 <div class=dialog-sidebar-header> 220 <div class=dialog-sidebar-header>
221 <span id="app-name"></span> 221 <span id="app-name"></span>
222 </div> 222 </div>
223 <div class=dialog-sidebar-contents> 223 <div class=dialog-sidebar-contents>
224 <tree id="directory-tree" tabindex="8"></tree> 224 <tree id="directory-tree" tabindex="8"></tree>
225 </div> 225 </div>
226 <div class=dialog-sidebar-footer> 226 <div class=dialog-sidebar-footer>
227 <div id="butter-bar-container">
228 <div id="butter-bar">
229 <div class="content">
230 <div class="butter-message"></div>
231 <div class="progress-bar" hidden>
232 <div class="progress-track"></div>
233 </div>
234 </div>
235 <div class="actions" hidden></div>
236 </div>
237 </div>
227 </div> 238 </div>
228 </div> 239 </div>
229 <div class=sidebar-splitter></div> 240 <div class=sidebar-splitter></div>
230 <div class=dialog-main> 241 <div class=dialog-main>
231 <div class=dialog-header> 242 <div class=dialog-header>
232 <input id="search-box" type="search" tabindex="9" 243 <input id="search-box" type="search" tabindex="9"
233 i18n-values="aria-label:SEARCH_TEXT_LABEL"> 244 i18n-values="aria-label:SEARCH_TEXT_LABEL">
234 <div class="right buttonbar"> 245 <div class="right buttonbar">
235 <button class="menubutton" id="gear-button" tabindex="10" 246 <button class="menubutton" id="gear-button" tabindex="10"
236 menu="#gear-menu" visibleif="full-page"> 247 menu="#gear-menu" visibleif="full-page">
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
298 </div> 309 </div>
299 <div class=horizontal-spacer></div> 310 <div class=horizontal-spacer></div>
300 <select id="file-type"></select> 311 <select id="file-type"></select>
301 <button class=ok disabled tabindex="6"></button> 312 <button class=ok disabled tabindex="6"></button>
302 <div class=preparing-label i18n-content=PREPARING_LABEL></div> 313 <div class=preparing-label i18n-content=PREPARING_LABEL></div>
303 <div class=progress-bar> 314 <div class=progress-bar>
304 <div class=progress-track></div> 315 <div class=progress-track></div>
305 </div> 316 </div>
306 <button class=cancel i18n-content=CANCEL_LABEL tabindex="7"></button> 317 <button class=cancel i18n-content=CANCEL_LABEL tabindex="7"></button>
307 </div> 318 </div>
308 <div id="butter-bar-container">
309 <div id="butter-bar">
310 <div class="content">
311 <div class="butter-message"></div>
312 <div class="progress-bar" hidden>
313 <div class="progress-track"></div>
314 </div>
315 </div>
316 <div class="actions" hidden></div>
317 </div>
318 </div>
319 <div id="drag-container"></div> 319 <div id="drag-container"></div>
320 <iframe id="command-dispatcher" hidden></iframe> 320 <iframe id="command-dispatcher" hidden></iframe>
321 </body> 321 </body>
322 </html> 322 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/file_manager/css/file_manager.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698