See also,
Add to css_additional.
This has been tested on vB5.2.4
Add to css_additional.
This has been tested on vB5.2.4
Code:
/* ----------------- Start CKE Changes ----------------- */
/* In order to change the CKEditor colours, you must first edit /root/JS/ckeditor-rollup-5xx.js
Search for cke_wysiwyg_frame, around line 1087
Find allowTransparency:"true"
and change it to allowTransparency:"false"
Save. You will need to do this with every upgrade.
NOW, you can change values using CSS below. */
/* Start Change Editor Background */
.cke_WYSIWYG_frame.cke_reset {
Background-color: #202020;
}
.b-editor .cke_wysiwyg_frame, .b-editor .cke_wysiwyg_div {
background: #202020;
}
/* End Change Editor Background */
/* Start Change Editor Toolbar Background */
.b-editor .cke_top {
background: #404040 none 0 0;
}
/* End Change Editor Toolbar Background */
/* Start CKE Content Panel */
.b-content-entry-panel--autosave {
background-color: #222432;
}
/* End CKE Content Panel */
/* Start CKE text */
body {
font: 13px 'Noto Sans',sans-serif;
color: #919ced;
}
/* End CKE text */
/* ----------------- END CKE Changes ----------------- */



Comment