From a00cdff936cea37a359d9fa2d79ea834e9bb7ad9 Mon Sep 17 00:00:00 2001 From: Your Name Date: Thu, 19 Feb 2026 12:02:59 -0800 Subject: [PATCH] fix(popover-inline): prevent scrollbars from appearing in Safari The base popover's `.ce-popover__items` has `overflow-y: auto`, which causes Safari to render visible scrollbars on the inline toolbar. Since the inline popover container uses `width: max-content` and grows to fit its content, scrolling is not needed. Override `overflow-y` to `visible` in the inline popover items to prevent Safari from showing scrollbars. Fixes #2988 Co-Authored-By: Claude Opus 4.6 --- src/styles/popover-inline.css | 1 + 1 file changed, 1 insertion(+) diff --git a/src/styles/popover-inline.css b/src/styles/popover-inline.css index f34dddc69..4cb5ddaf7 100644 --- a/src/styles/popover-inline.css +++ b/src/styles/popover-inline.css @@ -14,6 +14,7 @@ .ce-popover__items { display: flex; + overflow-y: visible; } .ce-popover__container {