You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since you fixed this issue: dessant/web-archives#2 - I checked your other amazing addons :). That I will definitely use to replace an old one! This add-on has the same issue, so for the record here the description of the issue:
I am using a Dark GTK Theme on Linux with Firefox. And sadly, it is quite difficult to use this plugin since the background color of the popup is almost black with this setup.
After seeing the src/action/App.vue, line 195, I would assume you just need to add the following property:
body
{
background-color:#FFFFFF!important;
}
Sadly, I did not directly tested that since it became harder to modify an extension on Firefox (lack of time mostly). However I modified my userContent.css in the profile folder of Firefox: ~/.mozilla/firefox/XXXXXXXXXX.default/chrome, and it works:
@-moz-document url("moz-extension://[...extension-hash...]/src/action/index.html")
{
body
{
background-color:#FFFFFF!important;
}
}
Thank you for your great add-on!
Best regards,
The text was updated successfully, but these errors were encountered:
Hi,
Since you fixed this issue: dessant/web-archives#2 - I checked your other amazing addons :). That I will definitely use to replace an old one! This add-on has the same issue, so for the record here the description of the issue:
I am using a Dark GTK Theme on Linux with Firefox. And sadly, it is quite difficult to use this plugin since the background color of the popup is almost black with this setup.
After seeing the
src/action/App.vue
, line 195, I would assume you just need to add the following property:Sadly, I did not directly tested that since it became harder to modify an extension on Firefox (lack of time mostly). However I modified my
userContent.css
in the profile folder of Firefox:~/.mozilla/firefox/XXXXXXXXXX.default/chrome
, and it works:Thank you for your great add-on!
Best regards,
The text was updated successfully, but these errors were encountered: