diff options
author | Anika Henke <anika@selfthinker.org> | 2012-07-07 09:20:51 +0100 |
---|---|---|
committer | Anika Henke <anika@selfthinker.org> | 2012-07-07 09:20:51 +0100 |
commit | 8ec3e0a3184234a895ffdc7831bcb06bf921509e (patch) | |
tree | 0a7085d6f4ef3f3ca46a309cb94f9ff90b64f2ab | |
parent | 4ba05e11e88dd654689b0f6333b1427e03d1b0fe (diff) | |
download | rpg-8ec3e0a3184234a895ffdc7831bcb06bf921509e.tar.gz rpg-8ec3e0a3184234a895ffdc7831bcb06bf921509e.tar.bz2 |
force same height on search input and tools select in mobile view
I hate using heights, but couldn't find any other way
-rw-r--r-- | lib/tpl/dokuwiki/css/mobile.css | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/tpl/dokuwiki/css/mobile.css b/lib/tpl/dokuwiki/css/mobile.css index 9138f8031..8194a1bf9 100644 --- a/lib/tpl/dokuwiki/css/mobile.css +++ b/lib/tpl/dokuwiki/css/mobile.css @@ -209,6 +209,14 @@ width: 100% !important; } +/* force same height on search input and tools select */ +#dokuwiki__sitetools form.search input.edit, +#dokuwiki__header .mobileTools select { + height: 2.1em; + line-height: 2.1em; + overflow: visible; +} + /*____________ content ____________*/ |