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

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

Issue 9114040: Update thumbnail/list view buttons. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Remove hover rules and add comments. Created 8 years, 11 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/images/icon_thumb_view_on.png ('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) 2011 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 <if expr="0"> 9 <if expr="0">
10 <!-- <if ... /if> is removed while flattening HTML. --> 10 <!-- <if ... /if> is removed while flattening HTML. -->
11 <base href=""> 11 <base href="">
12 <script> 12 <script>
13 // Instruction for enabling loading file manager files remotely (speeds up 13 // Instruction for enabling loading file manager files remotely (speeds up
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 >[TITLE]</div> 135 >[TITLE]</div>
136 <div class=dialog-container> 136 <div class=dialog-container>
137 <div class=dialog-sidebar> 137 <div class=dialog-sidebar>
138 <div class=close-sidebar><img src='images/close_sidebar.png'></div> 138 <div class=close-sidebar><img src='images/close_sidebar.png'></div>
139 <list class=roots-list></list> 139 <list class=roots-list></list>
140 </div> 140 </div>
141 <div class=dialog-main> 141 <div class=dialog-main>
142 <div class=dialog-header> 142 <div class=dialog-header>
143 <div class=open-sidebar><img src='images/open_sidebar.png'></div> 143 <div class=open-sidebar><img src='images/open_sidebar.png'></div>
144 <div class=breadcrumbs></div> 144 <div class=breadcrumbs></div>
145 <button class=detail-view tabindex=4 145 <!-- The outter div is a hack to remove margin between buttons. -->
146 ><img src='images/icon-detail-view.png'></button 146 <div><button class="detail-view" tabindex="4" disabled></button></div>
147 ><button class=thumbnail-view tabindex=5 147 <div><button class="thumbnail-view" tabindex="5"></button></div>
148 ><img src='images/icon-thumb-view.png'></button>
149 </div> 148 </div>
150 <div class=dialog-body> 149 <div class=dialog-body>
151 <div class=filelist-panel> 150 <div class=filelist-panel>
152 <div class=list-container> 151 <div class=list-container>
153 <div class=detail-table tabindex=0></div> 152 <div class=detail-table tabindex=0></div>
154 <grid class=thumbnail-grid tabindex=0></grid> 153 <grid class=thumbnail-grid tabindex=0></grid>
155 </div> 154 </div>
156 <div class=downloads-warning hidden> 155 <div class=downloads-warning hidden>
157 <img src=images/warning_icon_square_26x26.png> 156 <img src=images/warning_icon_square_26x26.png>
158 <div></div> 157 <div></div>
(...skipping 25 matching lines...) Expand all
184 visibleif='this.dialogType_ == "saveas-file"'> 183 visibleif='this.dialogType_ == "saveas-file"'>
185 <div class=horizontal-spacer></div> 184 <div class=horizontal-spacer></div>
186 <button class=ok disabled tabindex=2>[OK]</button> 185 <button class=ok disabled tabindex=2>[OK]</button>
187 <button class=cancel tabindex=3 i18n-content=CANCEL_LABEL 186 <button class=cancel tabindex=3 i18n-content=CANCEL_LABEL
188 >[CANCEL]</button> 187 >[CANCEL]</button>
189 </div> 188 </div>
190 189
191 <script>init();</script> 190 <script>init();</script>
192 </body> 191 </body>
193 </html> 192 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/file_manager/images/icon_thumb_view_on.png ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698