diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-07-27 19:27:14 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-07-27 19:27:14 -0700 |
commit | 2e5fb9c37e76c20ea0c25e1215a549b561dc68a8 (patch) | |
tree | d87b4909049a6ae4585284cd8e1dd9c399a26f21 /view/head.tpl | |
parent | e15265be3c687d5830a44de38fc2e5311dc00d86 (diff) | |
download | volse-hubzilla-2e5fb9c37e76c20ea0c25e1215a549b561dc68a8.tar.gz volse-hubzilla-2e5fb9c37e76c20ea0c25e1215a549b561dc68a8.tar.bz2 volse-hubzilla-2e5fb9c37e76c20ea0c25e1215a549b561dc68a8.zip |
lots of formatting, bug fixes on profile updates, i18n
Diffstat (limited to 'view/head.tpl')
-rw-r--r-- | view/head.tpl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/view/head.tpl b/view/head.tpl index 2a6506da9..f6ded0b32 100644 --- a/view/head.tpl +++ b/view/head.tpl @@ -76,10 +76,14 @@ function imgbright(node) { $(node).attr("src",$(node).attr("src").replace('hide','show')); + $(node).css('width',24); + $(node).css('height',24); } function imgdull(node) { $(node).attr("src",$(node).attr("src").replace('show','hide')); + $(node).css('width',16); + $(node).css('height',16); } |