u/1withmanyquestions

Help me find the artist and the original source of these fox arts

Help me find the artist and the original source of these fox arts

Found this adorable art of a fox in snow on Pinterest and I really want to know from which artist did this came from, I tried to reverse search the image and managed to find another piece of art (traced back to pinterest) but I can't seem to identify which social media pages out of the results I found that belongs to the true artist that drew this.

Thank you!

https://preview.redd.it/nzbe2m57e11h1.png?width=425&format=png&auto=webp&s=db061de7c3517ef7898e96e301f62c7225821385

https://preview.redd.it/yo0hlykxe11h1.png?width=883&format=png&auto=webp&s=b0cbf77038fc317661d45556992ccb8354f1c33f

reddit.com
u/1withmanyquestions — 4 hours ago

Hello everyone, just discovered this place and I'm very new to both CSS and firefox so I'm sorry this is a stupid question!

I'm customizing my workspace recently and wanted to implement the function to show my extension in firefox popup windows, however the only code I found is from 2021:

/* Override Hiding of Toolbar Buttons in Limited Feature Windows */
*|*:root[chromehidden~="toolbar"] .chromeclass-toolbar-additional {
  display: -moz-box !important; /* default is display: none */
}/* Override Hiding of Toolbar Buttons in Limited Feature Windows */
*|*:root[chromehidden~="toolbar"] .chromeclass-toolbar-additional {
  display: -moz-box !important; /* default is display: none */
}

Which for some reasons didn't work for me, and while I can't find an updated version anywhere, the AI overview thing of google search showed this code:

:root[chromehidden~="toolbar"] .chromeclass-toolbar-additional[class*="unified-extension"],
:root[chromehidden~="toolbar"] .chromeclass-toolbar-additional#unified-extensions-button {
  display: flex !important;
}

I tried to search for the origin of this code but can't find any results, so I tried to just plug it in and it actually worked. (I'm not sure if the code is generated by AI since I can't find any other instances of it on the internet anywhere so please let me know if this is not allowed here and I'll remove this!)

I recognized the root parts being the same but I can't understand the unified-extension and the display: flex part, why adding those in managed to make the code work? Is it because of something firefox changed in the previous versions?

reddit.com
u/1withmanyquestions — 10 days ago