Add rounded styling to alert messages in inventory, user, and worklog templates for improved UI consistency
This commit is contained in:
parent
f17051224d
commit
d12023ecd1
3 changed files with 3 additions and 3 deletions
|
@ -124,7 +124,7 @@
|
|||
right=buttonBar
|
||||
) }}
|
||||
{% 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.
|
||||
</div>
|
||||
{% endif %}
|
||||
|
|
|
@ -75,7 +75,7 @@
|
|||
right = iconBar
|
||||
) }}
|
||||
{% 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 %}
|
||||
{% endblock %}
|
||||
|
||||
|
|
|
@ -130,7 +130,7 @@
|
|||
right=iconBar
|
||||
) }}
|
||||
{% 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.
|
||||
</div>
|
||||
{% endif %}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue