diff options
author | Morris Jobke <hey@morrisjobke.de> | 2014-08-31 19:41:58 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2014-08-31 19:41:58 +0200 |
commit | 3d35c7edccfff185e336460690650d83d9ef87e6 (patch) | |
tree | 4e39c5aee7ba397974dee000e472b9db33528c16 /core/css | |
parent | 6eb1f7a474975fb984e14a6c141e38038d93f911 (diff) | |
download | nextcloud-server-3d35c7edccfff185e336460690650d83d9ef87e6.tar.gz nextcloud-server-3d35c7edccfff185e336460690650d83d9ef87e6.zip |
fix z-index of navigation sidebar for mobile devices
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/header.css | 2 | ||||
-rw-r--r-- | core/css/mobile.css | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/core/css/header.css b/core/css/header.css index 2df8cdd3aa3..5b4610f6d57 100644 --- a/core/css/header.css +++ b/core/css/header.css @@ -135,7 +135,7 @@ display: none; overflow-y: auto; overflow-x: hidden; - z-index: 150; + z-index: 5000; } #navigation, #navigation * { -moz-box-sizing:border-box; diff --git a/core/css/mobile.css b/core/css/mobile.css index 0310b0228e2..f2b7bf75039 100644 --- a/core/css/mobile.css +++ b/core/css/mobile.css @@ -90,6 +90,7 @@ left: 0 !important; background-color: #fff; overflow-x: hidden !important; + z-index: 1000; } /* allow horizontal scrollbar in settings otherwise user management is not usable on mobile */ |