Commit 40f15d44 by Scott

Enlarge default CKEditor font size

parent c6a3a6b8
......@@ -35,4 +35,7 @@ CKEDITOR.editorConfig = function( config ) {
// Prevent blank paragraphs
config.fillEmptyBlocks = false;
// Add custom CSS
config.contentsCss = [CKEDITOR.getUrl('contents.css'), CKEDITOR.getUrl('contents-custom.css')];
};
/**
* Q2A custom CSS for CKEditor
* 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!
*/
body, .cke_editable {
font-size: 15px;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment