Added more dividers on action menus to sectionize, removed some unnessesary html5 code

This commit is contained in:
johnny@pittpc.com
2021-01-20 18:40:33 -05:00
parent cefc68c6d0
commit 7b28678110
25 changed files with 102 additions and 59 deletions

View File

@@ -103,11 +103,12 @@ $total_pages = ceil($total_found_rows / 10);
<td><?php echo $network_dhcp_range; ?></td>
<td>
<div class="dropdown dropleft text-center">
<button class="btn btn-secondary btn-sm" type="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<button class="btn btn-secondary btn-sm" type="button" data-toggle="dropdown">
<i class="fas fa-ellipsis-h"></i>
</button>
<div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
<div class="dropdown-menu">
<a class="dropdown-item" href="#" data-toggle="modal" data-target="#editNetworkModal<?php echo $network_id; ?>">Edit</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="post.php?delete_network=<?php echo $network_id; ?>">Delete</a>
</div>
</div>