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

michael@0 1 /* This Source Code Form is subject to the terms of the Mozilla Public
michael@0 2 * License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
michael@0 4
michael@0 5 /* ..... page navigation ..... */
michael@0 6
michael@0 7 .home-arrow,
michael@0 8 .end-arrow:-moz-locale-dir(rtl) {
michael@0 9 list-style-image: url("chrome://global/skin/printpreview/arrow-left-end.png");
michael@0 10 -moz-image-region: rect(0, 16px, 16px, 0);
michael@0 11 }
michael@0 12
michael@0 13 .home-arrow:hover,
michael@0 14 .end-arrow:-moz-locale-dir(rtl):hover {
michael@0 15 -moz-image-region: rect(0, 32px, 16px, 16px);
michael@0 16 }
michael@0 17
michael@0 18 .end-arrow,
michael@0 19 .home-arrow:-moz-locale-dir(rtl) {
michael@0 20 list-style-image: url("chrome://global/skin/printpreview/arrow-right-end.png");
michael@0 21 -moz-image-region: rect(0, 16px, 16px, 0);
michael@0 22 }
michael@0 23
michael@0 24 .end-arrow:hover,
michael@0 25 .home-arrow:-moz-locale-dir(rtl):hover {
michael@0 26 -moz-image-region: rect(0, 32px, 16px, 16px);
michael@0 27 }
michael@0 28
michael@0 29 .previous-arrow,
michael@0 30 .next-arrow:-moz-locale-dir(rtl) {
michael@0 31 list-style-image: url("chrome://global/skin/printpreview/arrow-left.png");
michael@0 32 -moz-image-region: rect(0, 16px, 16px, 0);
michael@0 33 }
michael@0 34
michael@0 35 .previous-arrow:hover,
michael@0 36 .next-arrow:-moz-locale-dir(rtl):hover {
michael@0 37 -moz-image-region: rect(0, 32px, 16px, 16px);
michael@0 38 }
michael@0 39
michael@0 40 .next-arrow,
michael@0 41 .previous-arrow:-moz-locale-dir(rtl) {
michael@0 42 list-style-image: url("chrome://global/skin/printpreview/arrow-right.png");
michael@0 43 -moz-image-region: rect(0, 16px, 16px, 0);
michael@0 44 }
michael@0 45
michael@0 46 .next-arrow:hover,
michael@0 47 .previous-arrow:-moz-locale-dir(rtl):hover {
michael@0 48 -moz-image-region: rect(0, 32px, 16px, 16px);
michael@0 49 }
michael@0 50
michael@0 51 /* ...... scale in/decrement ..... */
michael@0 52
michael@0 53 .up-arrow {
michael@0 54 list-style-image: url("chrome://global/skin/arrow/arrow-up-sharp.gif");
michael@0 55 }
michael@0 56
michael@0 57 .down-arrow {
michael@0 58 list-style-image: url("chrome://global/skin/arrow/arrow-dn-sharp.gif");
michael@0 59 }
michael@0 60
michael@0 61
michael@0 62 /* ..... orientation ..... */
michael@0 63
michael@0 64 .toolbar-portrait-page {
michael@0 65 list-style-image: url("chrome://global/skin/icons/Print-preview.png");
michael@0 66 -moz-image-region: rect(0px 16px 16px 0px);
michael@0 67 }
michael@0 68
michael@0 69 .toolbar-landscape-page {
michael@0 70 list-style-image: url("chrome://global/skin/icons/Print-preview.png");
michael@0 71 -moz-image-region: rect(0px 32px 16px 16px);
michael@0 72 }

mercurial