aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/redbasic/php/style.php
diff options
context:
space:
mode:
authormarijus <mario@mariovavti.com>2014-05-12 20:33:14 +0200
committermarijus <mario@mariovavti.com>2014-05-12 20:33:14 +0200
commit0bf68af0a71ebe8049284117e56f378e00827c44 (patch)
tree4a519f369b3b4811b280fdc1eddcab5c8d13a990 /view/theme/redbasic/php/style.php
parent0446db8104b268ce4143c93a205f068edd719e2f (diff)
downloadvolse-hubzilla-0bf68af0a71ebe8049284117e56f378e00827c44.tar.gz
volse-hubzilla-0bf68af0a71ebe8049284117e56f378e00827c44.tar.bz2
volse-hubzilla-0bf68af0a71ebe8049284117e56f378e00827c44.zip
make comment_indent an option and removeitem_opacity as it is not working properly at the current state - we have got item background opacity now (allthough not yet for custom colors because the colorpicker does not work with rgba colors). Reset left comment border width to 3px as it is barely visible otherwise.
Diffstat (limited to 'view/theme/redbasic/php/style.php')
-rw-r--r--view/theme/redbasic/php/style.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php
index e03d1c741..881ddcf4f 100644
--- a/view/theme/redbasic/php/style.php
+++ b/view/theme/redbasic/php/style.php
@@ -27,7 +27,7 @@ if(! $a->install) {
$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");
+ $comment_indent = get_pconfig($uid, "redbasic", "comment_indent");
$body_font_size = get_pconfig($uid, "redbasic", "body_font_size");
$font_size = get_pconfig($uid, "redbasic", "font_size");
$font_colour = get_pconfig($uid, "redbasic", "font_colour");
@@ -251,7 +251,7 @@ if(! $a->install) {
if (!$comment_padding)
$comment_padding="0px";
if (!$comment_border_left)
- $comment_border_left="2px solid";
+ $comment_border_left="3px solid";
if (!$comment_border_right)
$comment_border_right="0px solid";
if (!$comment_border_top)
@@ -300,7 +300,6 @@ $options = array (
'$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,
'$font_size' => $font_size,