TopLevelImageDocument.css 641 B

12345678910111213141516171819202122232425
  1. /* This Source Code Form is subject to the terms of the Mozilla Public
  2. * License, v. 2.0. If a copy of the MPL was not distributed with this file,
  3. * You can obtain one at http://mozilla.org/MPL/2.0/. */
  4. @media not print {
  5. /* N.B.: Remember to update ImageDocument.css in the tree or reftests may fail! */
  6. %ifdef MC_PALEMOON
  7. body {
  8. color: #eee;
  9. background: #2E3B41;
  10. }
  11. %else
  12. body {
  13. color: #eee;
  14. background-image: url("chrome://global/skin/media/imagedoc-darknoise.png");
  15. }
  16. img.transparent {
  17. background: hsl(0,0%,90%) url("chrome://global/skin/media/imagedoc-lightnoise.png");
  18. color: #222;
  19. }
  20. %endif
  21. }