Opened 7 years ago
Closed 7 years ago
#41557 closed defect (bug) (fixed)
Customize edit shortcuts mispositioned when nested inside Twenty Seventeen frontpage panel
Reported by: | westonruter | Owned by: | davidakennedy |
---|---|---|---|
Milestone: | 4.9 | Priority: | normal |
Severity: | normal | Version: | 4.7 |
Component: | Bundled Theme | Keywords: | has-patch |
Focuses: | Cc: |
Description
When using a plugin like Customize Posts which adds nested partials inside of the front page panels, the edit shortcuts for these nested partials are mispositioned in Twenty Seventeen due to this CSS selector:
/* Add some space around the visual edit shortcut buttons. */ .twentyseventeen-panel .customize-partial-edit-shortcut button { top: 30px; left: 30px; }
It should instead be using direct descendent selectors like so:
/* Add some space around the visual edit shortcut buttons. */ .twentyseventeen-panel > .customize-partial-edit-shortcut > button { top: 30px; left: 30px; }
Attachments (3)
Change History (6)
Note: See
TracTickets for help on using
tickets.
Before