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 583f86d90a
commit be365b4975
No known key found for this signature in database
GPG key ID: 2378A753E2BF04F6

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 !== '') {