[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.

6 points · 2 comments · view on lemmy.world

2 Comments

MrOtherGuy@lemmy.world · 2 pts · 1y (1 reply)

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");
}
Godie@lemmy.world · 1 pts · 1y

Thanks. 😄👍 💙