#35162 closed defect (bug) (duplicate)
configure dashboard widget link no longer visible
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Milestone: | Priority: | normal | |
| Severity: | normal | Version: | 4.4 |
| Component: | Widgets | Keywords: | |
| Focuses: | ui, administration | Cc: |
Description
Line 753 of wp-admin\css\dashboard.css has the following:
h3:hover .edit-box {
display: inline;
}
Dashboard widget titles are now h2's instead of h3's so the "Configure" link is no longer appearing on hover as it used to. I'd submit a patch, but no idea how to do that. Here's the fix (if it's not already obvious):
h2:hover .edit-box {
display: inline;
}
Of course this also applies to dashboard-rtl.css
Change History (2)
Note: See
TracTickets for help on using
tickets.
Duplicate of #34987.