| Summary: | Table css hover does not work with alternating rows | ||
|---|---|---|---|
| Product: | [RT] RAP | Reporter: | Markus Krüger <webmaster> |
| Component: | RWT | Assignee: | Project Inbox <rap-inbox> |
| Status: | CLOSED INVALID | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | ||
| Version: | 1.4 | ||
| Target Milestone: | --- | ||
| Hardware: | All | ||
| OS: | All | ||
| Whiteboard: | |||
Hi Markus, you have to define a style for :even:hover state like:
List-Item:hover, TableItem:hover, TreeItem:hover, List-Item:even:hover, TableItem:even:hover, TreeItem:even:hover {
background-color: #9dd0ea;
}
Thanks for the hint Ivan, it works. I could not find anything like this. |
The table hover selection background color does not work correctly if background color for even rows ist set. Might also apply to odd rows and the widgets list and tree. Here's my css definition: List-Item:hover, TableItem:hover, TreeItem:hover { background-color: #9dd0ea; } List-Item:even, TableItem:even { background-color: #E6EBF2; }