Hello XI support
How to change green table background in tables?
- really hard on eyes when tables big and checks are many
Thank you
How to change XI colors (Green background tables )
Re: How to change XI colors (Green background tables )
Can you show us a screenshot of what part / page you're looking to change exactly?
Former Nagios Employee
Re: How to change XI colors (Green background tables )
Here you go (original a lot larger and way too green (make sit hard to read)rkennedy wrote:Can you show us a screenshot of what part / page you're looking to change exactly?
You do not have the required permissions to view the files attached to this post.
Re: How to change XI colors (Green background tables )
That particular green exists in many different places in many different stylesheets. You could certainly do a grep search through *.css for #B2FF5F and replace it with your choice color, but this is something that is unlikely to persist through updates to your Nagios XI installation.
Alternate stylesheets is a planned feature for Nagios XI, but it is not implemented in the current version (5.2.8).
In the interim, you might look into something like Stylebot (Chrome), Stylish (Chrome, Firefox), Greasemonkey (Firefox), or Tampermonkey (Chrome) for your solution.
For reference, these are the relevant selectors for the "Host Group Status" page (in base.css):
Alternate stylesheets is a planned feature for Nagios XI, but it is not implemented in the current version (5.2.8).
In the interim, you might look into something like Stylebot (Chrome), Stylish (Chrome, Firefox), Greasemonkey (Firefox), or Tampermonkey (Chrome) for your solution.
For reference, these are the relevant selectors for the "Host Group Status" page (in base.css):
Code: Select all
.statustable .serviceok {
background-color: #B2FF5F !important;
padding: 2px 4px;
}
.statustable .hostup {
background-color: #B2FF5F !important;
padding: 2px 4px;
}Former Nagios employee
https://www.mcapra.com/
https://www.mcapra.com/
Re: How to change XI colors (Green background tables )
Thank youmcapra wrote:That particular green exists in many different places in many different stylesheets. You could certainly do a grep search through *.css for #B2FF5F and replace it with your choice color, but this is something that is unlikely to persist through updates to your Nagios XI installation.
Alternate stylesheets is a planned feature for Nagios XI, but it is not implemented in the current version (5.2.8).
In the interim, you might look into something like Stylebot (Chrome), Stylish (Chrome, Firefox), Greasemonkey (Firefox), or Tampermonkey (Chrome) for your solution.
For reference, these are the relevant selectors for the "Host Group Status" page (in base.css):Code: Select all
.statustable .serviceok { background-color: #B2FF5F !important; padding: 2px 4px; } .statustable .hostup { background-color: #B2FF5F !important; padding: 2px 4px; }
going to wait until this is implemented as feature in XI
Re: How to change XI colors (Green background tables )
Is it alright if I lock this thread?
Former Nagios employee
https://www.mcapra.com/
https://www.mcapra.com/
Re: How to change XI colors (Green background tables )
Yes Pleasemcapra wrote:Is it alright if I lock this thread?