This commit is contained in:
harukin
2018-11-22 13:05:40 +09:00
parent e30a08fae6
commit 6d4a75615b
3 changed files with 12 additions and 0 deletions

View File

@@ -14,6 +14,7 @@ if(! App::$install) {
$nav_icon_colour = get_pconfig($uid, 'plusfuture', 'nav_icon_colour');
$nav_active_icon_colour = get_pconfig($uid, 'plusfuture', 'nav_active_icon_colour');
$banner_colour = get_pconfig($uid,'plusfuture','banner_colour');
$singlepost = get_pconfig($uid,'plusfuture','singlepost');
$narrow_navbar = get_pconfig($uid,'plusfuture','narrow_navbar');
$link_colour = get_pconfig($uid, 'plusfuture', 'link_colour');
$schema = get_pconfig($uid,'plusfuture','schema');
@@ -116,6 +117,9 @@ if(file_exists('view/theme/plusfuture/css/style.css')) {
if($narrow_navbar && file_exists('view/theme/plusfuture/css/narrow_navbar.css')) {
$x .= file_get_contents('view/theme/plusfuture/css/narrow_navbar.css');
}
if($singlepost && file_exists('view/theme/plusfuture/css/singlepost.css')) {
$x .= file_get_contents('view/theme/plusfuture/css/singlepost.css');
}
if($schemecss) {
$x .= $schemecss;