refactor #2

Merged
gru merged 3 commits from refactor into master 2025-10-30 13:09:56 +01:00
2 changed files with 22 additions and 2 deletions
Showing only changes of commit ced8cbd92e - Show all commits

View File

@@ -127,4 +127,24 @@ pre {
#global-loading.show { #global-loading.show {
display: block; display: block;
} }
.toast-fixed-anchor {
position: fixed;
right: 0;
bottom: 0;
z-index: 2000;
padding: .75rem;
pointer-events: none;
}
.toast-fixed-anchor .toast-container {
display: flex;
flex-direction: column-reverse;
align-items: end;
gap: .5rem;
}
.toast-fixed-anchor .toast {
pointer-events: auto;
}

View File

@@ -339,7 +339,7 @@
</main> </main>
<!-- Toasts --> <!-- Toasts -->
<div aria-live="polite" aria-atomic="true" class="position-fixed bottom-0 end-0 p-2" style="z-index:1080"> <div class="toast-fixed-anchor">
<div id="toast-container" class="toast-container"></div> <div id="toast-container" class="toast-container"></div>
</div> </div>