apply theme to the firstrunwizard
This commit is contained in:
parent
b28e6a7938
commit
39712d1adc
|
@ -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";
|
||||
|
|
Loading…
Reference in New Issue