From 583f86d90a096cbb27dc9463c69f78311b4764e8 Mon Sep 17 00:00:00 2001
From: Bjoern Schiessle <bjoern@schiessle.org>
Date: Thu, 28 Jul 2016 10:33:07 +0200
Subject: [PATCH] apply theme to the firstrunwizard

---
 apps/theming/lib/controller/themingcontroller.php | 7 +++++++
 1 file changed, 7 insertions(+)

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";
-- 
GitLab