Commit 43e0cce928b189b61e549eff184c15c0f6680eb5

Authored by Antonio Terceiro
1 parent e283f471

ActionItem1142: larger font size in TinyMCE editor

app/views/shared/tiny_mce.rhtml
... ... @@ -22,6 +22,7 @@ tinyMCE.init({
22 22 paste_insert_word_content_callback : "convertWord",
23 23 paste_use_dialog: false,
24 24 apply_source_formatting : true,
  25 + content_css: '/stylesheets/tinymce.css',
25 26 language: <%= tinymce_language.inspect %>
26 27 });
27 28  
... ...
public/stylesheets/tinymce.css 0 → 100644
... ... @@ -0,0 +1,6 @@
  1 +body.mceContentBody,
  2 +body.mceContentBody th,
  3 +body.mceContentBody td {
  4 + font-size: 12px;
  5 +}
  6 +
... ...