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
|
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 %}
|
||||||
|
|
|
@ -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 %}
|
||||||
|
|
||||||
|
|
|
@ -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 %}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue