summaryrefslogtreecommitdiffstats
path: root/apps/theming
diff options
context:
space:
mode:
authorBjoern Schiessle <bjoern@schiessle.org>2016-07-28 10:33:07 +0200
committerBjoern Schiessle <bjoern@schiessle.org>2016-07-28 12:15:33 +0200
commit583f86d90a096cbb27dc9463c69f78311b4764e8 (patch)
treecf4b239da4f640358a4e3a119351719ee0c5a438 /apps/theming
parentd6c680051cd1d0a661c9a2b0201d4ab48005a077 (diff)
downloadnextcloud-server-583f86d90a096cbb27dc9463c69f78311b4764e8.tar.gz
nextcloud-server-583f86d90a096cbb27dc9463c69f78311b4764e8.zip
apply theme to the firstrunwizard
Diffstat (limited to 'apps/theming')
-rw-r--r--apps/theming/lib/controller/themingcontroller.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/theming/lib/controller/themingcontroller.php b/apps/theming/lib/controller/themingcontroller.php
index 6a61293828f..7619ec4a6b1 100644
--- a/apps/theming/lib/controller/themingcontroller.php
+++ b/apps/theming/lib/controller/themingcontroller.php
@@ -242,12 +242,19 @@ class ThemingController extends Controller {
'#header .logo-icon {' .
'background-image: url(\'./logo?v='.$cacheBusterValue.'\');' .
'background-size: contain;' .
+ '}' . "\n" .
+ '#firstrunwizard .firstrunwizard-header .logo {' .
+ 'background-image: url(\'./logo?v='.$cacheBusterValue.'\');' .
+ 'background-size: contain;' .
'}' . "\n"
);
}
$backgroundLogo = $this->config->getAppValue($this->appName, 'backgroundMime');
if($backgroundLogo !== '') {
$responseCss .= '#body-login {background-image: url(\'./loginbackground?v='.$cacheBusterValue.'\');}' . "\n";
+ $responseCss .= 'firstrunwizard .firstrunwizard-header {' .
+ 'background-image: url(\'./loginbackground?v='.$cacheBusterValue.'\');' .
+ '}' . "\n";
}
if(Util::invertTextColor($color)) {
$responseCss .= '#header .header-appname, #expandDisplayName { color: #000000; }' . "\n";