Chromium Code Reviews| 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> |