Tweak padding for test-build warning

This commit is contained in:
Dan Stillman 2023-12-20 04:29:26 -05:00
parent b18a47b0d2
commit 16f66227bd

View file

@ -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');
};