How to change Table highlighted row color and selected row color?
skhotJul 13 2011 — edited Jul 13 2011I have a table and by default, the highlighted table row is "sky blue" and the selected row in "gray". Please see link -> http://farm7.static.flickr.com/6136/5935214440_68c62e8853_o.jpg
I see with Firebug the class used is p_AFHighlighed and p_AFFocused respectively.
I want to change the colors of the highlighted and selected rows. How would I do that???
Im using JDev 11.1.1.4.0
I tried the following code in my css file...
.AFHighlighted:alias
{
background-color: rgb(198,0,0);
}
I also tried this...
.AFHighlightBackground:alias
{
background-color: rgb(198,0,0);
}
I also tried this...
af|table::data-row:hover
{
background-color: rgb(198,0,0);
}
Neither of those 3 changed anything.
Edited by: Suyash on Jul 13, 2011 3:10 PM
Edited by: Suyash on Jul 13, 2011 3:11 PM
Edited by: Suyash on Jul 13, 2011 3:11 PM