diff --git a/chrome/content/zotero/bindings/attachmentbox.xml b/chrome/content/zotero/bindings/attachmentbox.xml
index 90159ae47..bff649662 100644
--- a/chrome/content/zotero/bindings/attachmentbox.xml
+++ b/chrome/content/zotero/bindings/attachmentbox.xml
@@ -201,7 +201,7 @@
urlField.onclick = function (event) {
ZoteroPane_Local.loadURI(this.value, event)
};
- urlField.className = 'text-link';
+ urlField.className = 'zotero-text-link';
}
else {
urlField.className = '';
diff --git a/chrome/content/zotero/preferences/preferences.js b/chrome/content/zotero/preferences/preferences.js
index e3f2d389f..ce9d8f767 100644
--- a/chrome/content/zotero/preferences/preferences.js
+++ b/chrome/content/zotero/preferences/preferences.js
@@ -821,7 +821,7 @@ function updatePDFToolsStatus() {
else if (part.type == 'link') {
var elem = document.createElement('label');
elem.setAttribute('value', part.text);
- elem.setAttribute('class', 'text-link');
+ elem.setAttribute('class', 'zotero-text-link');
for (var key in part.attributes) {
elem.setAttribute(key, part.attributes[key]);
@@ -851,7 +851,7 @@ function updatePDFToolsStatus() {
else if (part.type == 'link') {
var elem = document.createElement('label');
elem.setAttribute('value', part.text);
- elem.setAttribute('class', 'text-link');
+ elem.setAttribute('class', 'zotero-text-link');
for (var key in part.attributes) {
elem.setAttribute(key, part.attributes[key]);
diff --git a/chrome/content/zotero/preferences/preferences.xul b/chrome/content/zotero/preferences/preferences.xul
index e03b0654c..aa0aba24c 100644
--- a/chrome/content/zotero/preferences/preferences.xul
+++ b/chrome/content/zotero/preferences/preferences.xul
@@ -28,6 +28,7 @@
+
The following operations are for use only in rare, specific situations and should not be used for general troubleshooting.
In many cases, resetting will cause additional problems.
- See for more information.
+ See for more information.
@@ -573,7 +574,7 @@ To add a new preference:
&zotero.preferences.cite.wordProcessors.noWordProcessorPluginsInstalled;
-
+
@@ -591,7 +592,7 @@ To add a new preference:
-
+
diff --git a/chrome/content/zotero/preferences/preferences_firefox.xul b/chrome/content/zotero/preferences/preferences_firefox.xul
index 23c66a406..51b9c1bd1 100644
--- a/chrome/content/zotero/preferences/preferences_firefox.xul
+++ b/chrome/content/zotero/preferences/preferences_firefox.xul
@@ -81,7 +81,7 @@ To add a new preference:
image="chrome://zotero/skin/prefs-proxies.png" position="6">
&zotero.preferences.proxies.desc_before_link;
-
&zotero.preferences.proxies.desc_after_link;
diff --git a/chrome/content/zotero/xpcom/progressWindow.js b/chrome/content/zotero/xpcom/progressWindow.js
index 631001905..18b9c0830 100644
--- a/chrome/content/zotero/xpcom/progressWindow.js
+++ b/chrome/content/zotero/xpcom/progressWindow.js
@@ -220,7 +220,7 @@ Zotero.ProgressWindow = function(_window){
else if (part.type == 'link') {
var elem = _progressWindow.document.createElement('label');
elem.setAttribute('value', part.text);
- elem.setAttribute('class', 'text-link');
+ elem.setAttribute('class', 'zotero-text-link');
for (var i in part.attributes) {
elem.setAttribute(i, part.attributes[i]);
}
diff --git a/chrome/skin/default/zotero/zotero.css b/chrome/skin/default/zotero/zotero.css
index 4f8d33382..f43978ce2 100644
--- a/chrome/skin/default/zotero/zotero.css
+++ b/chrome/skin/default/zotero/zotero.css
@@ -143,6 +143,15 @@ dialog[resizable="true"]
-moz-binding: url('chrome://zotero/content/bindings/resizabledialog.xml#resizabledialog');
}
+label.zotero-text-link {
+ -moz-binding: url('chrome://zotero/content/bindings/text-link.xml#text-link');
+ -moz-user-focus: normal;
+ color: -moz-nativehyperlinktext;
+ text-decoration: underline;
+ border: 1px solid transparent;
+ cursor: pointer;
+}
+
.zotero-clicky
{
-moz-border-radius: 6px;