fix: apply proper zindex to modal dialogs

This commit is contained in:
Kloon ImKloon 2024-04-28 16:19:19 +02:00
parent 434e49bf59
commit b3201bb26c
No known key found for this signature in database
GPG Key ID: CCF1C86A995C5B6A
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,6 @@
<template>
<VueFinalModal
class="vfm-modal"
overlay-transition="vfm-fade"
content-transition="vfm-fade"
@closed="layoutStore.closeHovers"
@ -7,7 +8,6 @@
initialFocus: '#focus-prompt',
fallbackFocus: 'div.vfm__content',
}"
style="z-index: 9999999"
>
<slot />
</VueFinalModal>

View File

@ -178,3 +178,7 @@ html[dir="rtl"] .breadcrumbs a {
.vue-number-input__button::after {
background: var(--textSecondary) !important;
}
.vfm-modal {
z-index: 9999999 !important;
}