From 16f66227bd4b741c0660dbe9e068e658bf3b2bf5 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Wed, 20 Dec 2023 04:29:26 -0500 Subject: [PATCH] Tweak padding for test-build warning --- chrome/content/zotero/zoteroPane.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chrome/content/zotero/zoteroPane.js b/chrome/content/zotero/zoteroPane.js index a1bab48c04..3e709c6177 100644 --- a/chrome/content/zotero/zoteroPane.js +++ b/chrome/content/zotero/zoteroPane.js @@ -415,10 +415,10 @@ var ZoteroPane = new function() try { let isDevBuild = Zotero.version.includes('-dev'); // Uncomment to test - //isDevBuild = isDevBuild || Zotero.version.includes('.SOURCE'); + //isDevBuild = true; if (isDevBuild) { let label = document.createXULElement('label'); - label.setAttribute('style', 'font-weight: bold; color: red; cursor: pointer; margin-right: .5em'); + label.setAttribute('style', 'font-weight: bold; color: red; cursor: pointer; margin: 0 .5em 0 1em'); label.onclick = function () { Zotero.launchURL('https://www.zotero.org/support/kb/test_builds'); };