Hi,
APEX 23.1.5
I have a simple Interactive Grid report and I want to change background color for column and header (both at once) when Mouse is Over column or header. How to achieve this?
Now I have used this CSS but I can see only one cell highlighted and it's not enough:
.a-GV-header:hover {
background-color: green;
}
And:
#IGstaticID .a-GV-table tr td:nth-child(5):hover,
#IGstaticID .a-GV-table tr td:nth-child(6).a-GV-cell:hover{
background: #f38e00!important;
}