diff --git a/chrome/content/zotero-platform/mac/noteeditor.css b/chrome/content/zotero-platform/mac/noteeditor.css
index 2bd0977f9..946584776 100644
--- a/chrome/content/zotero-platform/mac/noteeditor.css
+++ b/chrome/content/zotero-platform/mac/noteeditor.css
@@ -1,4 +1,8 @@
row > label:first-child
{
color: #7f7f7f;
+}
+
+textbox[type="styled"] {
+ border-style: none;
}
\ No newline at end of file
diff --git a/chrome/content/zotero/bindings/noteeditor.xml b/chrome/content/zotero/bindings/noteeditor.xml
index 647b534bd..2ccad2b02 100644
--- a/chrome/content/zotero/bindings/noteeditor.xml
+++ b/chrome/content/zotero/bindings/noteeditor.xml
@@ -102,16 +102,7 @@
@@ -137,10 +128,14 @@
@@ -160,7 +155,6 @@
-
-
-
-
-
-
-
-
+
@@ -394,7 +342,7 @@
-
+
@@ -416,19 +364,32 @@
]]>
+
+
+
+
+
+
@@ -452,15 +413,9 @@
0) {
- if (this.id('seeAlsoPopup').openPopupAtScreen) {
- var x = this.boxObject.screenX;
- var y = this.boxObject.screenY;
- this.id('seeAlsoPopup').openPopupAtScreen(x, y, false);
- }
- // Deprecated method for Firefox 2
- else {
- this.id('seeAlsoPopup').showPopup(this.id('seeAlsoLabel'), -1, -1, 'popup');
- }
+ var x = this.boxObject.screenX;
+ var y = this.boxObject.screenY;
+ this.id('seeAlsoPopup').openPopupAtScreen(x, y, false);
}
else {
this.id('seeAlso').add();
@@ -482,6 +437,39 @@
]]>
+
+
+
+
+
@@ -499,6 +487,10 @@
+
+
+
+
diff --git a/chrome/content/zotero/zoteroPane.xul b/chrome/content/zotero/zoteroPane.xul
index 9e4accf4c..9fb37eccf 100644
--- a/chrome/content/zotero/zoteroPane.xul
+++ b/chrome/content/zotero/zoteroPane.xul
@@ -421,7 +421,7 @@
-
+
diff --git a/chrome/locale/en-US/zotero/zotero.properties b/chrome/locale/en-US/zotero/zotero.properties
index 7e5a450ce..0fa179c25 100644
--- a/chrome/locale/en-US/zotero/zotero.properties
+++ b/chrome/locale/en-US/zotero/zotero.properties
@@ -200,6 +200,7 @@ pane.item.related = Related:
pane.item.related.count.zero = %S related:
pane.item.related.count.singular = %S related:
pane.item.related.count.plural = %S related:
+pane.item.parentItem = Parent Item:
noteEditor.editNote = Edit Note
diff --git a/chrome/skin/default/zotero/bindings/noteeditor.css b/chrome/skin/default/zotero/bindings/noteeditor.css
index ff0ddbd87..329e17221 100644
--- a/chrome/skin/default/zotero/bindings/noteeditor.css
+++ b/chrome/skin/default/zotero/bindings/noteeditor.css
@@ -49,4 +49,10 @@ vbox > hbox:first-child > linksbox {
vbox > hbox:not(:first-child) > linksbox {
margin-top: 4px;
+}
+
+textbox[type="styled"] {
+ border-width: 0 1px 0 1px;
+ border-style: solid;
+ border-color: rgb(204, 204, 204);
}
\ No newline at end of file