mirror of
https://github.com/nextcloud/server.git
synced 2026-06-10 17:23:59 -04:00
re-use background color from theme in the firstrunwizard
This commit is contained in:
parent
583f86d90a
commit
be365b4975
1 changed files with 9 additions and 0 deletions
|
|
@ -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 !== '') {
|
||||
|
|
|
|||
Loading…
Reference in a new issue