diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2017-12-19 14:41:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-19 14:41:42 +0100 |
commit | cfd116b5f91921e5e800d947ed84242599bd891c (patch) | |
tree | affe1bfeddb4cc743f5e2eff844134b38665a12c /core | |
parent | e550a3ddd8a391a25581302dc87d4877f6c53f0d (diff) | |
parent | 48b62a0eee8b670d92a2eaeefe0cbcd82a072013 (diff) | |
download | nextcloud-server-cfd116b5f91921e5e800d947ed84242599bd891c.tar.gz nextcloud-server-cfd116b5f91921e5e800d947ed84242599bd891c.zip |
Merge pull request #7566 from nextcloud/fix-opening-the-menu-in-a-share-page
Fix opening the menu in a share page
Diffstat (limited to 'core')
-rw-r--r-- | core/css/header.scss | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/core/css/header.scss b/core/css/header.scss index 21305de0d02..b5bb8ca9c5b 100644 --- a/core/css/header.scss +++ b/core/css/header.scss @@ -78,11 +78,14 @@ background-color: $color-main-background; filter: drop-shadow(0 1px 3px $color-box-shadow); border-radius: 0 0 3px 3px; - display: none; box-sizing: border-box; z-index: 2000; position: absolute; + &:not(.popovermenu) { + display: none; + } + /* Dropdown arrow */ &:after { border: 10px solid transparent; |