diff options
author | NOYB <Al_Stu@Frontier.com> | 2016-08-01 18:08:03 -0700 |
---|---|---|
committer | NOYB <Al_Stu@Frontier.com> | 2016-08-01 18:08:03 -0700 |
commit | 9979487e0e2b24a3fa5daebc96902f78185cc64d (patch) | |
tree | ee1819cda19edef2e680e1f8db69149e32c02437 /src | |
parent | 7c97f8171fab420318548967b7113703c132be41 (diff) | |
download | pfsense-9979487e0e2b24a3fa5daebc96902f78185cc64d.zip pfsense-9979487e0e2b24a3fa5daebc96902f78185cc64d.tar.gz |
Service Running Status Indicator Icon (fa-play)
Perhaps static play icon would be better perceived as the contrast to static stop icon for for services status indicators.
Regardless of which icons are chosen, this centralized services status approach provides consistency, and the status icons, thumbs up/down, and title text can be easily changed in one place.
Diffstat (limited to 'src')
-rw-r--r-- | src/etc/inc/service-utils.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/etc/inc/service-utils.inc b/src/etc/inc/service-utils.inc index 043276f..b9d36d7 100644 --- a/src/etc/inc/service-utils.inc +++ b/src/etc/inc/service-utils.inc @@ -492,7 +492,7 @@ function get_service_status_icon($service, $withtext = true, $smallicon = false, if (get_service_status($service)) { $statustext = gettext("Running"); $text_class = "text-success"; - $fa_class = "fa fa-circle-o-notch fa-spin"; + $fa_class = "fa fa-play"; $fa_class_thumbs = "fa fa-thumbs-o-up"; $Thumbs_UpDown = "Thumbs up"; } else { |