diff --git a/src/usr/local/www/bootstrap/css/pfSense.css b/src/usr/local/www/bootstrap/css/pfSense.css
index cb8ea78933..e06524f577 100644
--- a/src/usr/local/www/bootstrap/css/pfSense.css
+++ b/src/usr/local/www/bootstrap/css/pfSense.css
@@ -309,8 +309,12 @@ form .btn + .btn {
color: #5CB85C;
}
+.icon-primary
+{
+ color: #337AB7;
+}
+/** icons are often used with onclick actions, so we need the cursor to change to a pointer */
.icon-pointer
{
cursor: pointer;
- cursor: hand;
}
\ No newline at end of file
diff --git a/src/usr/local/www/diag_logs_filter.php b/src/usr/local/www/diag_logs_filter.php
index b87a4c8cda..d9f13086e8 100644
--- a/src/usr/local/www/diag_logs_filter.php
+++ b/src/usr/local/www/diag_logs_filter.php
@@ -444,19 +444,19 @@ if (!isset($config['syslog']['rawfilter'])) {
$dst_htmlclass = str_replace(array('.', ':'), '-', $filterent['dstip']);
?>
- ');" title="=gettext("Click to resolve")?>" alt="Reverse Resolve with DNS"/>
+ ');" title="=gettext("Click to resolve")?>" alt="Reverse Resolve with DNS"/>
- " alt="Easy Rule: Add to Block List" title="=gettext("Easy Rule: Add to Block List")?>" onclick="return confirm('=gettext("Do you really want to add this BLOCK rule?")?>')">
+ " alt="Easy Rule: Add to Block List" title="=gettext("Easy Rule: Add to Block List")?>" onclick="return confirm('=gettext("Do you really want to add this BLOCK rule?")?>')">
=$srcstr . ''?>
|
- ');" title="=gettext("Click to resolve")?>" class="ICON-= $dst_htmlclass; ?>" alt="Reverse Resolve with DNS"/>
+ ');" title="=gettext("Click to resolve")?>" class="ICON-= $dst_htmlclass; ?>" alt="Reverse Resolve with DNS"/>
- " title="=gettext("Easy Rule: Pass this traffic")?>" onclick="return confirm('=gettext("Do you really want to add this PASS rule?")?>')">
+ " title="=gettext("Easy Rule: Pass this traffic")?>" onclick="return confirm('=gettext("Do you really want to add this PASS rule?")?>')">
=$dststr . ''?>
|
@@ -508,7 +508,7 @@ else
print_info_box('' .
gettext("TCP Flags") . ': F - FIN, S - SYN, A or . - ACK, R - RST, P - PSH, U - URG, E - ECE, C - CWR' . '
' .
- ' = Add to block list., = Pass traffic, = Resolve');
+ ' = Add to block list., = Pass traffic, = Resolve');
?>
@@ -592,5 +592,9 @@ if (typeof getURL == 'undefined') {
};
}
+$(document).ready(function(){
+ $('.fa').tooltip();
+});
+
//]]>
diff --git a/src/usr/local/www/diag_logs_filter_dynamic.php b/src/usr/local/www/diag_logs_filter_dynamic.php
index f9cc657f1c..4a8b42b98e 100755
--- a/src/usr/local/www/diag_logs_filter_dynamic.php
+++ b/src/usr/local/www/diag_logs_filter_dynamic.php
@@ -250,4 +250,14 @@ if ($tcpcnt > 0)
gettext("TCP Flags") . ': F - FIN, S - SYN, A or . - ACK, R - RST, P - PSH, U - URG, E - ECE, C - CWR');
?>
+
+