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 88560096d4
commit 12a35e46ce
1 changed files with 1 additions and 1 deletions

View File

@ -216,7 +216,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
);
}