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

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

Issue 7398026: Added a link to the downloads tab that opens the downloads folder. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 5 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
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 <!-- X-WebKit-CSP is our development name for Content-Security-Policy. 5 <!-- X-WebKit-CSP is our development name for Content-Security-Policy.
6 TODO(tsepez) rename when Content-security-policy is done. 6 TODO(tsepez) rename when Content-security-policy is done.
7 TODO(tsepez) remove unsafe-eval when bidichecker_packaged.js fixed. 7 TODO(tsepez) remove unsafe-eval when bidichecker_packaged.js fixed.
8 --> 8 -->
9 <meta http-equiv="X-WebKit-CSP" 9 <meta http-equiv="X-WebKit-CSP"
10 content="object-src 'none'; 10 content="object-src 'none';
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 padding: 3px; 46 padding: 3px;
47 margin-bottom: 6px; 47 margin-bottom: 6px;
48 } 48 }
49 49
50 #downloads-summary-text { 50 #downloads-summary-text {
51 font-weight: bold; 51 font-weight: bold;
52 } 52 }
53 53
54 #downloads-summary > a { 54 #downloads-summary > a {
55 float: right; 55 float: right;
56 margin-left: 10px;
57 }
58
59 #downloads-summary > a:first-child {
60 margin-left: 0;
56 } 61 }
57 62
58 html[dir=rtl] #downloads-summary > a { 63 html[dir=rtl] #downloads-summary > a {
59 float: left; 64 float: left;
60 } 65 }
61 66
62 #downloads-display { 67 #downloads-display {
63 max-width: 740px; 68 max-width: 740px;
64 } 69 }
65 70
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 width="67" height="67" class="logo" border="0" /></a> 201 width="67" height="67" class="logo" border="0" /></a>
197 <form id="search-form" method="post" action="" class="form"> 202 <form id="search-form" method="post" action="" class="form">
198 <input type="text" name="term" id="term" /> 203 <input type="text" name="term" id="term" />
199 <input id="search-submit" 204 <input id="search-submit"
200 type="submit" name="submit" i18n-values="value:searchbutton" /> 205 type="submit" name="submit" i18n-values="value:searchbutton" />
201 </form> 206 </form>
202 </div> 207 </div>
203 <div class="main"> 208 <div class="main">
204 <div id="downloads-summary"> 209 <div id="downloads-summary">
205 <span id="downloads-summary-text" i18n-content="downloads">Downloads</span> 210 <span id="downloads-summary-text" i18n-content="downloads">Downloads</span>
211 <a id="open-downloads-folder" href=""
212 i18n-content="open_downloads_folder">Open downloads folder</a>
206 <a id="clear-all" href="" i18n-content="clear_all">Clear All</a> 213 <a id="clear-all" href="" i18n-content="clear_all">Clear All</a>
207 </div> 214 </div>
208 <div id="downloads-display"></div> 215 <div id="downloads-display"></div>
209 </div> 216 </div>
210 <div class="footer"> 217 <div class="footer">
211 </div> 218 </div>
212 <script src="chrome://downloads/downloads.js"></script> 219 <script src="chrome://downloads/downloads.js"></script>
213 <script src="chrome://downloads/strings.js"></script> 220 <script src="chrome://downloads/strings.js"></script>
214 <script src="chrome://resources/js/i18n_template.js"></script> 221 <script src="chrome://resources/js/i18n_template.js"></script>
215 <script src="chrome://resources/js/i18n_process.js"></script> 222 <script src="chrome://resources/js/i18n_process.js"></script>
216 </body> 223 </body>
217 </html> 224 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698