fx-compat: Item box: Fix unstyled menulists

This commit is contained in:
Abe Jellinek 2022-05-24 15:48:10 -06:00
parent fdd73d4ada
commit 5d96f9960a

View file

@ -191,6 +191,11 @@
s1.rel = "stylesheet";
s1.href = "chrome://zotero-platform/content/itemBox.css";
shadow.append(s1);
var s2 = document.createElement("link");
s2.rel = "stylesheet";
s2.href = "chrome://global/skin/global.css";
shadow.append(s2);
shadow.appendChild(document.importNode(this.content, true));