InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)FI Firefox Customs @fedia.io Godie @lemmy.world 6mo ago solved How to change the extensions icon of sidebar-revamp Hi, I want to change the extensions icons of sidebar-revamp but the image is in the html and I can't get it to work.
Hi, I want to change the extensions icons of sidebar-revamp but the image is in the html and I can't get it to work.
I'd probably just make the img use a variable if one is set, and then set the variable for the shadow root host based on its extensionId attribute: .button-background > img{ content: var(--my-custom-image,none); } moz-button[extensionId="some-extension-id"]{ --my-custom-image: url("image.png"); }
I'd probably just make the img use a variable if one is set, and then set the variable for the shadow root host based on its extensionId attribute:
Thanks. 😄👍 💙