Add rounded styling to alert messages in inventory, user, and worklog templates for improved UI consistency

This commit is contained in:
Yaro Kasear 2025-07-21 15:03:06 -05:00
parent f17051224d
commit d12023ecd1
3 changed files with 3 additions and 3 deletions

View file

@ -124,7 +124,7 @@
right=buttonBar right=buttonBar
) }} ) }}
{% if item.condition in ["Removed", "Disposed"] %} {% if item.condition in ["Removed", "Disposed"] %}
<div class="alert alert-danger"> <div class="alert alert-danger rounded-0">
This item is not available and cannot be edited. This item is not available and cannot be edited.
</div> </div>
{% endif %} {% endif %}

View file

@ -75,7 +75,7 @@
right = iconBar right = iconBar
) }} ) }}
{% if not user.active %} {% if not user.active %}
<div class="alert alert-danger">This user is inactive. You will not be able to make any changes to this record.</div> <div class="alert alert-danger rounded-0">This user is inactive. You will not be able to make any changes to this record.</div>
{% endif %} {% endif %}
{% endblock %} {% endblock %}

View file

@ -130,7 +130,7 @@
right=iconBar right=iconBar
) }} ) }}
{% if log.complete %} {% if log.complete %}
<div class="alert alert-success"> <div class="alert alert-success rounded-0">
This work item is complete. You cannot make any further changes. This work item is complete. You cannot make any further changes.
</div> </div>
{% endif %} {% endif %}