1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Closes #7661: Remove forced styling of custom banners

This commit is contained in:
jeremystretch
2021-12-19 15:33:48 -05:00
parent 85f9690377
commit 14fc37a8b8
3 changed files with 4 additions and 3 deletions

View File

@ -4,6 +4,7 @@
### Enhancements
* [#7661](https://github.com/netbox-community/netbox/issues/7661) - Remove forced styling of custom banners
* [#7665](https://github.com/netbox-community/netbox/issues/7665) - Add toggle to show only available child prefixes
* [#8057](https://github.com/netbox-community/netbox/issues/8057) - Dynamic object tables using HTMX
* [#8080](https://github.com/netbox-community/netbox/issues/8080) - Link to NAT IPs for device/VM primary IPs

View File

@ -59,7 +59,7 @@
</nav>
{% if config.BANNER_TOP %}
<div class="alert alert-info text-center mx-3" role="alert">
<div class="text-center mx-3">
{{ config.BANNER_TOP|safe }}
</div>
{% endif %}
@ -99,7 +99,7 @@
</div>
{% if config.BANNER_BOTTOM %}
<div class="alert alert-info text-center mx-3" role="alert">
<div class="text-center mx-3">
{{ config.BANNER_BOTTOM|safe }}
</div>
{% endif %}

View File

@ -8,7 +8,7 @@
{# Login banner #}
{% if config.BANNER_LOGIN %}
<div class="alert alert-secondary mw-90 mw-md-75 mw-lg-80 mw-xl-75 mw-xxl-50" role="alert">
<div class="mw-90 mw-md-75 mw-lg-80 mw-xl-75 mw-xxl-50">
{{ config.BANNER_LOGIN|safe }}
</div>
{% endif %}