Skip to content

Commit

Permalink
fix#1430 toast block access to search textfield
Browse files Browse the repository at this point in the history
  • Loading branch information
MrInfaith committed Sep 27, 2024
1 parent 2906e17 commit 63c3183
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion noggin/themes/almalinux/templates/main.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
</nav>
{% with flashes = get_flashed_messages(with_categories=True) %}
{% if flashes %}
<div class="container flash-messages mt-5">
<div class="container flash-messages mt-0">
{% for category, flash in flashes %}
<div class="alert alert-{{ category }} alert-dismissible fade show">
{{ flash }}
Expand Down
2 changes: 1 addition & 1 deletion noggin/themes/centos/templates/main.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
</nav>
{% with flashes = get_flashed_messages(with_categories=True) %}
{% if flashes %}
<div class="toast-container flash-messages position-fixed mt-5 top-0 start-50 translate-middle-x">
<div class="toast-container flash-messages position-fixed mt-0 top-0 start-50 translate-middle-x">
{% for category, flash in flashes %}
<div class="toast text-white bg-{{ category }} d-flex" {{"data-bs-autohide=false" if category != 'success'}} role="alert" aria-live="assertive" aria-atomic="true">
<div class="toast-body">{{ flash }}</div>
Expand Down
2 changes: 1 addition & 1 deletion noggin/themes/default/templates/main.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
</nav>
{% with flashes = get_flashed_messages(with_categories=True) %}
{% if flashes %}
<div class="toast-container flash-messages position-fixed mt-5 top-0 start-50 translate-middle-x">
<div class="toast-container flash-messages position-fixed mt-0 top-0 start-50 translate-middle-x">
{% for category, flash in flashes %}
<div class="toast text-white bg-{{ category }} d-flex" {{"data-bs-autohide=false" if category != 'success'}} role="alert" aria-live="assertive" aria-atomic="true">
<div class="toast-body">{{ flash }}</div>
Expand Down
2 changes: 1 addition & 1 deletion noggin/themes/fas/templates/main.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
</nav>
{% with flashes = get_flashed_messages(with_categories=True) %}
{% if flashes %}
<div class="toast-container flash-messages position-fixed mt-5 top-0 start-50 translate-middle-x">
<div class="toast-container flash-messages position-fixed mt-0 top-0 start-50 translate-middle-x">
{% for category, flash in flashes %}
<div class="toast text-lightstyles-{{ category }} bg-lightstyles-{{ category }} border-lightstyles-{{ category }} d-flex" {{"data-bs-autohide=false" if category != 'success'}} role="alert" aria-live="assertive" aria-atomic="true">
<div class="toast-body">{{ flash }}</div>
Expand Down

0 comments on commit 63c3183

Please sign in to comment.