commit 5c8f1c56617c2d31ff21a9966ccf3877f698c672
parent 04aa0581be23aa46e8ea8be49c15617eccab4fcf
Author: Dan Stillman <dstillman@zotero.org>
Date: Mon, 6 Jul 2009 12:30:51 +0000
Fix relative customized sizing of table cells and headings
Diffstat:
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/chrome/content/zotero/bindings/styled-textbox.xml b/chrome/content/zotero/bindings/styled-textbox.xml
@@ -297,8 +297,10 @@
// Add CSS rules to notes
if (self.mode == 'note') {
- var css = "body#zotero-tinymce.mceContentBody, "
+ var css = "body#zotero-tinymce-note.mceContentBody, "
+ "body#zotero-tinymce-note.mceContentBody p, "
+ + "body#zotero-tinymce-note.mceContentBody th, "
+ + "body#zotero-tinymce-note.mceContentBody td, "
+ "body#zotero-tinymce-note.mceContentBody pre { "
+ "font-size: "
+ Zotero.Prefs.get('note.fontSize') + "px; "