Skip to content

Commit fb8ea93

Browse files
TASK: Introduce cke-overwrite styles
Sometimes we need to overwrite global ck editor styles. We can put them here.
1 parent f7c984e commit fb8ea93

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

packages/neos-ui-ckeditor5-bindings/src/ckEditorApi.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import DecoupledEditor from '@ckeditor/ckeditor5-editor-decoupled/src/decouplede
33
import {actions} from '@neos-project/neos-ui-redux-store';
44
import {cleanupContentBeforeCommit} from './cleanupContentBeforeCommit'
55
// FIXME import from @ckeditor/ckeditor5-engine/theme/placeholder.css instead! (Needs build setup configuration)
6+
import './cke-overwrites.vanilla-css';
67
import './placeholder.vanilla-css';
78

89
let currentEditor = null;
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/**
2+
* Overwriting CKEditor 5 styles for the general rendering in the Neos UI
3+
*/
4+
5+
/* hides powered-by logo */
6+
.ck-powered-by-balloon {
7+
display: none;
8+
}

0 commit comments

Comments
 (0)