diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-03-18 14:41:54 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-03-18 14:41:54 +0100 |
commit | 8cb31172a9e6de1593a45bdfaeac291db2302d4d (patch) | |
tree | 390073a9f757f636b19e48f7ef4a07ddf0d63a6e /view/theme/redbasic/php/style.php | |
parent | 7a9aca6ecbe84ad4469cbbec2b7a1269e9f94378 (diff) | |
download | volse-hubzilla-8cb31172a9e6de1593a45bdfaeac291db2302d4d.tar.gz volse-hubzilla-8cb31172a9e6de1593a45bdfaeac291db2302d4d.tar.bz2 volse-hubzilla-8cb31172a9e6de1593a45bdfaeac291db2302d4d.zip |
make every page regard max content width setting and move the setting out of experts mode
Diffstat (limited to 'view/theme/redbasic/php/style.php')
-rw-r--r-- | view/theme/redbasic/php/style.php | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php index a3234862a..9c133313d 100644 --- a/view/theme/redbasic/php/style.php +++ b/view/theme/redbasic/php/style.php @@ -304,7 +304,12 @@ if(! $a->install) { if(file_exists('view/theme/redbasic/css/style.css')) { $x = file_get_contents('view/theme/redbasic/css/style.css'); -$body_width = (231 + $converse_width) . 'px'; // aside is 231px + converse width; have to find a way for calculation with 'px', cannot handle '%' + +// left aside is 231px + converse width +$main_width = (231 + $converse_width); + +// prevent main_width smaller than 768px +$main_width = (($main_width < 768) ? 768 : $main_width) . 'px'; $options = array ( '$nav_bg' => $nav_bg, @@ -412,7 +417,7 @@ $options = array ( '$pmenu_reply' => $pmenu_reply, '$wwtop' => $wwtop, '$comment_indent' => $comment_indent, -'$body_width' => $body_width, +'$main_width' => $main_width, '$comment_padding' => $comment_padding, '$admintable_hoverbgcol' => $admintable_hoverbgcol, '$dirpopup_txtcol' => $dirpopup_txtcol, |