fix(editor): link input appearing behind modals

Resolves https://github.com/go-vikunja/vikunja/issues/1929
This commit is contained in:
kolaente 2025-12-07 23:06:39 +01:00 committed by GitHub
parent e91fba2fae
commit 819e1d6fab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ export default function inputPrompt(pos: ClientRect, oldValue: string = ''): Pro
popupElement.style.position = 'absolute'
popupElement.style.top = '0'
popupElement.style.left = '0'
popupElement.style.zIndex = '1000'
popupElement.style.zIndex = '4700'
popupElement.style.background = 'white'
popupElement.style.border = '1px solid #ccc'
popupElement.style.borderRadius = '4px'