diff options
author | friendica <info@friendica.com> | 2014-05-01 21:50:09 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-05-01 21:50:09 -0700 |
commit | 07a9aaaa1f70452f0892ceef8fa59eaed5078a1f (patch) | |
tree | c3ea55b2937b4983ef3bb1142979fea40d0e4f24 /view/theme/redbasic/php/style.php | |
parent | 56125f8c46bfdf3f624b411c67d7df3253b921fc (diff) | |
download | volse-hubzilla-07a9aaaa1f70452f0892ceef8fa59eaed5078a1f.tar.gz volse-hubzilla-07a9aaaa1f70452f0892ceef8fa59eaed5078a1f.tar.bz2 volse-hubzilla-07a9aaaa1f70452f0892ceef8fa59eaed5078a1f.zip |
make the comment border colour configurable
Diffstat (limited to 'view/theme/redbasic/php/style.php')
-rw-r--r-- | view/theme/redbasic/php/style.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php index 05f7b96b0..998dfea32 100644 --- a/view/theme/redbasic/php/style.php +++ b/view/theme/redbasic/php/style.php @@ -26,6 +26,7 @@ if(! $a->install) { $toolicon_activecolour = get_pconfig($uid,'redbasic','toolicon_activecolour'); $item_colour = get_pconfig($uid, "redbasic", "item_colour"); $comment_item_colour = get_pconfig($uid, "redbasic", "comment_item_colour"); + $comment_border_colour = get_pconfig($uid, "redbasic", "comment_border_colour"); $item_opacity = get_pconfig($uid, "redbasic", "item_opacity"); $body_font_size = get_pconfig($uid, "redbasic", "body_font_size"); $font_size = get_pconfig($uid, "redbasic", "font_size"); @@ -120,6 +121,8 @@ if(! $a->install) { $item_colour = "rgba(238,238,238,0.8)"; if (! $comment_item_colour) $comment_item_colour = "rgba(254,254,254,0.4)"; + if (! $comment_border_colour) + $comment_border_colour = "rgba(238,238,238,0.8)"; if (! $toolicon_colour) $toolicon_colour = '#777'; if (! $toolicon_activecolour) @@ -261,6 +264,7 @@ $options = array ( '$background_image' => $background_image, '$item_colour' => $item_colour, '$comment_item_colour' => $comment_item_colour, +'$comment_border_colour' => $comment_border_colour, '$item_opacity' => $item_opacity, '$toolicon_colour' => $toolicon_colour, '$toolicon_activecolour' => $toolicon_activecolour, |