printPreview.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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
  3. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  4. @import url("chrome://icons/skin/icon-theme-default.css");
  5. /* ..... page navigation ..... */
  6. .home-arrow {
  7. list-style-image: var(--icon-go-first-16);
  8. }
  9. .home-arrow:-moz-locale-dir(rtl) {
  10. list-style-image: var(--icon-go-first-rtl-16);
  11. }
  12. .end-arrow {
  13. list-style-image: var(--icon-go-last-16);
  14. }
  15. .end-arrow:-moz-locale-dir(rtl) {
  16. list-style-image: var(--icon-go-last-rtl-16);
  17. }
  18. .previous-arrow {
  19. list-style-image: var(--icon-go-previous-16);
  20. }
  21. .previous-arrow:-moz-locale-dir(rtl) {
  22. list-style-image: var(--icon-go-previous-rtl-16);
  23. }
  24. .next-arrow {
  25. list-style-image: var(--icon-go-next-16);
  26. }
  27. .next-arrow:-moz-locale-dir(rtl) {
  28. list-style-image: var(--icon-go-next-rtl-16);
  29. }
  30. /* ..... orientation ..... */
  31. .toolbar-portrait-page {
  32. list-style-image: var(--icon-gtk-orientation-portrait-22);
  33. }
  34. .toolbar-landscape-page {
  35. list-style-image: var(--icon-gtk-orientation-landscape-22);
  36. }