diff options
author | Jose Luis Duran <jlduran@users.noreply.github.com> | 2016-05-20 09:34:11 -0300 |
---|---|---|
committer | Jose Luis Duran <jlduran@users.noreply.github.com> | 2016-05-20 09:34:11 -0300 |
commit | 96abde901f0c4e81d4cac0acd2361267e6ef1b0c (patch) | |
tree | 4938c5a15d1effb03fcf99177d794cbe601f6527 | |
parent | 788c3cf58cc9a3ec9c32b2b70fe57015c4f1dced (diff) | |
download | pfsense-96abde901f0c4e81d4cac0acd2361267e6ef1b0c.zip pfsense-96abde901f0c4e81d4cac0acd2361267e6ef1b0c.tar.gz |
Fix Captive Portal's MACs icons
Standardize pass/block icons with the rest of the system
-rw-r--r-- | src/usr/local/www/services_captiveportal_mac.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/usr/local/www/services_captiveportal_mac.php b/src/usr/local/www/services_captiveportal_mac.php index 6376ccd..93dc7a9 100644 --- a/src/usr/local/www/services_captiveportal_mac.php +++ b/src/usr/local/www/services_captiveportal_mac.php @@ -92,8 +92,8 @@ $a_cp =& $config['captiveportal']; $pgtitle = array(gettext("Services"), gettext("Captive Portal"), $a_cp[$cpzone]['zone'], gettext("MACs")); $shortcut_section = "captiveportal"; -$actsmbl = array('pass' => '<font color="green" size="4">✔</font> ' . gettext("Pass"), - 'block' => '<font color="red" size="4">✘</font> ' . gettext("Block")); +$actsmbl = array('pass' => '<i class="fa fa-check text-success"></i> ' . gettext("Pass"), + 'block' => '<i class="fa fa-times text-danger"></i> ' . gettext("Block")); if ($_POST) { $pconfig = $_POST; |