toolkit/themes/windows/global/printPreview.css

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     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/. */
     5 /* ..... page navigation ..... */
     7 .home-arrow,
     8 .end-arrow:-moz-locale-dir(rtl) {
     9   list-style-image: url("chrome://global/skin/printpreview/arrow-left-end.png");
    10   -moz-image-region: rect(0, 16px, 16px, 0);
    11 }
    13 .home-arrow:hover,
    14 .end-arrow:-moz-locale-dir(rtl):hover {
    15   -moz-image-region: rect(0, 32px, 16px, 16px);
    16 }
    18 .end-arrow,
    19 .home-arrow:-moz-locale-dir(rtl) {
    20   list-style-image: url("chrome://global/skin/printpreview/arrow-right-end.png");
    21   -moz-image-region: rect(0, 16px, 16px, 0);
    22 }
    24 .end-arrow:hover,
    25 .home-arrow:-moz-locale-dir(rtl):hover {
    26   -moz-image-region: rect(0, 32px, 16px, 16px);
    27 }
    29 .previous-arrow,
    30 .next-arrow:-moz-locale-dir(rtl) {
    31   list-style-image: url("chrome://global/skin/printpreview/arrow-left.png");
    32   -moz-image-region: rect(0, 16px, 16px, 0);
    33 }
    35 .previous-arrow:hover,
    36 .next-arrow:-moz-locale-dir(rtl):hover {
    37   -moz-image-region: rect(0, 32px, 16px, 16px);
    38 }
    40 .next-arrow,
    41 .previous-arrow:-moz-locale-dir(rtl) {
    42   list-style-image: url("chrome://global/skin/printpreview/arrow-right.png");
    43   -moz-image-region: rect(0, 16px, 16px, 0);
    44 }
    46 .next-arrow:hover,
    47 .previous-arrow:-moz-locale-dir(rtl):hover {
    48   -moz-image-region: rect(0, 32px, 16px, 16px);
    49 }
    51 /* ...... scale in/decrement ..... */
    53 .up-arrow {
    54   list-style-image: url("chrome://global/skin/arrow/arrow-up-sharp.gif");
    55 }
    57 .down-arrow {
    58   list-style-image: url("chrome://global/skin/arrow/arrow-dn-sharp.gif");
    59 }
    62 /* ..... orientation ..... */
    64 .toolbar-portrait-page {
    65   list-style-image: url("chrome://global/skin/icons/Print-preview.png");
    66   -moz-image-region: rect(0px 16px 16px 0px);
    67 }
    69 .toolbar-landscape-page {
    70   list-style-image: url("chrome://global/skin/icons/Print-preview.png");
    71   -moz-image-region: rect(0px 32px 16px 16px);
    72 }

mercurial