PDA

View Full Version : Color substitution for red and green


tbuskey
04-02-2008, 21:52
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

skogan
04-02-2008, 22:42
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

tbuskey
04-02-2008, 23:04
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 :-(

jeenam
07-05-2008, 07:00
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.

Aly
07-05-2008, 14:15
css.css line ~1090 try to change those color attributes.

jeenam
07-05-2008, 14:26
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.

Aly
08-05-2008, 13:40
Also look to lines ~515.. Try to change them either.