Default theme = login theme
This commit is contained in:
parent
753c41bb40
commit
43625b437b
|
@ -93,7 +93,14 @@ if (!$scheme) {
|
||||||
$schemecssfile = 'view/theme/frio/scheme/default.css';
|
$schemecssfile = 'view/theme/frio/scheme/default.css';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
//If no scheme was set default to login theme.
|
||||||
|
$nav_bg = (empty($nav_bg) ? Config::get('frio', 'nav_bg') : $nav_bg);
|
||||||
|
$nav_icon_color = (empty($nav_icon_color) ? Config::get('frio', 'nav_icon_color') : $nav_icon_color);
|
||||||
|
$link_color = (empty($link_color) ? Config::get('frio', 'link_color') : $link_color);
|
||||||
|
$background_color = (empty($background_color) ? Config::get('frio', 'background_color') : $background_color);
|
||||||
|
$background_image = (empty($background_image) ? Config::get('frio', 'background_image') : $background_image);
|
||||||
|
|
||||||
|
//If login theme unset default to master default
|
||||||
//Set some defaults - we have to do this after pulling owner settings, and we have to check for each setting
|
//Set some defaults - we have to do this after pulling owner settings, and we have to check for each setting
|
||||||
//individually. If we don't, we'll have problems if a user has set one, but not all options.
|
//individually. If we don't, we'll have problems if a user has set one, but not all options.
|
||||||
$nav_bg = (empty($nav_bg) ? '#708fa0' : $nav_bg);
|
$nav_bg = (empty($nav_bg) ? '#708fa0' : $nav_bg);
|
||||||
|
|
Loading…
Reference in a new issue