Restore Pale Moon's standalone image viewing style.

This commit is contained in:
wolfbeast 2018-06-29 17:40:32 +02:00 committed by Roy Tam
commit edecb0c67d
2 changed files with 8 additions and 1 deletions

View file

@ -5,6 +5,12 @@
@media not print {
/* N.B.: Remember to update ImageDocument.css in the tree or reftests may fail! */
%ifdef MC_PALEMOON
body {
color: #eee;
background: #2E3B41;
}
%else
body {
color: #eee;
background-image: url("chrome://global/skin/media/imagedoc-darknoise.png");
@ -14,4 +20,5 @@
background: hsl(0,0%,90%) url("chrome://global/skin/media/imagedoc-lightnoise.png");
color: #222;
}
%endif
}