diff options
author | Christian Vogeley <christian.vogeley@hotmail.de> | 2014-05-11 02:22:27 +0200 |
---|---|---|
committer | Christian Vogeley <christian.vogeley@hotmail.de> | 2014-05-11 02:22:27 +0200 |
commit | 5f1f82df5d0126cf68780b03f95e3c53f137bb75 (patch) | |
tree | 6918eae7c6c8908dc90b89e0e2c0161527ed6985 /view/theme/redbasic/php/style.php | |
parent | e2b96df27b76d27c9688cf131e2d5e63a410fad0 (diff) | |
download | volse-hubzilla-5f1f82df5d0126cf68780b03f95e3c53f137bb75.tar.gz volse-hubzilla-5f1f82df5d0126cf68780b03f95e3c53f137bb75.tar.bz2 volse-hubzilla-5f1f82df5d0126cf68780b03f95e3c53f137bb75.zip |
Move "boxy" conversation design into a schema file
Default design is now again basically the previous one
Diffstat (limited to 'view/theme/redbasic/php/style.php')
-rw-r--r-- | view/theme/redbasic/php/style.php | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php index 698adaf4d..e03d1c741 100644 --- a/view/theme/redbasic/php/style.php +++ b/view/theme/redbasic/php/style.php @@ -248,6 +248,17 @@ if(! $a->install) { $reply_photo = '32px'; if(! $infomess_bgcolour) $infomess_bgcolour = "#F0F0F0"; + if (!$comment_padding) + $comment_padding="0px"; + if (!$comment_border_left) + $comment_border_left="2px solid"; + if (!$comment_border_right) + $comment_border_right="0px solid"; + if (!$comment_border_top) + $comment_border_top="0px solid"; + if (!$comment_border_bottom) + $comment_border_bottom="0px solid"; + if($nav_min_opacity === false || $nav_min_opacity === '') { $nav_float_min_opacity = 1.0; $nav_percent_min_opacity = 100; @@ -357,7 +368,12 @@ $options = array ( '$pmenu_reply' => $pmenu_reply, '$wwtop' => $wwtop, '$comment_indent' => $comment_indent, -'$body_width' => $body_width +'$body_width' => $body_width, +'$comment_padding' => $comment_padding, +'$comment_border_left' =>$comment_border_left, +'$comment_border_right' =>$comment_border_right, +'$comment_border_top' =>$comment_border_top, +'$comment_border_bottom' =>$comment_border_bottom, ); echo str_replace(array_keys($options), array_values($options), $x); |