Skip to content
Snippets Groups Projects
Unverified Commit be365b49 authored by Bjoern Schiessle's avatar Bjoern Schiessle
Browse files

re-use background color from theme in the firstrunwizard

parent 583f86d9
No related branches found
No related tags found
No related merge requests found
......@@ -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 !== '') {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment