Hi, I use the dark reader add on which saves my eyes from the burning white pages of the internet. Unfortunately, firefox flashes white before loading new pages. How can … (read more)
Hi, I use the dark reader add on which saves my eyes from the burning white pages of the internet. Unfortunately, firefox flashes white before loading new pages. How can this be stopped?
To reproduce, enable the dark reader add on. Go to duckduckgo in a new tab, do a search for anything and you'll see the screen flash white before loading results.
I was using this solution which was working perfectly, but it doesn't work anymore (after a recent refresh of firefox):
userChrome.css
@-moz-document url(chrome://browser/content/browser.xul)
{
#main-window,
browser[type="content-primary"],
browser[type="content"],
tabbrowser#content,
#content,
browser[type="content"] > html
{
background: #323234 !important;
}
}
userContent.css
@charset "utf-8";
/* CSS Document */
@-moz-document url("about:newtab") {
body { background-color: #011326 !important;}
}
@-moz-document url(chrome://browser/content/browser.xul) {
browser[type="content-primary"] {background: #011326 !important}
}
Any ideas?