re-use background color from theme in the firstrunwizard
This commit is contained in:
parent
39712d1adc
commit
6aede49ea1
|
@ -231,6 +231,15 @@ class ThemingController extends Controller {
|
||||||
$responseCss .= 'input[type="radio"].radio:checked:not(.radio--white):not(:disabled) + label:before {' .
|
$responseCss .= 'input[type="radio"].radio:checked:not(.radio--white):not(:disabled) + label:before {' .
|
||||||
'background-image: url(\'data:image/svg+xml;base64,'.Util::generateRadioButton($elementColor).'\');' .
|
'background-image: url(\'data:image/svg+xml;base64,'.Util::generateRadioButton($elementColor).'\');' .
|
||||||
"}\n";
|
"}\n";
|
||||||
|
$responseCss .= '
|
||||||
|
#firstrunwizard .firstrunwizard-header {
|
||||||
|
background-color: ' . $color . ';
|
||||||
|
}
|
||||||
|
#firstrunwizard p a {
|
||||||
|
color: ' . $color . ';
|
||||||
|
}
|
||||||
|
';
|
||||||
|
|
||||||
}
|
}
|
||||||
$logo = $this->config->getAppValue($this->appName, 'logoMime');
|
$logo = $this->config->getAppValue($this->appName, 'logoMime');
|
||||||
if($logo !== '') {
|
if($logo !== '') {
|
||||||
|
|
Loading…
Reference in New Issue