View Full Version : Color substitution for red and green
I'm red/green colorblind like 20% of the male population. I can't tell the difference between red and green squares on the overview page. Dark green and Dark Red would be ok but light colors look the same to me.
Is there anyway to change this on a per user basis? Either in the Zabbix configuration or in firefox's userContent.css?
FWIW I don't have access to the Zabbix server
A quick inspection of the content in firebug:
For "normal" (green):
table.tableinfo tr td.normal {
background-color:#AADDAA;
border:1px solid #AADDAA;
}
for "high" (red):
table.tableinfo tr td.high {
background-color:#FF8888;
border:1px solid #FF8888;
}
I guess these valuse could be overridden in userContent.css
I've added this to the end of my userContent.css:
table.tableinfo tr td.normal {
background-color:#339900;
border:1px solid #339900;
}
table.tableinfo tr td.high {
background-color:#990000;
border:1px solid #990000;
}
Then stop & start firefox. It doesn't seem to make a difference :-(
Has anyone found a working fix for this? One of my developers is colorblind and he can't tell up from down when looking at the status pages.
css.css line ~1090 try to change those color attributes.
Aly thanks for the quick reply but chaning the values in css.css didn't seem to change anything. Tried ff, opera and ie7 with cleared caches.
.enabled { color: #3300FF; }
.disabled { color: #CD2626; }
.unknown { color: #AAAAAA; }
.on { color: #CD2626; }
.off { color: #3300FF; }
Any other suggestions? And yes, the web server was reloaded.
Also look to lines ~515.. Try to change them either.