mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 07:29:32 +00:00
Migrates to Bootstrap 5
Adds bootstrap-5.0.0-beta3-dist Adds bootstrap-5.0.0 Updates bootstrap-5.0.0-beta3-dist to bootstrap-5.0.0-dist initial migration to bs v5 porting to bs5 improvements on dropdown menu filter fixed host map dropdown removed excessive padding fix button toggle re-add blog news removed text decoration for links fix button layout (#5348) remove underscore from href (#5347)
This commit is contained in:
parent
83ff018198
commit
1dce9e5842
252 changed files with 60805 additions and 30259 deletions
|
|
@ -96,9 +96,9 @@ print_page_body = function()
|
|||
<input name="lan_interfaces" type="hidden">
|
||||
<input name="wan_interfaces" type="hidden">
|
||||
|
||||
<div class="form-group" style="width:40%; margin-left:5%; display:inline-block;">
|
||||
<label for="lan_ifaces">]] print(lan_label) print[[</label>
|
||||
<select id="lan_ifaces" class="form-control" name="lan_ifaces" style="min-height: 150px;" multiple>]]
|
||||
<div class="form-group mb-3" style="width:40%; margin-left:5%; display:inline-block;">
|
||||
<label class='form-label' for="lan_ifaces">]] print(lan_label) print[[</label>
|
||||
<select id="lan_ifaces" class="form-select" name="lan_ifaces" style="min-height: 150px;" multiple>]]
|
||||
|
||||
for iface, role in pairsByKeys(ifaces) do
|
||||
printIfSelected(iface, role == "lan")
|
||||
|
|
@ -106,9 +106,9 @@ print_page_body = function()
|
|||
|
||||
print[[</select>
|
||||
</div>
|
||||
<div class="form-group" style="width:40%; margin-right:5%; display:inline-block; float:right;">
|
||||
<label for="wan_ifaces" >]] print(wan_label) print[[</label>
|
||||
<select id="wan_ifaces" class="form-control" name="wan_ifaces" style="min-height: 150px;" multiple>]]
|
||||
<div class="form-group mb-3" style="width:40%; margin-right:5%; display:inline-block; float:right;">
|
||||
<label class='form-label' for="wan_ifaces" >]] print(wan_label) print[[</label>
|
||||
<select id="wan_ifaces" class="form-select" name="wan_ifaces" style="min-height: 150px;" multiple>]]
|
||||
|
||||
for iface, role in pairsByKeys(ifaces) do
|
||||
printIfSelected(iface, role == "wan")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue