From 43e0cce928b189b61e549eff184c15c0f6680eb5 Mon Sep 17 00:00:00 2001 From: Antonio Terceiro Date: Wed, 17 Jun 2009 19:00:23 -0300 Subject: [PATCH] ActionItem1142: larger font size in TinyMCE editor --- app/views/shared/tiny_mce.rhtml | 1 + public/stylesheets/tinymce.css | 6 ++++++ 2 files changed, 7 insertions(+), 0 deletions(-) create mode 100644 public/stylesheets/tinymce.css diff --git a/app/views/shared/tiny_mce.rhtml b/app/views/shared/tiny_mce.rhtml index 0d500e3..1d49ff4 100644 --- a/app/views/shared/tiny_mce.rhtml +++ b/app/views/shared/tiny_mce.rhtml @@ -22,6 +22,7 @@ tinyMCE.init({ paste_insert_word_content_callback : "convertWord", paste_use_dialog: false, apply_source_formatting : true, + content_css: '/stylesheets/tinymce.css', language: <%= tinymce_language.inspect %> }); diff --git a/public/stylesheets/tinymce.css b/public/stylesheets/tinymce.css new file mode 100644 index 0000000..e11f6dc --- /dev/null +++ b/public/stylesheets/tinymce.css @@ -0,0 +1,6 @@ +body.mceContentBody, +body.mceContentBody th, +body.mceContentBody td { + font-size: 12px; +} + -- libgit2 0.21.2