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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/downloads.html
diff --git a/chrome/browser/resources/downloads.html b/chrome/browser/resources/downloads.html
index 1bd018753fe76ae455a3caf10d7f0cdf52be0e73..7db95276327abaa907228fc272f006ff3c21141a 100644
--- a/chrome/browser/resources/downloads.html
+++ b/chrome/browser/resources/downloads.html
@@ -51,14 +51,22 @@ html[dir=rtl] .logo, html[dir=rtl] .form {
font-weight: bold;
}
-#downloads-summary > a {
+#downloads-actions {
float: right;
}
-html[dir=rtl] #downloads-summary > a {
+html[dir=rtl] #downloads-actions {
float: left;
}
+#downloads-actions > a {
+ margin-left: 10px;
+}
+
+#downloads-actions > a:first-child {
+ margin-left: 0;
+}
+
#downloads-display {
max-width: 740px;
}
@@ -203,7 +211,11 @@ html[dir=rtl] .progress {
<div class="main">
<div id="downloads-summary">
<span id="downloads-summary-text" i18n-content="downloads">Downloads</span>
- <a id="clear-all" href="" i18n-content="clear_all">Clear All</a>
+ <span id="downloads-actions">
+ <a id="clear-all" href="" i18n-content="clear_all">Clear All</a>
asanka 2011/07/19 18:58:00 Indent nested tags 2 spaces.
+ <a id="open-downloads-folder" href=""
+ 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
+ </span>
</div>
<div id="downloads-display"></div>
</div>

Powered by Google App Engine
This is Rietveld 408576698