APEX 4.2.1
Theme 24. Report template Standard has the following style
table.uReport > tbody > tr:hover > td {
background-color: #EFEFEF;
}
How can I get rid of this? I copied the template to a custom template, added a conditional column template with a class but the tr:hover gets in the way and overrides the background color. In other words, Firebug shows that
table.uReport > tbody > tr > td.my_class {background-color:pink}
is over-ridden by the APEX generated style above.
Yes, adding the *!important* keyword to my inline CSS does help to suppress the hover on the td.my_class rows but for the other rows the hover still kicks in. I do not want the hover, period. I thought clearing out the
Row Highlighting attributes in the Template properties page would do the trick but that doesn't help, the hover behaviour seems to be hard-wired into the Standard template.
Help? Thanks