aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/redbasic/php/style.php
diff options
context:
space:
mode:
authorChristian Vogeley <christian.vogeley@hotmail.de>2014-02-22 16:10:46 +0100
committerChristian Vogeley <christian.vogeley@hotmail.de>2014-02-22 16:10:46 +0100
commitf9eddb89eff2601f8ef4318f16a8360296613935 (patch)
tree97b3b18ad318ac452b7a3a4dda2e81e873c0f61f /view/theme/redbasic/php/style.php
parentbbea85f809097e90960e4eac7a586264a520e0f0 (diff)
downloadvolse-hubzilla-f9eddb89eff2601f8ef4318f16a8360296613935.tar.gz
volse-hubzilla-f9eddb89eff2601f8ef4318f16a8360296613935.tar.bz2
volse-hubzilla-f9eddb89eff2601f8ef4318f16a8360296613935.zip
Add option for narrow navbar instead of the bootstrap default
thick version
Diffstat (limited to 'view/theme/redbasic/php/style.php')
-rw-r--r--view/theme/redbasic/php/style.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php
index 8d5c23a03..901d06af7 100644
--- a/view/theme/redbasic/php/style.php
+++ b/view/theme/redbasic/php/style.php
@@ -14,6 +14,7 @@ if(! $a->install) {
$nav_colour = get_pconfig($uid, "redbasic", "nav_colour");
// Load the owners pconfig
+ $narrow_navbar = get_pconfig($uid,'redbasic','narrow_navbar');
$banner_colour = get_pconfig($uid,'redbasic','banner_colour');
$link_colour = get_pconfig($uid, "redbasic", "link_colour");
$schema = get_pconfig($uid,'redbasic','schema');
@@ -213,3 +214,6 @@ echo str_replace(array_keys($options), array_values($options), $x);
if($sloppy_photos && file_exists('view/theme/redbasic/css/sloppy_photos.css')) {
echo file_get_contents('view/theme/redbasic/css/sloppy_photos.css');
}
+if($narrow_navbar && file_exists('view/theme/redbasic/css/narrow_navbar.css')) {
+ echo file_get_contents('view/theme/redbasic/css/narrow_navbar.css');
+}