diff --git a/chrome/content/zotero-platform/mac/attachmentbox.css b/chrome/content/zotero-platform/mac/attachmentbox.css
index 6206fe839..2bd0977f9 100644
--- a/chrome/content/zotero-platform/mac/attachmentbox.css
+++ b/chrome/content/zotero-platform/mac/attachmentbox.css
@@ -1,9 +1,4 @@
row > label:first-child
{
color: #7f7f7f;
-}
-
-*[zoteroFontSize=small] #attachment-box
-{
- font-size: 10px;
}
\ No newline at end of file
diff --git a/chrome/content/zotero-platform/mac/noteeditor.css b/chrome/content/zotero-platform/mac/noteeditor.css
index 9c23d1e91..2bd0977f9 100644
--- a/chrome/content/zotero-platform/mac/noteeditor.css
+++ b/chrome/content/zotero-platform/mac/noteeditor.css
@@ -1,9 +1,4 @@
row > label:first-child
{
color: #7f7f7f;
-}
-
-*[zoteroFontSize=small] #note-editor
-{
- font-size: 10px;
}
\ No newline at end of file
diff --git a/chrome/content/zotero-platform/mac/overlay.css b/chrome/content/zotero-platform/mac/overlay.css
index d798ad26d..0599dd20e 100644
--- a/chrome/content/zotero-platform/mac/overlay.css
+++ b/chrome/content/zotero-platform/mac/overlay.css
@@ -96,7 +96,6 @@
#zotero-view-tabbox {
background-color: #fff;
padding: 0;
- margin: 0;
}
#zotero-item-pane-content .groupbox-body {
@@ -108,13 +107,9 @@
color: #7f7f7f;
}
-#zotero-view-tabbox > tabpanels {
- margin: 0;
- padding: 0;
-}
-
#zotero-view-tabbox > tabpanels {
margin: 12px 0 0 0;
+ padding: 0;
-moz-appearance: none;
}
diff --git a/chrome/content/zotero/bindings/attachmentbox.xml b/chrome/content/zotero/bindings/attachmentbox.xml
index 2f250e8a9..ae01fca88 100644
--- a/chrome/content/zotero/bindings/attachmentbox.xml
+++ b/chrome/content/zotero/bindings/attachmentbox.xml
@@ -210,7 +210,7 @@
// Access date
if (this.displayAccessed) {
- this._id("accessed-label").value = Zotero.getString('itemFields.accessDate')+": ";
+ this._id("accessed-label").value = Zotero.getString('itemFields.accessDate')+":";
this._id("accessed").value = Zotero.Date.sqlToDate(
this.item.getField('accessDate'), true
).toLocaleString();
@@ -234,7 +234,7 @@
if (fileName) {
// TODO: localize
- this._id("fileName-label").value = "Filename: ";
+ this._id("fileName-label").value = "Filename:";
this._id("fileName").value = fileName;
fileNameRow.hidden = false;
}
@@ -252,7 +252,7 @@
var pages = pages ? pages.total : null;
if (pages) {
// TODO: localize colon
- this._id("pages-label").value = Zotero.getString('itemFields.pages') + ': ';
+ this._id("pages-label").value = Zotero.getString('itemFields.pages') + ':';
this._id("pages").value = pages;
pagesRow.hidden = false;
}
@@ -265,7 +265,7 @@
}
if (this.displayDateModified) {
- this._id("dateModified-label").value = Zotero.getString('itemFields.dateModified')+': ';
+ this._id("dateModified-label").value = Zotero.getString('itemFields.dateModified')+':';
var mtime = this.item.attachmentModificationTime;
if (mtime) {
this._id("dateModified").value = new Date(mtime).toLocaleString();
@@ -296,6 +296,8 @@
var noteEditor = this._id('note-editor');
if (this.displayNote) {
if (this.displayNoteIfEmpty || this.item.getNote() != '') {
+ Zotero.debug("setting links on top");
+ noteEditor.linksOnTop = true;
noteEditor.hidden = false;
// Don't make note editable (at least for now)
@@ -470,7 +472,7 @@
str = 'general.yes';
break;
}
- this._id("index-status-label").value = Zotero.getString('fulltext.indexState.indexed') + ': ';
+ this._id("index-status-label").value = Zotero.getString('fulltext.indexState.indexed') + ':';
indexStatus.value = Zotero.getString(str);
// Reindex button tooltip (string stored in zotero.properties)
diff --git a/chrome/content/zotero/bindings/noteeditor.xml b/chrome/content/zotero/bindings/noteeditor.xml
index 57368c793..647b534bd 100644
--- a/chrome/content/zotero/bindings/noteeditor.xml
+++ b/chrome/content/zotero/bindings/noteeditor.xml
@@ -134,6 +134,17 @@
+
+
+
+
+
+
@@ -368,7 +379,7 @@
-
+
+
diff --git a/chrome/content/zotero/tinymce/noteview.html b/chrome/content/zotero/tinymce/noteview.html
index 2565ef4e6..576217386 100644
--- a/chrome/content/zotero/tinymce/noteview.html
+++ b/chrome/content/zotero/tinymce/noteview.html
@@ -4,6 +4,11 @@
TinyMCE