diff options
author | Joey Hess <joey@kitenet.net> | 2010-05-07 21:54:58 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-05-07 21:54:58 -0400 |
commit | 3a1d81bd9c5a866aed0dd7890a4174f0ff6b1e78 (patch) | |
tree | 9ae7ebeff2ffb18d39159a76c6ba91377174fb72 /underlays/openid-selector | |
parent | b8dcaf91d02c1d8754032c60f8d713261dafffe4 (diff) |
avoid scaling favicons
chromium's rather impressive jaggy-free scaling spoiled me, but in
iceweasel, scaled favicons look crap
Diffstat (limited to 'underlays/openid-selector')
-rw-r--r-- | underlays/openid-selector/ikiwiki/openid/openid-jquery.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/underlays/openid-selector/ikiwiki/openid/openid-jquery.js b/underlays/openid-selector/ikiwiki/openid/openid-jquery.js index 43d2ef668..8137f232f 100644 --- a/underlays/openid-selector/ikiwiki/openid/openid-jquery.js +++ b/underlays/openid-selector/ikiwiki/openid/openid-jquery.js @@ -114,7 +114,7 @@ var openid = { '<a href="' + localloginurl + '"' + ' style="background: #FFF" ' + 'class="openid_large_btn">' + - '<img alt="" width="24" height="24" src="favicon.ico" />' + + '<img alt="" width="16" height="16" src="favicon.ico" />' + ' Local Account' + '</a>' ); @@ -148,7 +148,7 @@ var openid = { return '<a' + title +' href="javascript: openid.signin(\''+ box_id +'\');"' + ' style="background: #FFF" ' + 'class="' + box_id + ' openid_' + box_size + '_btn">' + - '<img alt="" width="24" height="24" src="' + provider["icon"] + '" />' + + '<img alt="" width="16" height="16" src="' + provider["icon"] + '" />' + label + '</a>'; |