diff options
author | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2018-01-08 03:57:15 +0100 |
---|---|---|
committer | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2018-01-08 03:57:15 +0100 |
commit | 696dad8c3e5f2d1ee1f8c062c12ae4562db69162 (patch) | |
tree | 4192482ca70c4295a717cf40011cfbcbe3fa39ec /core/css/styles.scss | |
parent | 75f3b605d3bb0552491d74c6263c9d9d7172699b (diff) | |
download | nextcloud-server-696dad8c3e5f2d1ee1f8c062c12ae4562db69162.tar.gz nextcloud-server-696dad8c3e5f2d1ee1f8c062c12ae4562db69162.zip |
Fix "New" menu shown behind the multiselect header in the file list
The "New" menu is a descendant of the controls bar, and the controls bar
and the multiselect header belong to the same stacking context. As they
had the same z-index but the multiselect header appears after the
controls bar in the DOM the controls bar and its descendants, including
the "New" menu, were rendered behind the multiselect header. Now the
controls bar has a z-index value higher than the one used for the
multiselect header to ensure that the "New" menu is rendered in front of
the multiselect header.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'core/css/styles.scss')
-rw-r--r-- | core/css/styles.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/css/styles.scss b/core/css/styles.scss index b782c4e558a..4b02041976b 100644 --- a/core/css/styles.scss +++ b/core/css/styles.scss @@ -234,7 +234,7 @@ body { padding: 0; margin: 0; background-color: rgba($color-main-background, 0.95); - z-index: 55; + z-index: 60; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; |