Colorizing treegrid row

Hi,

strange behavior. I try to colorize a treegrid row but color:#ff0000 is ignored. The line is:

urgentrequest is:

.urgentrequest {
color: #ff0000 !important;
font-weight: bold !important;
}

color here is ignored - font-weight works fine

if I try

.urgentrequest {
background-color: #ff0000 !important;
font-weight: bold !important;
}

both works???

Please, try to use:
.urgentrequest td{
color: #ff0000 !important;
font-weight: bold !important;
}

Works fine…

tks