diff options
author | JEEEEEEEEEEEEEEEEEEEEEED <118366366+jadjoud@users.noreply.github.com> | 2024-04-05 11:40:49 +0000 |
---|---|---|
committer | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-04-08 13:34:25 +0200 |
commit | 8e136c3f809c294dd406b680e12939a2df90b0ae (patch) | |
tree | 7b5ee50a05e6d825ca6ecd66c0592c549f07465b /core | |
parent | ff2100a4e515988d3ba44c7cfe734d19a6b4b377 (diff) | |
download | nextcloud-server-8e136c3f809c294dd406b680e12939a2df90b0ae.tar.gz nextcloud-server-8e136c3f809c294dd406b680e12939a2df90b0ae.zip |
fix(oc-dialog): Get rid of the overlay
- Icrement Z-index of oc-dialog-dim
- Increment z-index of oc-dialog- Insert oc-dialog-dim before oc-dialog
Co-authored-by: Co-author RayanBekri <rmt.bekri@gmail.com>"
Signed-off-by: JEEEEEEEEEEEEEEEEEEEEEED <118366366+jadjoud@users.noreply.github.com>
Diffstat (limited to 'core')
-rw-r--r-- | core/src/jquery/css/jquery.ocdialog.scss | 4 | ||||
-rw-r--r-- | core/src/jquery/ocdialog.js | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/core/src/jquery/css/jquery.ocdialog.scss b/core/src/jquery/css/jquery.ocdialog.scss index 1911dd29dc4..6fba1a78d40 100644 --- a/core/src/jquery/css/jquery.ocdialog.scss +++ b/core/src/jquery/css/jquery.ocdialog.scss @@ -4,7 +4,7 @@ border-radius: var(--border-radius-large); box-shadow: 0 0 30px var(--color-box-shadow); padding: 24px; - z-index: 10000; + z-index: 100001; font-size: 100%; box-sizing: border-box; min-width: 200px; @@ -69,7 +69,7 @@ .oc-dialog-dim { background-color: #000; opacity: .2; - z-index: 9999; + z-index: 100001; position: fixed; top: 0; left: 0; diff --git a/core/src/jquery/ocdialog.js b/core/src/jquery/ocdialog.js index 2d547443be9..75cfdc3ad05 100644 --- a/core/src/jquery/ocdialog.js +++ b/core/src/jquery/ocdialog.js @@ -234,7 +234,7 @@ $.widget('oc.ocdialog', { } this.overlay = $('<div>') .addClass('oc-dialog-dim') - .appendTo(contentDiv) + .insertBefore(this.$dialog) this.overlay.on('click keydown keyup', function(event) { if (event.target !== self.$dialog.get(0) && self.$dialog.find($(event.target)).length === 0) { event.preventDefault() |