Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The Clear Browsing Cache's "popup" is unreadable when using a dark GTK Theme on Linux - Here how to fix it #6

Closed
hasB4K opened this issue May 1, 2018 · 1 comment

Comments

@hasB4K
Copy link

hasB4K commented May 1, 2018

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:

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,

@dessant
Copy link
Owner

dessant commented May 1, 2018

Thanks! 😆

@dessant dessant closed this as completed in 4723ed8 May 1, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants