diff options
author | Jared Dillard <jdillard@netgate.com> | 2015-09-02 14:59:19 -0500 |
---|---|---|
committer | Jared Dillard <jdillard@netgate.com> | 2015-09-02 14:59:19 -0500 |
commit | 02274bf8aae1c3641fa413cab99b0f9331359dbe (patch) | |
tree | 3718bf5f9bcf199ffb9e83fa263114ac37b45d8a /src/usr/local | |
parent | ab943fc9fe8eface0036f7d947e40d48e5dd5ce7 (diff) | |
download | pfsense-02274bf8aae1c3641fa413cab99b0f9331359dbe.zip pfsense-02274bf8aae1c3641fa413cab99b0f9331359dbe.tar.gz |
convert old icons to glyphicons
Diffstat (limited to 'src/usr/local')
-rw-r--r-- | src/usr/local/www/shortcuts.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/usr/local/www/shortcuts.inc b/src/usr/local/www/shortcuts.inc index c4bf48e..b21986e 100644 --- a/src/usr/local/www/shortcuts.inc +++ b/src/usr/local/www/shortcuts.inc @@ -102,7 +102,7 @@ function get_shortcut_main_link($shortcut_section, $addspace = true, $service = break; } if (!empty($link) && ($_SERVER['REQUEST_URI'] != "/{$link}")) { - return "{$space}<a href=\"{$link}\" title=\"" . gettext("Main page for this section") . "\"><img style=\"vertical-align:middle\" src=\"/themes/{$g['theme']}/images/icons/icon_plus.gif\" border=\"0\" alt=\"plus\" /></a>"; + return "{$space}<a href=\"{$link}\" title=\"" . gettext("Main page for this section") . "\"><i class=\"icon-large icon-plus-sign\"></i></a>"; } } @@ -130,7 +130,7 @@ function get_shortcut_status_link($shortcut_section, $addspace = true, $service break; } if (!empty($link)) { - return "{$space}<a href=\"{$link}\" title=\"" . gettext("Status of items on this page") . "\"><img style=\"vertical-align:middle\" src=\"/themes/{$g['theme']}/images/icons/icon_service_status.gif\" border=\"0\" alt=\"status\" /></a>"; + return "{$space}<a href=\"{$link}\" title=\"" . gettext("Status of items on this page") . "\"><i class=\"icon-large icon-cog\"></i></a>"; } } @@ -138,7 +138,7 @@ function get_shortcut_log_link($shortcut_section, $addspace = true) { global $g, $shortcuts; $space = ($addspace) ? " " : "" ; if (!empty($shortcut_section) && !empty($shortcuts[$shortcut_section]['log'])) { - return "{$space}<a href=\"{$shortcuts[$shortcut_section]['log']}\" title=\"" . gettext("Log entries for items on this page") . "\"><img style=\"vertical-align:middle\" src=\"/themes/{$g['theme']}/images/icons/icon_logs.gif\" border=\"0\" alt=\"logs\" /></a>"; + return "{$space}<a href=\"{$shortcuts[$shortcut_section]['log']}\" title=\"" . gettext("Log entries for items on this page") . "\"><i class=\"icon-large icon-list-alt\"></i></a>"; } } |