diff options
author | Mario <mario@mariovavti.com> | 2022-03-20 08:59:07 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2022-03-20 08:59:07 +0000 |
commit | bddeab3ac11efaf786ddb2a6ce3f73d8c06790ab (patch) | |
tree | 08ba5bf4f81d506b31507d9ba115ca155e1e95cf /view/theme/redbasic/php/style.php | |
parent | 591349ee7493ad09690900ecd0274ab02809c009 (diff) | |
parent | 9081a25e64e5350826eb5cc5af6879099fd031d5 (diff) | |
download | volse-hubzilla-bddeab3ac11efaf786ddb2a6ce3f73d8c06790ab.tar.gz volse-hubzilla-bddeab3ac11efaf786ddb2a6ce3f73d8c06790ab.tar.bz2 volse-hubzilla-bddeab3ac11efaf786ddb2a6ce3f73d8c06790ab.zip |
Merge branch 'dev' of https://framagit.org/hubzilla/core into dev
Diffstat (limited to 'view/theme/redbasic/php/style.php')
-rw-r--r-- | view/theme/redbasic/php/style.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php index 9cb835ec6..6ff281581 100644 --- a/view/theme/redbasic/php/style.php +++ b/view/theme/redbasic/php/style.php @@ -112,6 +112,10 @@ if(file_exists('view/theme/redbasic/css/style.css')) { $x = file_get_contents('view/theme/redbasic/css/style.css'); + if($schema === 'dark' && file_exists('view/theme/redbasic/schema/bootstrap-nightfall.css')) { + $x .= file_get_contents('view/theme/redbasic/schema/bootstrap-nightfall.css'); + } + if($narrow_navbar && file_exists('view/theme/redbasic/css/narrow_navbar.css')) { $x .= file_get_contents('view/theme/redbasic/css/narrow_navbar.css'); } |