After exploring multiple examples on the forums, I am still unable to solve this particular issue. There is a report element that links to a sub report and is designed to display in RED color. My goal is to change the CSS so that when hovering over the element, it displays a blue underline successfully with the following code:
._jrHyperLink:hover { text-decoration: underline;
color: #0563c1 ;
}
However, I also want to change the font color to #0563c1 when hovering. I attempted the following:
._jrHyperLink:hover {
color: #0563c1 ;
}
and
._jrHyperLink:hover {
color: #0563c1 !important ;
}
Unfortunately, neither of these changes the default color upon hover.
The code for the report element defining the appearance is shown below:
<td rowspan="3" style="white-space: nowrap; text-indent: 0px; vertical-align: middle;text-align: right;" tabindex="0" class="subfocus">
18,036
This translates to the following styling:
element.style {
font-family: 'DejaVu Sans', Arial, Helvetica, sans-serif;
color: #FF0000;
font-size: 14px;
line-height: 1.2578125;
font-weight: bold;
}
If any of this information is relevant, I'm unsure of what else to try.