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

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: Fixed the issues discovered during review. 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 border-top: 1px solid #9cc2ef; 44 border-top: 1px solid #9cc2ef;
45 background-color: #ebeff9; 45 background-color: #ebeff9;
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-actions {
55 float: right; 55 float: right;
56 } 56 }
57 57
58 html[dir=rtl] #downloads-summary > a { 58 html[dir=rtl] #downloads-actions {
59 float: left; 59 float: left;
60 } 60 }
61 61
62 #downloads-actions > a {
63 margin-left: 10px;
64 }
65
66 #downloads-actions > a:first-child {
67 margin-left: 0;
68 }
69
62 #downloads-display { 70 #downloads-display {
63 max-width: 740px; 71 max-width: 740px;
64 } 72 }
65 73
66 .download { 74 .download {
67 position: relative; 75 position: relative;
68 margin-top: 6px; 76 margin-top: 6px;
69 -webkit-margin-start: 114px; 77 -webkit-margin-start: 114px;
70 -webkit-padding-start: 56px; 78 -webkit-padding-start: 56px;
71 margin-bottom: 15px; 79 margin-bottom: 15px;
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 width="67" height="67" class="logo" border="0" /></a> 204 width="67" height="67" class="logo" border="0" /></a>
197 <form id="search-form" method="post" action="" class="form"> 205 <form id="search-form" method="post" action="" class="form">
198 <input type="text" name="term" id="term" /> 206 <input type="text" name="term" id="term" />
199 <input id="search-submit" 207 <input id="search-submit"
200 type="submit" name="submit" i18n-values="value:searchbutton" /> 208 type="submit" name="submit" i18n-values="value:searchbutton" />
201 </form> 209 </form>
202 </div> 210 </div>
203 <div class="main"> 211 <div class="main">
204 <div id="downloads-summary"> 212 <div id="downloads-summary">
205 <span id="downloads-summary-text" i18n-content="downloads">Downloads</span> 213 <span id="downloads-summary-text" i18n-content="downloads">Downloads</span>
206 <a id="clear-all" href="" i18n-content="clear_all">Clear All</a> 214 <span id="downloads-actions">
215 <a id="clear-all" href="" i18n-content="clear_all">Clear All</a>
asanka 2011/07/19 18:58:00 Indent nested tags 2 spaces.
216 <a id="open-downloads-folder" href=""
217 i18n-content="open_downloads_folder">Open downloads folder</a>
asanka 2011/07/19 18:58:00 I thought we were moving the "Clear All" link to t
218 </span>
207 </div> 219 </div>
208 <div id="downloads-display"></div> 220 <div id="downloads-display"></div>
209 </div> 221 </div>
210 <div class="footer"> 222 <div class="footer">
211 </div> 223 </div>
212 <script src="chrome://downloads/downloads.js"></script> 224 <script src="chrome://downloads/downloads.js"></script>
213 <script src="chrome://downloads/strings.js"></script> 225 <script src="chrome://downloads/strings.js"></script>
214 <script src="chrome://resources/js/i18n_template.js"></script> 226 <script src="chrome://resources/js/i18n_template.js"></script>
215 <script src="chrome://resources/js/i18n_process.js"></script> 227 <script src="chrome://resources/js/i18n_process.js"></script>
216 </body> 228 </body>
217 </html> 229 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698