Fixes UI artifacts in the progress window on macOS
This went unnoticed because the progress window is only ever displayed in the Google Docs integration
This commit is contained in:
parent
6db1fbd13f
commit
427044dfd2
1 changed files with 6 additions and 0 deletions
|
@ -47,6 +47,12 @@ var Zotero_ProgressBar = new function () {
|
||||||
|
|
||||||
new WindowDraggingElement(document.getElementById("quick-format-dialog"), window);
|
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";
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue