diff options
author | mirandac@chromium.org <mirandac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-09 19:05:25 +0000 |
---|---|---|
committer | mirandac@chromium.org <mirandac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-09 19:05:25 +0000 |
commit | 17e7fcae1a25970a547ce4713eb98ceee437a2d0 (patch) | |
tree | 0776e8128df17a55f52708ef0b35f59b9686839d /chrome/browser/resources | |
parent | a531583217b4850aee939870855d0f6c8a929169 (diff) | |
download | chromium_src-17e7fcae1a25970a547ce4713eb98ceee437a2d0.zip chromium_src-17e7fcae1a25970a547ce4713eb98ceee437a2d0.tar.gz chromium_src-17e7fcae1a25970a547ce4713eb98ceee437a2d0.tar.bz2 |
Fix delete day so that font is correct and it can be reached through tab.
Landing for eisinger.
BUG= 21459
TEST= On history page, font for delete day msg is correct, and you can tab to it.
Review URL: http://codereview.chromium.org/473004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34168 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/resources')
-rw-r--r-- | chrome/browser/resources/history.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/resources/history.html b/chrome/browser/resources/history.html index ba81d20..131c348 100644 --- a/chrome/browser/resources/history.html +++ b/chrome/browser/resources/history.html @@ -498,7 +498,7 @@ HistoryView.prototype.displayResults_ = function() { localStrings.getString('cont'))); } - var link = createElementWithClassName('div', 'delete-day'); + var link = createElementWithClassName('button', 'delete-day'); link.time = page.time.toString(); link.onclick = deleteDay; link.appendChild( @@ -832,6 +832,7 @@ function historyDeleted() { text-decoration: underline; padding:0px 9px; display:inline-block; + font:inherit; } .gap { margin-left:18px; |