style(DialogWidget): remove backdrop filter for non-modal overlay

- Updated the non-modal dialog overlay to have no backdrop filter, enhancing visual clarity.
- Set the modal property to false in MessagesDialog to ensure proper dialog behavior.
This commit is contained in:
Torsten Schulz (local)
2026-03-27 15:17:18 +01:00
parent 8a1ff52a61
commit 31a96aaf60
2 changed files with 2 additions and 1 deletions

View File

@@ -195,6 +195,7 @@ export default {
.dialog-overlay.non-modal { .dialog-overlay.non-modal {
background: transparent; background: transparent;
backdrop-filter: none;
pointer-events: none; pointer-events: none;
} }

View File

@@ -5,6 +5,7 @@
:title="'falukant.messages.title'" :title="'falukant.messages.title'"
:isTitleTranslated="true" :isTitleTranslated="true"
icon="falukant/messages24.png" icon="falukant/messages24.png"
:modal="false"
:buttons="[ :buttons="[
{ text: 'falukant.messages.markAllRead', action: 'markAll' }, { text: 'falukant.messages.markAllRead', action: 'markAll' },
{ text: 'message.close', action: 'close' } { text: 'message.close', action: 'close' }
@@ -363,4 +364,3 @@ export default {
.pagination button { padding: .25em .6em; } .pagination button { padding: .25em .6em; }
.pagination input[type="number"] { width: 4em; text-align: right; } .pagination input[type="number"] { width: 4em; text-align: right; }
</style> </style>