diff options
-rw-r--r-- | src/usr/local/www/widgets/widgets/gateways.widget.php | 31 |
1 files changed, 16 insertions, 15 deletions
diff --git a/src/usr/local/www/widgets/widgets/gateways.widget.php b/src/usr/local/www/widgets/widgets/gateways.widget.php index dfabae3..fd8aa8f 100644 --- a/src/usr/local/www/widgets/widgets/gateways.widget.php +++ b/src/usr/local/www/widgets/widgets/gateways.widget.php @@ -83,23 +83,24 @@ if ($_POST) { } ?> -<table class="table table-striped table-hover"> - <thead> - <tr> - <th><?=gettext("Name")?></th> - <th>RTT</th> - <th>RTTsd</th> - <th><?=gettext("Loss")?></th> - <th><?=gettext("Status")?></th> - </tr> - </thead> - <tbody id="gwtblbody"> +<div class="table-responsive"> + <table class="table table-striped table-hover table-condensed"> + <thead> + <tr> + <th><?=gettext("Name")?></th> + <th>RTT</th> + <th>RTTsd</th> + <th><?=gettext("Loss")?></th> + <th><?=gettext("Status")?></th> + </tr> + </thead> + <tbody id="gwtblbody"> <?php - print(compose_table_body_contents()); + print(compose_table_body_contents()); ?> - </tbody> -</table> - + </tbody> + </table> +</div> <!-- close the body we're wrapped in and add a configuration-panel --> </div> |