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

Side by Side Diff: ui/file_manager/gallery/gallery.html

Issue 2626973004: Fix the tooltip for thumbnail view option in gallery on tabbing (Closed)
Patch Set: Fix the tooltip for second review iteration Created 3 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
« no previous file with comments | « no previous file | ui/file_manager/gallery/js/gallery.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!-- 1 <!--
2 -- Copyright 2014 The Chromium Authors. All rights reserved. 2 -- Copyright 2014 The Chromium Authors. All rights reserved.
3 -- Use of this source code is governed by a BSD-style license that can be 3 -- Use of this source code is governed by a BSD-style license that can be
4 -- found in the LICENSE file. 4 -- found in the LICENSE file.
5 --> 5 -->
6 <html i18n-values="dir:textdirection"> 6 <html i18n-values="dir:textdirection">
7 <head> 7 <head>
8 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> 8 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
9 <link rel="stylesheet" href="../file_manager/foreground/css/list.css"> 9 <link rel="stylesheet" href="../file_manager/foreground/css/list.css">
10 <link rel="stylesheet" href="../file_manager/foreground/css/common.css"> 10 <link rel="stylesheet" href="../file_manager/foreground/css/common.css">
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 </button> 118 </button>
119 <button class="delete icon-button" 119 <button class="delete icon-button"
120 i18n-values="aria-label:GALLERY_DELETE" 120 i18n-values="aria-label:GALLERY_DELETE"
121 has-tooltip 121 has-tooltip
122 disabled> 122 disabled>
123 <div class="icon"></div> 123 <div class="icon"></div>
124 <files-ripple></files-ripple> 124 <files-ripple></files-ripple>
125 </button> 125 </button>
126 <!-- Use button element for mode button to implement toggle switch 126 <!-- Use button element for mode button to implement toggle switch
127 -- button. --> 127 -- button. -->
128 <button class="mode icon-button" disabled> 128 <button class="mode icon-button"
129 <div class="icon slide-mode" i18n-values="aria-label:GALLERY_SLIDE" 129 i18n-values="aria-label:GALLERY_THUMBNAIL"
130 has-tooltip></div> 130 has-tooltip
131 <div class="icon thumbnail-mode" 131 disabled>
132 i18n-values="aria-label:GALLERY_THUMBNAIL" 132 <div class="icon slide-mode"></div>
133 has-tooltip></div> 133 <div class="icon thumbnail-mode"></div>
134 <files-ripple></files-ripple> 134 <files-ripple></files-ripple>
135 </button> 135 </button>
136 <button class="slideshow icon-button" 136 <button class="slideshow icon-button"
137 i18n-values="aria-label:GALLERY_SLIDESHOW" 137 i18n-values="aria-label:GALLERY_SLIDESHOW"
138 has-tooltip 138 has-tooltip
139 disabled> 139 disabled>
140 <div class="icon"></div> 140 <div class="icon"></div>
141 <files-ripple></files-ripple> 141 <files-ripple></files-ripple>
142 </button> 142 </button>
143 <button class="share icon-button" 143 <button class="share icon-button"
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 <div class="prompt-wrapper" pos="center"> 175 <div class="prompt-wrapper" pos="center">
176 <div class="error-banner"></div> 176 <div class="error-banner"></div>
177 </div> 177 </div>
178 <div class="toast-stage"> 178 <div class="toast-stage">
179 <files-toast></files-toast> 179 <files-toast></files-toast>
180 </div> 180 </div>
181 <files-tooltip></files-tooltip> 181 <files-tooltip></files-tooltip>
182 </div> 182 </div>
183 </body> 183 </body>
184 </html> 184 </html>
OLDNEW
« no previous file with comments | « no previous file | ui/file_manager/gallery/js/gallery.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698