mirror of
https://github.com/codex-team/editor.js
synced 2026-03-15 15:15:47 +01:00
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 <noreply@anthropic.com>
This commit is contained in:
parent
a89f3d0eda
commit
a00cdff936
1 changed files with 1 additions and 0 deletions
|
|
@ -14,6 +14,7 @@
|
|||
|
||||
.ce-popover__items {
|
||||
display: flex;
|
||||
overflow-y: visible;
|
||||
}
|
||||
|
||||
.ce-popover__container {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue