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

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: Added a period at the end of a comment. Created 9 years, 4 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/app/generated_resources.grd ('k') | chrome/browser/resources/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 <include src="content_security_policy.html"/> 5 <include src="content_security_policy.html"/>
6 <title i18n-content="title"></title> 6 <title i18n-content="title"></title>
7 <link rel="icon" href="../../app/theme/downloads_favicon.png"> 7 <link rel="icon" href="../../app/theme/downloads_favicon.png">
8 <style> 8 <style>
9 body { 9 body {
10 background-color: white; 10 background-color: white;
(...skipping 25 matching lines...) Expand all
36 border-top: 1px solid #9cc2ef; 36 border-top: 1px solid #9cc2ef;
37 background-color: #ebeff9; 37 background-color: #ebeff9;
38 padding: 3px; 38 padding: 3px;
39 margin-bottom: 6px; 39 margin-bottom: 6px;
40 } 40 }
41 41
42 #downloads-summary-text { 42 #downloads-summary-text {
43 font-weight: bold; 43 font-weight: bold;
44 } 44 }
45 45
46 #downloads-summary > a { 46 #downloads-actions {
47 float: right; 47 float: right;
48 } 48 }
49 49
50 html[dir=rtl] #downloads-summary > a { 50 html[dir=rtl] #downloads-actions {
51 float: left; 51 float: left;
52 } 52 }
53 53
54 #downloads-actions > a {
55 margin-left: 10px;
56 }
57
58 #downloads-actions > a:first-child {
59 margin-left: 0;
60 }
61
54 #downloads-display { 62 #downloads-display {
55 max-width: 740px; 63 max-width: 740px;
56 } 64 }
57 65
58 .download { 66 .download {
59 position: relative; 67 position: relative;
60 margin-top: 6px; 68 margin-top: 6px;
61 -webkit-margin-start: 114px; 69 -webkit-margin-start: 114px;
62 -webkit-padding-start: 56px; 70 -webkit-padding-start: 56px;
63 margin-bottom: 15px; 71 margin-bottom: 15px;
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 width="67" height="67" class="logo" border="0" /></a> 196 width="67" height="67" class="logo" border="0" /></a>
189 <form id="search-form" method="post" action="" class="form"> 197 <form id="search-form" method="post" action="" class="form">
190 <input type="text" name="term" id="term" /> 198 <input type="text" name="term" id="term" />
191 <input id="search-submit" 199 <input id="search-submit"
192 type="submit" name="submit" i18n-values="value:searchbutton" /> 200 type="submit" name="submit" i18n-values="value:searchbutton" />
193 </form> 201 </form>
194 </div> 202 </div>
195 <div class="main"> 203 <div class="main">
196 <div id="downloads-summary"> 204 <div id="downloads-summary">
197 <span id="downloads-summary-text" i18n-content="downloads">Downloads</span> 205 <span id="downloads-summary-text" i18n-content="downloads">Downloads</span>
198 <a id="clear-all" href="" i18n-content="clear_all">Clear All</a> 206 <span id="downloads-actions">
alidudek10 2011/12/24 21:16:10 file:///C:/Documents%20and%20Settings/pc1/Plocha/a
207 <a id="open-downloads-folder" href=""
208 i18n-content="open_downloads_folder">Open downloads folder</a>
209 <a id="clear-all" href="" i18n-content="clear_all">Clear All</a>
210 </span>
199 </div> 211 </div>
200 <div id="downloads-display"></div> 212 <div id="downloads-display"></div>
201 </div> 213 </div>
202 <div class="footer"> 214 <div class="footer">
203 </div> 215 </div>
204 <script src="chrome://downloads/downloads.js"></script> 216 <script src="chrome://downloads/downloads.js"></script>
205 <script src="chrome://downloads/strings.js"></script> 217 <script src="chrome://downloads/strings.js"></script>
206 <script src="chrome://resources/js/i18n_template.js"></script> 218 <script src="chrome://resources/js/i18n_template.js"></script>
207 <script src="chrome://resources/js/i18n_process.js"></script> 219 <script src="chrome://resources/js/i18n_process.js"></script>
208 </body> 220 </body>
209 </html> 221 </html>
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/resources/downloads.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698