mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
webui: Additional Font Awesome icons (#5572)
This commit is contained in:
committed by
Neil Lathwood
parent
e53503c544
commit
6a1fd3ec05
@@ -15,7 +15,7 @@ if (!is_integer($i / 2)) {
|
||||
}
|
||||
|
||||
if ($port['ifInErrors_delta'] > 0 || $port['ifOutErrors_delta'] > 0) {
|
||||
$error_img = generate_port_link($port, "<img src='images/16/chart_curve_error.png' alt='Interface Errors' border=0>", 'port_errors');
|
||||
$error_img = generate_port_link($port, "<i class='fa fa-flag fa-lg' style='color:red' aria-hidden='true'></i>", 'port_errors');
|
||||
} else {
|
||||
$error_img = '';
|
||||
}
|
||||
@@ -52,7 +52,7 @@ $height = '40';
|
||||
$from = $config['time']['day'];
|
||||
|
||||
echo '</td><td width=135>';
|
||||
echo (formatRates(($port['ifInOctets_rate'] * 8))." <img class='optionicon' src='images/icons/arrow_updown.png' /> ".formatRates(($port['ifOutOctets_rate'] * 8)));
|
||||
echo (formatRates(($port['ifInOctets_rate'] * 8))." <i class='fa fa-arrows-v fa-lg icon-theme' aria-hidden='true'></i> ".formatRates(($port['ifOutOctets_rate'] * 8)));
|
||||
echo '<br />';
|
||||
$port['graph_type'] = 'port_bits';
|
||||
echo generate_port_link(
|
||||
|
||||
Reference in New Issue
Block a user