mirror of
https://github.com/tim-krehan/shopping-list.git
synced 2024-11-23 22:30:41 +01:00
toast not clickable issue fixed
This commit is contained in:
parent
33543cc125
commit
ff2c9f777e
2 changed files with 5 additions and 21 deletions
|
@ -112,11 +112,8 @@
|
||||||
|
|
||||||
<div class="toast fixed-bottom m-2" role="alert" id="toast-pw-success" aria-live="assertive" aria-atomic="true" data-delay="4000" data-animation="true">
|
<div class="toast fixed-bottom m-2" role="alert" id="toast-pw-success" aria-live="assertive" aria-atomic="true" data-delay="4000" data-animation="true">
|
||||||
<div class="toast-header">
|
<div class="toast-header">
|
||||||
<i class="close_toast fas fa-check-square w-auto mr-2"></i>
|
<i class="fas fa-check-square w-auto mr-2"></i>
|
||||||
<strong class="mr-auto">ShoppingList</strong>
|
<strong class="mr-auto">ShoppingList</strong>
|
||||||
<button type="button" class="ml-2 mb-1 close" data-dismiss="toast" aria-label="Close">
|
|
||||||
<span aria-hidden="true">×</span>
|
|
||||||
</button>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="toast-body">
|
<div class="toast-body">
|
||||||
Passwort erfolgreich geändert!
|
Passwort erfolgreich geändert!
|
||||||
|
@ -125,11 +122,8 @@
|
||||||
|
|
||||||
<div class="toast fixed-bottom m-2" role="alert" id="toast-list-import-success" aria-live="assertive" aria-atomic="true" data-delay="4000" data-animation="true">
|
<div class="toast fixed-bottom m-2" role="alert" id="toast-list-import-success" aria-live="assertive" aria-atomic="true" data-delay="4000" data-animation="true">
|
||||||
<div class="toast-header">
|
<div class="toast-header">
|
||||||
<i class="close_toast fas fa-check-square w-auto mr-2"></i>
|
<i class="fas fa-check-square w-auto mr-2"></i>
|
||||||
<strong class="mr-auto">ShoppingList</strong>
|
<strong class="mr-auto">ShoppingList</strong>
|
||||||
<button type="button" class="ml-2 mb-1 close" data-dismiss="toast" aria-label="Close">
|
|
||||||
<span aria-hidden="true">×</span>
|
|
||||||
</button>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="toast-body">
|
<div class="toast-body">
|
||||||
Liste erfolgreich importiert!
|
Liste erfolgreich importiert!
|
||||||
|
@ -138,24 +132,18 @@
|
||||||
|
|
||||||
<div class="toast fixed-bottom m-2" role="alert" id="toast-recipe-import-success" aria-live="assertive" aria-atomic="true" data-delay="4000" data-animation="true">
|
<div class="toast fixed-bottom m-2" role="alert" id="toast-recipe-import-success" aria-live="assertive" aria-atomic="true" data-delay="4000" data-animation="true">
|
||||||
<div class="toast-header">
|
<div class="toast-header">
|
||||||
<i class="close_toast fas fa-check-square w-auto mr-2"></i>
|
<i class="fas fa-check-square w-auto mr-2"></i>
|
||||||
<strong class="mr-auto">ShoppingList</strong>
|
<strong class="mr-auto">ShoppingList</strong>
|
||||||
<button type="button" class="ml-2 mb-1 close" data-dismiss="toast" aria-label="Close">
|
|
||||||
<span aria-hidden="true">×</span>
|
|
||||||
</button>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="toast-body">
|
<div class="toast-body">
|
||||||
Rezepte erfolgreich importiert!
|
Rezepte erfolgreich importiert!
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="toast fixed-bottom m-2" role="alert" id="toast-recipe-import-warning" aria-live="assertive" aria-atomic="true" data-autohide="false" data-animation="true">
|
<div class="toast fixed-bottom m-2" role="alert" id="toast-recipe-import-warning" aria-live="assertive" aria-atomic="true" data-autohide="4000" data-animation="true">
|
||||||
<div class="toast-header">
|
<div class="toast-header">
|
||||||
<i class="close_toast fas fa-check-square w-auto mr-2"></i>
|
<i class="close_toast fas fa-check-square w-auto mr-2"></i>
|
||||||
<strong class="mr-auto">ShoppingList</strong>
|
<strong class="mr-auto">ShoppingList</strong>
|
||||||
<button type="button" class="ml-2 mb-1 close" data-dismiss="toast" aria-label="Close">
|
|
||||||
<span aria-hidden="true">×</span>
|
|
||||||
</button>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="toast-body">
|
<div class="toast-body">
|
||||||
Nicht alle Rezepte konnten importiert werden! Fehlerhafte Rezepte wieder exportiert.
|
Nicht alle Rezepte konnten importiert werden! Fehlerhafte Rezepte wieder exportiert.
|
||||||
|
|
|
@ -1,11 +1,7 @@
|
||||||
.toast {
|
.toast {
|
||||||
right: 0;
|
right: 0;
|
||||||
left: unset !important;
|
left: unset !important;
|
||||||
pointer-events: none
|
pointer-events: none;
|
||||||
}
|
|
||||||
|
|
||||||
.close_toast {
|
|
||||||
pointer-events: all;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.list-row {
|
.list-row {
|
||||||
|
|
Loading…
Reference in a new issue