Hello.
When I open the URL link with target="_blank" (all search platforms generates such links) I see the dazzling white screen for short time during page loading in new tab. I'm using dark themes and this getting me blind. If I open the same link with "Open Link in New tab" there is not the white screen.
May be someone could help me with right direction how to change this annoying shimmering white pauses in my life?
open links with target="_blank"
Moderator: trava90
Forum rules
If your question is about general use of the browser and not specific to Linux, then please use the General Support board.
If your question is about general use of the browser and not specific to Linux, then please use the General Support board.
- letmeindude
- Banned user

- Posts: 150
- Joined: 2018-10-09, 08:56
Re: open links with target="_blank"
Try this in userChrome.css
And try this in userContent.css
Don't forget that you will still get a little white screen if the site uses white background - for example, default YouTube theme.
Code: Select all
browser { background-color: #161616 !important; }Code: Select all
@-moz-document url("about:blank"), url("about:logopage"), url("about:newtab") {
* { background: black !important; } }