diff options
author | Lukas Reschke <lukas@owncloud.com> | 2014-09-09 14:23:28 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2014-09-09 14:23:28 +0200 |
commit | dc99fd768ac99c380f1110c7bd4dd84d03256cd8 (patch) | |
tree | 8a8fd3e9d0f7eb677970c82a39b44879f51002e6 | |
parent | d02f6c7ebe304e069c985f36e7eb41a85badc443 (diff) | |
parent | dc5db3dd90fde2a78afb88d0097e26a4f86e6551 (diff) | |
download | nextcloud-server-dc99fd768ac99c380f1110c7bd4dd84d03256cd8.tar.gz nextcloud-server-dc99fd768ac99c380f1110c7bd4dd84d03256cd8.zip |
Merge pull request #10948 from owncloud/fix-zindex
fix z-index of header and dropdowns, fix user menu not showing on mobile
-rw-r--r-- | core/css/header.css | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/css/header.css b/core/css/header.css index 90ed6f1387e..0223f5f18b9 100644 --- a/core/css/header.css +++ b/core/css/header.css @@ -18,7 +18,7 @@ top: 0; left: 0; right: 0; - z-index: 100; + z-index: 2000; height: 45px; line-height: 2.5em; background-color: #1d2d44; @@ -134,7 +134,7 @@ display: none; overflow-y: auto; overflow-x: hidden; - z-index: 5000; + z-index: 2000; } #navigation, #navigation * { -moz-box-sizing:border-box; @@ -264,7 +264,7 @@ position: absolute; right: 0; top: 45px; - z-index: 150; + z-index: 2000; display: none; background-color: #383c43; border-bottom-left-radius:7px; border-bottom:1px #333 solid; border-left:1px #333 solid; |