mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-27 10:58:37 -06:00
Fix display bug (overflow) on BIND exports pages
This commit is contained in:
parent
254d0220dc
commit
cb33881d2c
@ -20,7 +20,7 @@
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
{% for z in zones %}
|
||||
<div class="panel panel-default">
|
||||
<div class="panel panel-default" style="box-sizing: content-box; max-width: 100%; overflow: scroll;">
|
||||
<div class="panel-heading">
|
||||
<strong class="text-md-left">{{ z.id }}</strong>
|
||||
<span class="pull-right">
|
||||
@ -29,8 +29,8 @@
|
||||
<a id="bind_export_select_{{ z.num }}" href="#">Select</a>
|
||||
</span>
|
||||
</div>
|
||||
<table class="table table-hover panel-body" style="max-width: 100%; overflow: scroll;">
|
||||
<tr style="max-width: 100%; overflow: scroll;"><td style="max-width: 100%; overflow: scroll;">
|
||||
<table class="table table-hover panel-body">
|
||||
<tr><td>
|
||||
<pre id="bind_export_{{ z.num }}" style="overflow: auto; overflow-x: auto; overflow-y: auto; word-wrap: break-word; white-space: pre;">{{ z.content }}</pre>
|
||||
</td></tr>
|
||||
</table>
|
||||
|
Loading…
Reference in New Issue
Block a user