Hello,
Just noticed that in the new Host detail page, some icons are looking identical. It would be nice if each tab would have a different icon. More specific, I'm talking about the 'History', 'Notes' and 'Reactor' tab. Check screenshot.
Grtz
Willem
Nagios XI 5 - Identical icons
Nagios XI 5 - Identical icons
You do not have the required permissions to view the files attached to this post.
Nagios XI 5.8.1
https://outsideit.net
https://outsideit.net
-
jdalrymple
- Skynet Drone
- Posts: 2620
- Joined: Wed Feb 11, 2015 1:56 pm
Re: Nagios XI 5 - Identical icons
These are just a default for custom components. We know about the problem and have discussed it internally. Basically we need to define in the custom component framework a way for people to include their own icons.
I'll turn it into a formal feature request right now...
6681
Fair enough?
I'll turn it into a formal feature request right now...
6681
Fair enough?
Re: Nagios XI 5 - Identical icons
Sure. But the Reactor tab is Nagios property right? 
Thread can be closed. Thanks.
Thread can be closed. Thanks.
Nagios XI 5.8.1
https://outsideit.net
https://outsideit.net
-
jdalrymple
- Skynet Drone
- Posts: 2620
- Joined: Wed Feb 11, 2015 1:56 pm
Re: Nagios XI 5 - Identical icons
And that's why we link to forum threads in our feature requestsWillemDH wrote:But the Reactor tab is Nagios property right?
Closing.
-
scottwilkerson
- DevOps Engineer
- Posts: 19396
- Joined: Tue Nov 15, 2011 3:11 pm
- Location: Nagios Enterprises
- Contact:
Re: Nagios XI 5 - Identical icons
Already exists, you can customize the icons for your tabs in custom components, in your CALLBACK_SERVICE_TABS_INIT callback add “icon” to your array, similar to the following:
Code: Select all
$newtab = array(
"id" => "freevariabletab",
"title" => _("Free Variables"),
"content" => $content,
"icon" => '<i class="fa fa-line-chart fa-lg"></i>'
);
$cbdata["tabs"][] = $newtab;