diff options
author | friendica <info@friendica.com> | 2013-11-15 23:18:53 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-11-15 23:18:53 -0800 |
commit | 579cf4ccfb7bc55ac53fe474e1752203f8d55003 (patch) | |
tree | 0985ce8284dc061bfa76e0518cf046f4b34cb67a /view/theme/redbasic/php | |
parent | f13c513aba7b8914059845e8791faddbff052d9f (diff) | |
download | volse-hubzilla-579cf4ccfb7bc55ac53fe474e1752203f8d55003.tar.gz volse-hubzilla-579cf4ccfb7bc55ac53fe474e1752203f8d55003.tar.bz2 volse-hubzilla-579cf4ccfb7bc55ac53fe474e1752203f8d55003.zip |
reposition certain things like the wall-to-wall "to" photo when one changes the size of the author icons
Diffstat (limited to 'view/theme/redbasic/php')
-rw-r--r-- | view/theme/redbasic/php/style.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php index 2fcda2cc8..eb32e5ef7 100644 --- a/view/theme/redbasic/php/style.php +++ b/view/theme/redbasic/php/style.php @@ -94,11 +94,12 @@ if(! $top_photo) $top_photo = '64px'; $pmenu_top = intval($top_photo) - 6 . 'px'; + $wwtop = intval($top_photo) - 5 . 'px'; if(! $reply_photo) $reply_photo = '32px'; $pmenu_reply = intval($reply_photo) - 6 . 'px'; - + if($nav_min_opacity === false || $nav_min_opacity === '') { $nav_float_min_opacity = 1.0; $nav_percent_min_opacity = 100; @@ -161,7 +162,8 @@ $options = array ( '$top_photo' => $top_photo, '$reply_photo' => $reply_photo, '$pmenu_top' => $pmenu_top, -'$pmenu_reply' => $pmenu_reply +'$pmenu_reply' => $pmenu_reply, +'$wwtop' => $wwtop ); echo str_replace(array_keys($options), array_values($options), $x); |