diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2020-01-24 13:30:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-24 13:30:13 +0100 |
commit | aae3b5f6385f2663e27b72938294fb11ce87b7b2 (patch) | |
tree | 46906d3f5999a8ced7467cedf1b37fa75cc03ee7 | |
parent | 4c566f7498450a1e087ce1c89f32844cee683645 (diff) | |
parent | 8c8fe4a5c0866d074f3794c83274c8bf631bb423 (diff) | |
download | nextcloud-server-aae3b5f6385f2663e27b72938294fb11ce87b7b2.tar.gz nextcloud-server-aae3b5f6385f2663e27b72938294fb11ce87b7b2.zip |
Merge pull request #19111 from nextcloud/bugfix/noid/sticky-header-zindex
New file menu needs to be above the filelist header
-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 e304357e671..b6f1306708a 100644 --- a/core/css/styles.scss +++ b/core/css/styles.scss @@ -182,7 +182,7 @@ body { padding: 0; margin: 0; background-color: var(--color-main-background-translucent); - z-index: 60; + z-index: 61; /* must be above the filelist sticky header */ -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; |