#3400 closed defect (bug) (fixed)
Hover Styling Error on Selected Chapter with Dropdown Menu
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Milestone: | Priority: | normal | |
| Component: | Handbooks | Keywords: | Styling |
| Cc: |
Description
In the Handbook on pages that have chapter menus I noticed that while hovering over an active chapter, that has a drop down, the top level menu item white text on a white background while hovering.
Example Page:
https://make.wordpress.org/docs/handbook/developer-resources/
If you select "Developer Resources" in the chapters menu and then hover over it the effect should be recreated.
Current Styling
.menu-table-of-contents-container > ul > li.open > div > a:hover {
color: #fff;
}
Simple Fix
.menu-table-of-contents-container > ul > li.open > div > a:hover {
color: #fff;
background-color: #0073aa;
}
Attachments (1)
Change History (2)
Note: See
TracTickets for help on using
tickets.
Example hover state on menu item with children.