mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
69 lines
1.7 KiB
CSS
69 lines
1.7 KiB
CSS
/* ..... page navigation ..... */
|
|
|
|
.home-arrow,
|
|
.end-arrow:-moz-locale-dir(rtl) {
|
|
list-style-image: url("chrome://global/skin/printpreview/arrow-left-end.png");
|
|
-moz-image-region: rect(0, 16px, 16px, 0);
|
|
}
|
|
|
|
.home-arrow:hover,
|
|
.end-arrow:-moz-locale-dir(rtl):hover {
|
|
-moz-image-region: rect(0, 32px, 16px, 16px);
|
|
}
|
|
|
|
.end-arrow,
|
|
.home-arrow:-moz-locale-dir(rtl) {
|
|
list-style-image: url("chrome://global/skin/printpreview/arrow-right-end.png");
|
|
-moz-image-region: rect(0, 16px, 16px, 0);
|
|
}
|
|
|
|
.end-arrow:hover,
|
|
.home-arrow:-moz-locale-dir(rtl):hover {
|
|
-moz-image-region: rect(0, 32px, 16px, 16px);
|
|
}
|
|
|
|
.previous-arrow,
|
|
.next-arrow:-moz-locale-dir(rtl) {
|
|
list-style-image: url("chrome://global/skin/printpreview/arrow-left.png");
|
|
-moz-image-region: rect(0, 16px, 16px, 0);
|
|
}
|
|
|
|
.previous-arrow:hover,
|
|
.next-arrow:-moz-locale-dir(rtl):hover {
|
|
-moz-image-region: rect(0, 32px, 16px, 16px);
|
|
}
|
|
|
|
.next-arrow,
|
|
.previous-arrow:-moz-locale-dir(rtl) {
|
|
list-style-image: url("chrome://global/skin/printpreview/arrow-right.png");
|
|
-moz-image-region: rect(0, 16px, 16px, 0);
|
|
}
|
|
|
|
.next-arrow:hover,
|
|
.previous-arrow:-moz-locale-dir(rtl):hover {
|
|
-moz-image-region: rect(0, 32px, 16px, 16px);
|
|
}
|
|
|
|
/* ...... scale in/decrement ..... */
|
|
|
|
.up-arrow {
|
|
list-style-image: url("chrome://global/skin/arrow/arrow-up-sharp.gif");
|
|
}
|
|
|
|
.down-arrow {
|
|
list-style-image: url("chrome://global/skin/arrow/arrow-dn-sharp.gif");
|
|
}
|
|
|
|
|
|
/* ..... orientation ..... */
|
|
|
|
.toolbar-portrait-page {
|
|
list-style-image: url("chrome://global/skin/icons/Print-preview.png");
|
|
-moz-image-region: rect(0px 16px 16px 0px);
|
|
}
|
|
|
|
.toolbar-landscape-page {
|
|
list-style-image: url("chrome://global/skin/icons/Print-preview.png");
|
|
-moz-image-region: rect(0px 32px 16px 16px);
|
|
}
|