diff --git a/chrome/content/zotero/integration/progressBar.js b/chrome/content/zotero/integration/progressBar.js index 2f542a47b9..8dc9dcff34 100644 --- a/chrome/content/zotero/integration/progressBar.js +++ b/chrome/content/zotero/integration/progressBar.js @@ -46,6 +46,12 @@ var Zotero_ProgressBar = new function () { } new WindowDraggingElement(document.getElementById("quick-format-dialog"), window); + + // With fx60 and drawintitlebar=true Firefox calculates the minHeight + // as titlebar+maincontent, so we have hack around that here. + if (Zotero.isMac && Zotero.platformMajorVersion >= 60) { + document.getElementById("quick-format-entry").style.marginBottom = "-22px"; + } } };