aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/redbasic/php/style.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-02-23 08:50:55 +1100
committerfriendica <info@friendica.com>2014-02-23 08:50:55 +1100
commitf0a361a7c12a1aac811137c63a5cc7907c2fd50c (patch)
treecc5666f2754400c7b58199a63f9b9f74c8c633c8 /view/theme/redbasic/php/style.php
parent5dc35bb7f0392903df3cdc600dbb67f5322ec53f (diff)
parenta5f70f6c10705c655ad31e906626ac3513da00fe (diff)
downloadvolse-hubzilla-f0a361a7c12a1aac811137c63a5cc7907c2fd50c.tar.gz
volse-hubzilla-f0a361a7c12a1aac811137c63a5cc7907c2fd50c.tar.bz2
volse-hubzilla-f0a361a7c12a1aac811137c63a5cc7907c2fd50c.zip
Merge pull request #334 from cvogeley/master
Add option for narrow navbar instead of the bootstrap default
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');
+}