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

Side by Side Diff: chrome/browser/resources/active_downloads.html

Issue 8528046: Change "Show All Downloads" link to "Show all files" (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: rebase Created 9 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 | « no previous file | chrome/browser/resources/active_downloads.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 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html i18n-values="dir:textdirection;"> 2 <html i18n-values="dir:textdirection;">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title i18n-content="title"></title> 5 <title i18n-content="title"></title>
6 <link rel="icon" href="../../app/theme/downloads_favicon.png"> 6 <link rel="icon" href="../../app/theme/downloads_favicon.png">
7 <style type="text/css"> 7 <style type="text/css">
8 *:-khtml-drag { 8 *:-khtml-drag {
9 background-color: rgba(238,238,238, 0.5); 9 background-color: rgba(238,238,238, 0.5);
10 } 10 }
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 124
125 div.columnlist { 125 div.columnlist {
126 width: 100%; 126 width: 100%;
127 top: 0; 127 top: 0;
128 left: 0; 128 left: 0;
129 bottom: 29px; 129 bottom: 29px;
130 position: absolute; 130 position: absolute;
131 background: #e8e8e8 131 background: #e8e8e8
132 } 132 }
133 133
134 span.showalldownloadstext { 134 span.showallfilestext {
135 color: #254f9b; 135 color: #254f9b;
136 cursor: pointer; 136 cursor: pointer;
137 text-decoration: underline; 137 text-decoration: underline;
138 font-size: 12px; 138 font-size: 12px;
139 height: 15px; 139 height: 15px;
140 } 140 }
141 141
142 div.showalldownloads { 142 div.showallfiles {
143 width: 100%; 143 width: 100%;
144 bottom: 0; 144 bottom: 0;
145 height: 29px; 145 height: 29px;
146 position: absolute; 146 position: absolute;
147 margin-left: -8px; 147 margin-left: -8px;
148 text-align: center; 148 text-align: center;
149 background: #e8e8e8 149 background: #e8e8e8
150 } 150 }
151 151
152 .menu { 152 .menu {
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 } 184 }
185 185
186 </style> 186 </style>
187 <script src="chrome://resources/js/local_strings.js"></script> 187 <script src="chrome://resources/js/local_strings.js"></script>
188 <script src="chrome://resources/js/media_common.js"></script> 188 <script src="chrome://resources/js/media_common.js"></script>
189 <script src="chrome://resources/js/util.js"></script> 189 <script src="chrome://resources/js/util.js"></script>
190 <script src="chrome://active-downloads/strings.js"></script> 190 <script src="chrome://active-downloads/strings.js"></script>
191 <script src="chrome://active-downloads/active_downloads.js"></script> 191 <script src="chrome://active-downloads/active_downloads.js"></script>
192 <body i18n-values=".style.fontFamily:fontfamily"> 192 <body i18n-values=".style.fontFamily:fontfamily">
193 <div id="main" class="columnlist"></div> 193 <div id="main" class="columnlist"></div>
194 <div id="showalldownloads" class="showalldownloads"> 194 <div id="showallfiles" class="showallfiles">
195 <span id="showalldownloadstext" class="showalldownloadstext"></span> 195 <span id="showallfilestext" class="showallfilestext"></span>
196 </div> 196 </div>
197 <script src="chrome://resources/js/i18n_template.js"></script> 197 <script src="chrome://resources/js/i18n_template.js"></script>
198 <script src="chrome://resources/js/i18n_process.js"></script> 198 <script src="chrome://resources/js/i18n_process.js"></script>
199 </body> 199 </body>
200 </html> 200 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/active_downloads.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698