Skip to content

Commit

Permalink
TASK: Introduce cke-overwrite styles
Browse files Browse the repository at this point in the history
Sometimes we need to overwrite global ck editor styles. We can put them here.
  • Loading branch information
markusguenther committed Dec 13, 2024
1 parent 6a12d9c commit 9852559
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/neos-ui-ckeditor5-bindings/src/ckEditorApi.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import DecoupledEditor from '@ckeditor/ckeditor5-editor-decoupled/src/decouplede
import {actions} from '@neos-project/neos-ui-redux-store';
import {cleanupContentBeforeCommit} from './cleanupContentBeforeCommit'
// FIXME import from @ckeditor/ckeditor5-engine/theme/placeholder.css instead! (Needs build setup configuration)
import './cke-overwrites.vanilla-css';
import './placeholder.vanilla-css';

let currentEditor = null;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/**
* Overwriting CKEditor 5 styles for the general rendering in the Neos UI
*/

/* hides powered-by logo */
.ck-powered-by-balloon {
display: none;
}

0 comments on commit 9852559

Please sign in to comment.