From: Bjoern Schiessle Date: Thu, 28 Jul 2016 08:33:07 +0000 (+0200) Subject: apply theme to the firstrunwizard X-Git-Tag: v11.0RC2~930^2~2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=583f86d90a096cbb27dc9463c69f78311b4764e8;p=nextcloud-server.git apply theme to the firstrunwizard --- 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";