cancel
Showing results for 
Search instead for 
Did you mean: 

Underline in Cross-tab

Former Member
0 Kudos

Hi All,

In my report i have created multiple cross-tabs. As per my scenario, i have to show mouse-over underline for particular cross-tabs. I tried with  CSS coding to get mouse-over underline but It is applying for all cross-tabs.

   

Thanks & Regards,

Sud.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Sud,

Can you share the CSS script that you used for this? It might be easier to point it out to you then.

Former Member
0 Kudos

Hi Eshwar,

#CT_AVA_rowHeaderArea.zenClickable:hover,.sapzencrosstab-cellLayoutDiv:hover { text-decoration:underline; }

For CT_AVA i have to apply mouse over underline, and i dont need for remaining.

Former Member
0 Kudos

Hi Sud,

Have you tried this:


.cross1 .sapzencrosstab-DataCellContentDiv:hover, .cross1 .sapzencrosstab-HeaderCellContentDiv:hover {

text-decoration: underline !important;

}

Once you use that in your CSS file, and upload the same to your application space (Application Properties -> Custom CSS), assign "cross1" as the CSS Class (Crosstab -> Properties -> CSS Class) to the crosstabs you want to affect.

This will ensure that only the cells that you are mousing over are underlined. Hope this helps.

Thanks and Regards,

Eshwar Prasanna

Former Member
0 Kudos

Thanks Eswar, Its working fine now.

Answers (0)