also adjust log in background color in theme

This commit is contained in:
Jan-Christoph Borchardt 2016-07-19 12:08:59 +02:00
parent 444684821c
commit 5bc34c2d8d
1 changed files with 1 additions and 1 deletions

View File

@ -213,7 +213,7 @@ class ThemingController extends Controller {
$color = $this->config->getAppValue($this->appName, 'color');
if($color !== '') {
$responseCss .= sprintf(
'#body-user #header,#body-settings #header,#body-public #header,.searchbox input[type="search"]:focus,.searchbox input[type="search"]:active,.searchbox input[type="search"]:valid {background-color: %s}',
'#body-user #header,#body-settings #header,#body-public #header,#body-login,.searchbox input[type="search"]:focus,.searchbox input[type="search"]:active,.searchbox input[type="search"]:valid {background-color: %s}',
$color
);
}