mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
apply theme to the firstrunwizard
This commit is contained in:
parent
d6c680051c
commit
583f86d90a
1 changed files with 7 additions and 0 deletions
|
|
@ -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 a new issue