When editing long text in Filament's RichEditor it is extremaly annoying that the toolbar does not follow while I scroll the editor's window. I have to go up to the toolbar every time I want to make something bold or so. If the text is really long is became extremely annoying.
Is there a way to make the toolbar "sticky"?
I've found a fix but its not perfect as when you change to dark theme it doesn't look so good but on white theme looks good:
You go to "yourproject"\vendor\filament\forms\resources\views\component and look for the file rich-editor.blade.php.
In this file you have to make a few modifications so be careful to do exactly as written here: search for "fi-fo-rich-editor", on the parent div add the following code: style="max-height: 80vh;" like this:
Then you search for: "<trix-toolbar" make sure you include the "<" as well to find the exact one and add this style: style="position:sticky; top:0; z-index:19; background-color:white;" like this:
And then another improvement you can do to this file is to make the image smaller, when you upload a piture its very big in the Rich Editor: copy this code right at the top in side the brackets:
like this: