v1.0.17 — Divi borders + box-shadows render in popup
Divi-side image decorations now render correctly in the popup.
What was happening
Plain CSS `border` (from Divi's Border panel) was already working — the plugin doesn't override `border` anywhere. But related decorations were silently clipped by `.aqm-popup-container { overflow: hidden }` (carried over from the v1.0.11 no-scrollbar work):
- `box-shadow` from Divi's Box Shadow panel
- `outline` (some modules use this for accent rings)
- Decorative `::before`/`::after` pseudo-elements that render outside their owner's box
What v1.0.17 does
Container switched to `overflow: visible`. Decorations now render beyond the container's box edge.
Image overflow is still prevented — v1.0.16's `max-width` + `max-height` constraints applied directly to `img`/`video` are unchanged, so the image still fits within the viewport (minus overlay padding). The overlay's own `overflow: hidden` catches anything that extends beyond the viewport edge, so the no-page-scrollbar guarantee is intact.
Niche side effect
If your popup content is a tall text block that exceeds the available height, the text will now overflow the container visibly rather than being clipped. For text-heavy popups, design content that fits the viewport, or restore the old behavior in Divi → Custom CSS:
```css
.aqm-popup-container { overflow: hidden; }
```