diff options
author | glen@chromium.org <glen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-27 19:54:29 +0000 |
---|---|---|
committer | glen@chromium.org <glen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-27 19:54:29 +0000 |
commit | 0d6eb91cae5b6b72db209f3f7dcf2cae7810619c (patch) | |
tree | 63ba3a95561f8a532f906356f67c9be574659031 /chrome/browser | |
parent | 860f55497abe0123f3c4a6a139ccd84f13d892be (diff) | |
download | chromium_src-0d6eb91cae5b6b72db209f3f7dcf2cae7810619c.zip chromium_src-0d6eb91cae5b6b72db209f3f7dcf2cae7810619c.tar.gz chromium_src-0d6eb91cae5b6b72db209f3f7dcf2cae7810619c.tar.bz2 |
- Change alignment of 'delete this day' so it's not off floating in the middle of nowhere.
- Fix history text-wrapping issues.
BUG=8147
Review URL: http://codereview.chromium.org/56001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@12689 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser')
-rw-r--r-- | chrome/browser/resources/history.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/chrome/browser/resources/history.html b/chrome/browser/resources/history.html index 282be4c..bd9738e 100644 --- a/chrome/browser/resources/history.html +++ b/chrome/browser/resources/history.html @@ -845,15 +845,12 @@ html[dir='rtl'] .form { } .day { margin-top:18px; - margin-left:3px; - width:750px; + padding:0px 3px; + display:inline-block; } .delete-day { - width:200px; - float:right; -} -html[dir='rtl'] .delete-day { - float:left; + padding:0px 9px; + display:inline-block; } .gap { margin-left:18px; @@ -875,8 +872,11 @@ table.results { min-width:56px; margin-right:5px; padding-top:1px; + white-space:nowrap; } html[dir='rtl'] .time { + margin-right:0px; + margin-left:5px; float:right; } .entry .title { |