re-use background color from theme in the firstrunwizard

This commit is contained in:
Bjoern Schiessle 2016-07-28 10:43:06 +02:00
parent 39712d1adc
commit 6aede49ea1
No known key found for this signature in database
GPG Key ID: 2378A753E2BF04F6
1 changed files with 9 additions and 0 deletions

View File

@ -231,6 +231,15 @@ class ThemingController extends Controller {
$responseCss .= 'input[type="radio"].radio:checked:not(.radio--white):not(:disabled) + label:before {' .
'background-image: url(\'data:image/svg+xml;base64,'.Util::generateRadioButton($elementColor).'\');' .
"}\n";
$responseCss .= '
#firstrunwizard .firstrunwizard-header {
background-color: ' . $color . ';
}
#firstrunwizard p a {
color: ' . $color . ';
}
';
}
$logo = $this->config->getAppValue($this->appName, 'logoMime');
if($logo !== '') {