Is there a way to always show the plus icon for the new line instead of on hovering❓
The plus sign to show the toolbar is only visible when one hovers over a block which is fine for blocks that are already filled. But is there a way to to keep it visible for the next/new block, with no need to hover over it?
Update: I think @azterizm's approach has the least impact on editorjs.
~~I think it needs to modify the code.~~
~~The code for showing the toolbar after the hovering block is here:~~
https://github.com/codex-team/editor.js/blob/870e265af0e2114c0a1504a70148ea3c5e28d959/src/components/modules/ui.ts#L405-L407
Thanks for responding but how do I access this location in my react app?
Override the editor styles. Put these in your CSS file and import.
.ce-toolbar__actions {
opacity: 1 !important;
}
.ce-toolbar {
display: block !important;
}
I would like to always show the edit/drag icon for every block as well. Not just the plus icon at the bottom. Is there any way to do this?