diff options
-rw-r--r-- | chrome/browser/resources/new_tab.html | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/chrome/browser/resources/new_tab.html b/chrome/browser/resources/new_tab.html index c6b4c0d..d8f5fb5 100644 --- a/chrome/browser/resources/new_tab.html +++ b/chrome/browser/resources/new_tab.html @@ -318,6 +318,9 @@ a.thumbnail { .recently-closed-window-link { 'text-decoration:none'; } +.recently-closed-window-link:hover { + cursor:pointer; +} .recently-close-window-text { text-decoration:underline; } @@ -744,9 +747,7 @@ function renderRecentlyClosedTabs(entries) { } linkSpan.appendChild(document.createTextNode(")")); - link = DOM('a', { href: 'window', - className: 'recently-closed-window-link', - title: localStrings.getString('closedWindow') } ); + link = DOM('span', { className: 'recently-closed-window-link' } ); windowSpan = DOM('span', {className: 'recently-close-window-text'}); windowSpan.appendChild( document.createTextNode(localStrings.getString('closedwindow'))); |