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:
@@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user