diff options
author | Stephen Beaver <sbeaver@netgate.com> | 2015-11-04 12:40:03 -0500 |
---|---|---|
committer | Stephen Beaver <sbeaver@netgate.com> | 2015-11-04 12:40:03 -0500 |
commit | 2ec8f0baec8a40912e7a8f5bf7f5f78e9e16c3b1 (patch) | |
tree | 2d010222c2a3ce1b465b4bb9bbe9a898438c70f5 /src/usr/local/www/interfaces_groups.php | |
parent | 09415b9e568f6f10d3f3b7e5c153109e869fc69f (diff) | |
download | pfsense-2ec8f0baec8a40912e7a8f5bf7f5f78e9e16c3b1.zip pfsense-2ec8f0baec8a40912e7a8f5bf7f5f78e9e16c3b1.tar.gz |
Buttons update to new design:wq
Diffstat (limited to 'src/usr/local/www/interfaces_groups.php')
-rw-r--r-- | src/usr/local/www/interfaces_groups.php | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/usr/local/www/interfaces_groups.php b/src/usr/local/www/interfaces_groups.php index b0b9d44..4d7c78e 100644 --- a/src/usr/local/www/interfaces_groups.php +++ b/src/usr/local/www/interfaces_groups.php @@ -106,9 +106,6 @@ $tab_array[] = array(gettext("GIF"), false, "interfaces_gif.php"); $tab_array[] = array(gettext("Bridges"), false, "interfaces_bridge.php"); $tab_array[] = array(gettext("LAGG"), false, "interfaces_lagg.php"); display_top_tabs($tab_array); - -print_info_box(gettext('Interface Groups allow you to setup rules for multiple interfaces without duplicating the rules.<br />' . - 'If you remove members from an interface group, the group rules are no longer applicable to that interface.')); ?> <div class="table-responsive"> <table class="table table-striped table-hover table-condensed"> @@ -155,12 +152,18 @@ print_info_box(gettext('Interface Groups allow you to setup rules for multiple i </table> </div> -<nav class="action-buttons"> +<nav class="action-buttons" style="margin-top: 10px;"> <a class="btn btn-success btn-sm" href="interfaces_groups_edit.php" role="button"> - <?=gettext("Add Group");?> + <i class="fa fa-plus" style="font-size:15px; vertical-align: middle; margin-right: 6px;"></i> + <?=gettext("Add");?> </a> </nav> +<div id="infoblock"> + <?=print_info_box(gettext('Interface Groups allow you to setup rules for multiple interfaces without duplicating the rules.<br />' . + 'If you remove members from an interface group, the group rules are no longer applicable to that interface.'), info)?> + +</div> <?php include("fend.inc"); |