fix searchbox overlapping on mobile

This commit is contained in:
Jan-Christoph Borchardt 2016-07-19 12:05:57 +02:00
parent 1fc7248dae
commit 88560096d4
2 changed files with 3 additions and 3 deletions

View File

@ -73,7 +73,7 @@ class ThemingController extends Controller {
IRootFolder $rootFolder
) {
parent::__construct($appName, $request);
$this->template = $template;
$this->l = $l;
$this->config = $config;
@ -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 {background-color: %s}',
'#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}',
$color
);
}

View File

@ -118,7 +118,7 @@ a.two-factor-cancel {
width: 155px;
max-width: 50%;
cursor: text;
background-color: transparent;
background-color: #0082c9;
border: 1px solid rgba(255, 255, 255, .5);
}