We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6a3a6b commit 40f15d4Copy full SHA for 40f15d4
2 files changed
qa-plugin/wysiwyg-editor/ckeditor/config.js
@@ -35,4 +35,7 @@ CKEDITOR.editorConfig = function( config ) {
35
36
// Prevent blank paragraphs
37
config.fillEmptyBlocks = false;
38
+
39
+ // Add custom CSS
40
+ config.contentsCss = [CKEDITOR.getUrl('contents.css'), CKEDITOR.getUrl('contents-custom.css')];
41
};
qa-plugin/wysiwyg-editor/ckeditor/contents-custom.css
@@ -0,0 +1,8 @@
1
+/**
2
+ * Q2A custom CSS for CKEditor
3
+ * Increases default font size. You can add custom styles here to match your theme, but make sure that you do not overwrite it when upgrading Q2A!
4
+ */
5
6
+body, .cke_editable {
7
+ font-size: 15px;
8
+}
0 commit comments