Skip to content

Commit 25eefd5

Browse files
committed
Fix oversized table for Macro and Wifi Scan
Use properly table-responsive class for bootstrap 3
1 parent 11656ff commit 25eefd5

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

www/sub/macrodlg.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,16 @@
77
<h3><div class="modal-title" translate>Macro Editor</div></h3>
88
</div>
99
<div class="modal-body">
10-
<table class="table table-responsive">
10+
<div class="table-responsive">
11+
<table class="table">
1112
<thead>
1213
<tr><th></th><th translate>Name</th><th translate>Icon</th><th translate>Color</th><th translate>Target</th><th translate>Filename</th></tr>
1314
</thead>
1415
<tbody id="dlg_macro_list">
1516
</tbody>
1617
</table>
1718
</div>
19+
</div>
1820
<div class="modal-footer" >
1921
<div class="pull-left" id="macrodlg_upload_msg">
2022
<span translate>Saving</span>

www/sub/scanwifidlg.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ <h3><div class="modal-title"><span translate>List of available Access Points</sp
1111
<span id="AP_scan_status" translate>Scanning</span>
1212
<div class="loader hide_it" id="AP_scan_loader"></div>
1313
<span class='hide_it' id="AP_scan_list">
14-
<table class="table table-bordered table-striped table-responsive">
14+
<div class="table-responsive">
15+
<table class="table table-bordered table-striped">
1516
<thead class="noshowonlowres">
1617
<tr>
1718
<th translate>SSID</th>
@@ -22,6 +23,7 @@ <h3><div class="modal-title"><span translate>List of available Access Points</sp
2223
</thead>
2324
<tbody id="AP_scan_data"></tbody>
2425
</table>
26+
</div>
2527
</span>
2628
</center>
2729
</div>

0 commit comments

Comments
 (0)