commit c7c27935d02336d521f7ae966303acf4d04185d2
parent 744b4a597bb91ca354135f9ea2e2574423f21378
Author: Dan Stillman <dstillman@zotero.org>
Date: Sat, 9 Oct 2010 08:12:37 +0000
Fix CSS paths in read-only note and integration views (not yet tested)
Diffstat:
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/chrome/content/zotero/tinymce/integration.html b/chrome/content/zotero/tinymce/integration.html
@@ -26,7 +26,7 @@ html, body {
// General options
mode : "none",
theme : "advanced",
- content_css : "chrome://zotero/skin/tinymce/integration-content.css",
+ content_css : "css/integration-content.css",
// Theme options
theme_advanced_buttons1 : "bold,italic,underline,|,sub,sup,|,removeformat",
diff --git a/chrome/content/zotero/tinymce/noteview.html b/chrome/content/zotero/tinymce/noteview.html
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>TinyMCE</title>
-<link type="text/css" rel="stylesheet" href="chrome://zotero/skin/tinymce/note-ui.css"/>
+<link type="text/css" rel="stylesheet" href="css/note-ui.css"/>
<style>
table.mceLayout > tbody > tr.mceLast {
top: 0;
@@ -15,7 +15,7 @@ table.mceLayout > tbody > tr.mceLast {
body_id : "zotero-tinymce-note",
mode : "none",
theme : "advanced",
- content_css : "chrome://zotero/skin/tinymce/note-content.css",
+ content_css : "css/note-content.css",
button_tile_map : true,
language : "en", // TODO: localize
entity_encoding : "raw",