summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/firewall_rules.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/usr/local/www/firewall_rules.php')
-rw-r--r--src/usr/local/www/firewall_rules.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/usr/local/www/firewall_rules.php b/src/usr/local/www/firewall_rules.php
index 70371de..641f647 100644
--- a/src/usr/local/www/firewall_rules.php
+++ b/src/usr/local/www/firewall_rules.php
@@ -303,7 +303,7 @@ display_top_tabs($tab_array);
?>
<tr id="antilockout">
<td></td>
- <td title="<?=gettext("traffic is passed")?>"><i class="fa fa-check icon-success"></i></td>
+ <td title="<?=gettext("traffic is passed")?>"><i class="fa fa-check text-success"></i></td>
<td>*</td>
<td>*</td>
<td>*</td>
@@ -321,7 +321,7 @@ display_top_tabs($tab_array);
<?php if (isset($config['interfaces'][$if]['blockpriv'])): ?>
<tr id="frrfc1918">
<td></td>
- <td title="<?=gettext("traffic is blocked")?>"><i class="fa fa-times icon-danger"></i></td>
+ <td title="<?=gettext("traffic is blocked")?>"><i class="fa fa-times text-danger"></i></td>
<td>*</td>
<td><?=gettext("RFC 1918 networks");?></td>
<td>*</td>
@@ -339,7 +339,7 @@ display_top_tabs($tab_array);
<?php if (isset($config['interfaces'][$if]['blockbogons'])): ?>
<tr id="frrfc1918">
<td></td>
- <td title="<?=gettext("traffic is blocked")?>"><i class="fa fa-times icon-danger"></i></td>
+ <td title="<?=gettext("traffic is blocked")?>"><i class="fa fa-times text-danger"></i></td>
<td>*</td>
<td><?=gettext("Reserved/not assigned by IANA");?></td>
<td>*</td>
@@ -375,16 +375,16 @@ for ($i = 0; isset($a_filter[$i]); $i++):
<?php
if ($filterent['type'] == "block") {
- $iconfn = "times icon-danger";
+ $iconfn = "times text-danger";
$title_text = gettext("traffic is blocked");
} else if ($filterent['type'] == "reject") {
- $iconfn = "hand-stop-o icon-warning";
+ $iconfn = "hand-stop-o text-warning";
$title_text = gettext("traffic is rejected");
} else if ($filterent['type'] == "match") {
$iconfn = "filter";
$title_text = gettext("traffic is matched");
} else {
- $iconfn = "check icon-success";
+ $iconfn = "check text-success";
$title_text = gettext("traffic is passed");
}
?>
@@ -691,10 +691,10 @@ for ($i = 0; isset($a_filter[$i]); $i++):
<dl class="dl-horizontal responsive">
<!-- Legend -->
<dt><?=gettext('Legend')?></dt> <dd></dd>
- <dt><i class="fa fa-check icon-success"></i></dt> <dd><?=gettext("Pass");?></dd>
+ <dt><i class="fa fa-check text-success"></i></dt> <dd><?=gettext("Pass");?></dd>
<dt><i class="fa fa-filter"></i></dt> <dd><?=gettext("Match");?></dd>
- <dt><i class="fa fa-times icon-danger"></i></dt> <dd><?=gettext("Block");?></dd>
- <dt><i class="fa fa-hand-stop-o icon-warning"></i></dt> <dd><?=gettext("Reject");?></dd>
+ <dt><i class="fa fa-times text-danger"></i></dt> <dd><?=gettext("Block");?></dd>
+ <dt><i class="fa fa-hand-stop-o text-warning"></i></dt> <dd><?=gettext("Reject");?></dd>
<dt><i class="fa fa-tasks"></i></dt> <dd> <?=gettext("Log");?></dd>
<dt><i class="fa fa-cog"></i></dt> <dd> <?=gettext("Advanced filter");?></dd>
</dl>
OpenPOWER on IntegriCloud