- Issue created by @wrd-oaitsd
Hi @wrd-oaitsd,
I tried to replicate the issue but I am unable to replicate can you share more information or add steps in STR?
Tested with CKEditor 5 and version 8.x-3.0-rc9
- ๐บ๐ธUnited States wrd-oaitsd
OK, I was able to reproduce the problem with a standard install. I've added the steps to the issue description.
- ๐บ๐ธUnited States wrd-oaitsd
I'm not sure if this is helpful, but disabling this "top" style seems to fix the problem...at least, it looks that way. I'm not sure if it causes other problems.
.ck.ck-sticky-panel .ck-sticky-panel__content.ck-sticky-panel__content_sticky { z-index: 2; /* top: calc(var(--gin-toolbar-y-offset) + var(--gin-sticky-offset)) !important; */ }
- First commit to issue fork.
- Merge request !403Issue #3418963: fix CKEditor 5 full screen toolbar overlaping issue โ (Open) created by josue2591
- ๐จ๐ทCosta Rica josue2591
I just created a merge request to address this issue, I use some selectors with more specificity to work with the data attribute the ckeditor5_fullscreen adds.
- Status changed to Needs work
8 months ago 8:48pm 5 April 2024 - ๐บ๐ธUnited States callinmullaney
@josue2591's patches works pretty well. However, I found that the horizontal toolbar still needs to be accounted for. The following CSS did the trick:
[data-fullscreen=fullscreeneditor] .ck .ck.ck-sticky-panel .ck-sticky-panel__content { top: 0 !important; } .toolbar-horizontal [data-fullscreen=fullscreeneditor].ck.ck-editor, .toolbar-horizontal [data-fullscreen=fullscreeneditor] .ck .ck.ck-sticky-panel .ck-sticky-panel__content.ck-sticky-panel__content_sticky { top: var(--gin-toolbar-y-offset) !important; } [data-fullscreen=fullscreeneditor] .ck .ck.ck-editor__editable { max-height: 100%; }
Note: The solution proposed in #8 does resolve the fullscreen bug reported in this issue. However, remove this top styling would then break the sticky offset happening when it is not in full screen. See attached screenshot for clarification.
- ๐ฎ๐ณIndia pradhumanjainOSL
pradhumanjain2311 โ made their first commit to this issueโs fork.
- Merge request !412Issue #3418963: CKEditor 5 full screen toolbar overlaps content in Gin theme โ (Open) created by Unnamed author
-
saschaeggi โ
committed 0c1ed63c on 8.x-3.x
Issue #3418963 by saschaeggi, Josue2591, wrd-oaitsd, callinmullaney:...
-
saschaeggi โ
committed 0c1ed63c on 8.x-3.x
- Status changed to Fixed
7 months ago 8:39am 10 May 2024 - ๐จ๐ญSwitzerland saschaeggi Zurich
I went with a way simpler solution to fix this issue. Thanks y'all for participating here ๐
Automatically closed - issue fixed for 2 weeks with no activity.