Commit 8ecf0d01 authored by Ad Schellevis's avatar Ad Schellevis Committed by Franco Fichtner

collapse issue when using Edge, https://forum.opnsense.org/index.php?topic=2210.msg7136

(cherry picked from commit 61cb3745)
parent e1443b42
......@@ -76,24 +76,28 @@ include("head.inc");
$mac_man = load_mac_manufacturer_table();?>
<div class="tab-content content-box col-xs-12 __mb">
<div class="table-responsive">
<table class="table">
<thead>
<tr>
<th colspan="2">
<i class="fa fa-chevron-down" style="cursor: pointer;" data-toggle="collapse" data-target="#<?=htmlspecialchars($ifname);?>"></i>
<?=htmlspecialchars($ifname);?> <?=gettext("interface"); ?> (<?=htmlspecialchars($ifdescr);?>, <?=htmlspecialchars($ifinfo['hwif']);?>)
<?php
if (!isset($first_row)):
$first_row=false;?>
<div class="pull-right">
<i class="fa fa-expand" id="collapse_all" style="cursor: pointer;" data-toggle="tooltip" title="<?=gettext("collapse/expand all");?>"></i> &nbsp;
</div>
<?php
endif;?>
</th>
</tr>
</thead>
</table>
</div>
<div class="interface_details collapse table-responsive" id="<?=htmlspecialchars($ifname);?>">
<table class="table table-striped">
<thead>
<tr>
<th colspan="2">
<i class="fa fa-chevron-down" style="cursor: pointer;" data-toggle="collapse" data-target="#<?=htmlspecialchars($ifname);?>"></i>
<?=htmlspecialchars($ifname);?> <?=gettext("interface"); ?> (<?=htmlspecialchars($ifdescr);?>, <?=htmlspecialchars($ifinfo['hwif']);?>)
<?php
if (!isset($first_row)):
$first_row=false;?>
<div class="pull-right">
<i class="fa fa-expand" id="collapse_all" style="cursor: pointer;" data-toggle="tooltip" title="<?=gettext("collapse/expand all");?>"></i> &nbsp;
</div>
<?php
endif;?>
</th>
</tr>
</thead>
<tbody id="<?=htmlspecialchars($ifname);?>" class="interface_details collapse">
<tbody>
<tr>
<td width="22%"><?=gettext("Status"); ?></td>
<td width="78%"><?=$ifinfo['status'];?></td>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment