diff options
author | Jeroen <jeroenpraat@xs4all.nl> | 2014-10-10 13:35:16 +0000 |
---|---|---|
committer | Jeroen <jeroenpraat@xs4all.nl> | 2014-10-10 13:35:16 +0000 |
commit | 1dda77596926fe08990c8a6f31412a38fbc602b5 (patch) | |
tree | 57f5c494f56ead7716b38e43e19f471de7bdc374 /view/theme/redbasic/php/style.php | |
parent | 77fc267f738727ec1c503bd68470014a14c1b621 (diff) | |
download | volse-hubzilla-1dda77596926fe08990c8a6f31412a38fbc602b5.tar.gz volse-hubzilla-1dda77596926fe08990c8a6f31412a38fbc602b5.tar.bz2 volse-hubzilla-1dda77596926fe08990c8a6f31412a38fbc602b5.zip |
Good compromise I think. Remove display setting . Set the default (light) schema to = , so that other schemas can still use .
Diffstat (limited to 'view/theme/redbasic/php/style.php')
-rw-r--r-- | view/theme/redbasic/php/style.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php index 104d9d51e..045ddc309 100644 --- a/view/theme/redbasic/php/style.php +++ b/view/theme/redbasic/php/style.php @@ -24,7 +24,6 @@ if(! $a->install) { $background_image = get_pconfig($uid, "redbasic", "background_image"); $toolicon_colour = get_pconfig($uid,'redbasic','toolicon_colour'); $toolicon_activecolour = get_pconfig($uid,'redbasic','toolicon_activecolour'); - $genericcontent_bgcolour = get_pconfig($uid, "redbasic", "genericcontent_bgcolour"); $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"); @@ -122,12 +121,12 @@ if(! $a->install) { $bgcolour = "#fdfdfd"; if (! $background_image) $background_image =''; - if (! $genericcontent_bgcolour) - $genericcontent_bgcolour ='rgba(247,247,247,0.8)'; if (! $item_colour) $item_colour = "rgba(238,238,238,0.8)"; if (! $comment_item_colour) $comment_item_colour = "rgba(254,254,254,0.4)"; + if (! $genericcontent_bgcolour) + $genericcontent_bgcolour = $comment_item_colour; if (! $comment_border_colour) $comment_border_colour = "rgba(238,238,238,0.8)"; if (! $toolicon_colour) |