If you are unable to create a new account, please email support@bspsoftware.com

 

News:

MetaManager - Administrative Tools for IBM Cognos
Pricing starting at $2,100
Download Now    Learn More

Main Menu

Definining .hover behaviour in GlobalReportStyles.css

Started by snowy, 06 May 2011 06:55:50 AM

Previous topic - Next topic

snowy

We're trying to define the mouseover properties of a report text element, using the GlobalReportStyles.css file.

We have successfully modified the appearance of the hyperlink class as follows:

.hy /* hyperlink */
{
   color: black;
   cursor: pointer;
   border-bottom:1px dashed #BEBEBE;
}

and this works fine in the report. However, we also want to define the .hover behaviour (or pseudo class) for the hyperlink class, with something like this:

.hy:hover /* hyperlink hover-over*/
{
   border-bottom:1px solid #FFFFFF;
}

But this seems to be ignored by the report. We've tried various things but have had no success so far. Is it possible? Or should we be using another method?