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.
This commit is contained in:
pierreeurope 2026-02-18 21:36:33 +01:00
commit 32b7f3689d

View file

@ -14,6 +14,7 @@
.ce-popover__items {
display: flex;
overflow: hidden;
}
.ce-popover__container {