Remove the invalid width="100% attribute

Also, add the missing `table` class in a network table.

Signed-off-by: XhmikosR <xhmikosr@gmail.com>
This commit is contained in:
XhmikosR
2020-05-24 16:13:43 +03:00
parent d3cd52b992
commit 59ea121e07
10 changed files with 53 additions and 53 deletions
+10 -10
View File
@@ -29,7 +29,7 @@ $token = $_SESSION['token'];
</div>
<!-- /.box-header -->
<div class="box-body">
<table id="network-entries" class="table table-striped table-bordered" width="100%">
<table id="network-entries" class="table table-striped table-bordered">
<thead>
<tr>
<th>IP address</th>
@@ -56,15 +56,15 @@ $token = $_SESSION['token'];
</tfoot>
</table>
<label>Background color: Last query from this device seen ...</label>
<table width="100%">
<tr class="text-center">
<td class="network-recent" width="15%">just now</td>
<td class="network-gradient" width="30%">... to ...</td>
<td class="network-old" width="15%">24 hours ago</td>
<td class="network-older" width="20%">&gt; 24 hours ago</td>
<td class="network-never" width="20%">Device does not use Pi-hole</td>
</tr>
</table>
<table class="table text-center">
<tr>
<td class="network-recent" width="15%">just now</td>
<td class="network-gradient" width="30%">... to ...</td>
<td class="network-old" width="15%">24 hours ago</td>
<td class="network-older" width="20%">&gt; 24 hours ago</td>
<td class="network-never" width="20%">Device does not use Pi-hole</td>
</tr>
</table>
</div>
<!-- /.box-body -->
</div>