I've been trying to tweak my about:blank page background to make it black, but to no avail so far. I wonder if anyone would know of a way to make that happen, with the observation that it must affect only the about:blank page and the empty page which appears when opening new tabs (I'm guessing they're the same?).
Anyway, here's for what I already tried:
1- changing the background color from the options>content. That works but won't do, because since it affects the standard background color in every page it breaks several layouts.
2- using the folowing chrome edit:
Code: Select all
@-moz-document url("about:blank") {
background-color: #000000;
}Code: Select all
@-moz-document url-prefix(about:blank) {*{background-color:#000000;}}On a sidenote:
In case someone else has a bother with this, what I did manage to get working was to rid the white page that flashed (for an instant) when I opened a new page on a new tab (eg. when ctrl+click on a bookmark), through the use of the following chrome edit:
Code: Select all
browser { background-color: #000 !important; }

