Skip to Main Content

Java Development Tools

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

How to change Table highlighted row color and selected row color?

skhotJul 13 2011 — edited Jul 13 2011
I 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
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Aug 10 2011
Added on Jul 13 2011
1 comment
651 views