From 32b7f3689d6e0bbf2049b7a3c720b4acb94eb0ea Mon Sep 17 00:00:00 2001 From: pierreeurope Date: Wed, 18 Feb 2026 21:36:33 +0100 Subject: [PATCH] fix: prevent scrollbars in inline toolbar on Safari The inline popover items container inherits overflow-y: auto from popover.css. In Safari, this causes scrollbars to appear in the inline toolbar when selecting text, partially covering toolbar items. Adding overflow: hidden to the ce-popover__items selector inside ce-popover--inline prevents the browser from rendering scroll controls since the flex layout handles all item positioning. --- 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..1d976d040 100644 --- a/src/styles/popover-inline.css +++ b/src/styles/popover-inline.css @@ -14,6 +14,7 @@ .ce-popover__items { display: flex; + overflow: hidden; } .ce-popover__container {