diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-08-02 22:40:52 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-08-03 10:27:38 +0200 |
commit | 248b786bd0e9fdb01af8aa43af5f763d029d5c2e (patch) | |
tree | 3d4effe5d5456affcb8a573cb1654c8ad5df275d | |
parent | 01298cfa72105802533a2f0757c45a50c6d9bc67 (diff) | |
download | nextcloud-server-248b786bd0e9fdb01af8aa43af5f763d029d5c2e.tar.gz nextcloud-server-248b786bd0e9fdb01af8aa43af5f763d029d5c2e.zip |
Fixed design zindex
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
-rw-r--r-- | core/css/apps.scss | 4 | ||||
-rw-r--r-- | core/css/styles.scss | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/core/css/apps.scss b/core/css/apps.scss index 4d1df825e69..2d43ab3f76c 100644 --- a/core/css/apps.scss +++ b/core/css/apps.scss @@ -77,7 +77,7 @@ kbd { position: fixed; top: $header-height; left: 0; - z-index: 1000; + z-index: 500; overflow-y: auto; overflow-x: hidden; // Do not use vh because of mobile headers @@ -595,7 +595,7 @@ kbd { /* APP-CONTENT AND WRAPPER ------------------------------------------ */ /* Part where the content will be loaded into */ #app-content { - z-index: 500; + z-index: 1000; background-color: var(--color-main-background); position: relative; flex-basis: 100vw; diff --git a/core/css/styles.scss b/core/css/styles.scss index 8996bee1cc3..f6977884193 100644 --- a/core/css/styles.scss +++ b/core/css/styles.scss @@ -523,7 +523,7 @@ code { width: auto; border-radius: var(--border-radius); border: none; - z-index: 500 !important; + z-index: 1600 !important; // above sidebar .ui-state-default, .ui-widget-content .ui-state-default, |