]> source.dussan.org Git - nextcloud-server.git/commitdiff
apply theme to the firstrunwizard
authorBjoern Schiessle <bjoern@schiessle.org>
Thu, 28 Jul 2016 08:33:07 +0000 (10:33 +0200)
committerBjoern Schiessle <bjoern@schiessle.org>
Thu, 28 Jul 2016 15:43:45 +0000 (17:43 +0200)
apps/theming/lib/controller/themingcontroller.php

index 6a61293828f2c01be95f6300a8d8f140ee11a541..7619ec4a6b1aafaed13794bf2e6b8d6dd4d3e2b5 100644 (file)
@@ -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";