summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2016-07-19 12:05:57 +0200
committerJan-Christoph Borchardt <hey@jancborchardt.net>2016-07-28 10:29:20 +0200
commit444684821ca364d4d10b38d72b276bc557d7ddec (patch)
tree59d5a010d9112af40e07c00ebf073bc18c8670cc /apps
parentfe9dee376d9e1e6f9d8f9b7adc6159f2c43e4213 (diff)
downloadnextcloud-server-444684821ca364d4d10b38d72b276bc557d7ddec.tar.gz
nextcloud-server-444684821ca364d4d10b38d72b276bc557d7ddec.zip
fix searchbox overlapping on mobile
Diffstat (limited to 'apps')
-rw-r--r--apps/theming/lib/controller/themingcontroller.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/theming/lib/controller/themingcontroller.php b/apps/theming/lib/controller/themingcontroller.php
index 0dec95cc677..12fea2f1975 100644
--- a/apps/theming/lib/controller/themingcontroller.php
+++ b/apps/theming/lib/controller/themingcontroller.php
@@ -70,7 +70,7 @@ class ThemingController extends Controller {
IRootFolder $rootFolder
) {
parent::__construct($appName, $request);
-
+
$this->template = $template;
$this->l = $l;
$this->config = $config;
@@ -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 {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
);
}