toolkit/themes/windows/global/resizer.css

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/toolkit/themes/windows/global/resizer.css	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,49 @@
     1.4 +/* This Source Code Form is subject to the terms of the Mozilla Public
     1.5 + * License, v. 2.0. If a copy of the MPL was not distributed with this
     1.6 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     1.7 +
     1.8 +@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
     1.9 +
    1.10 +resizer {
    1.11 +  -moz-appearance: resizer;
    1.12 +  background: url("chrome://global/skin/icons/resizer.png") no-repeat;
    1.13 +  background-size: 100% 100%;
    1.14 +  cursor: se-resize;
    1.15 +  width: 15px;
    1.16 +  height: 15px;
    1.17 +}
    1.18 +
    1.19 +resizer[rtl="true"],
    1.20 +resizer[dir="bottomend"]:-moz-locale-dir(rtl) {
    1.21 +  background: url("chrome://global/skin/icons/resizer-rtl.png") no-repeat;
    1.22 +}
    1.23 +
    1.24 +resizer[dir="left"],
    1.25 +resizer[dir="bottomleft"],
    1.26 +resizer[dir="bottomstart"] {
    1.27 +  transform: scaleX(-1);
    1.28 +}
    1.29 +
    1.30 +resizer[dir="bottomleft"],
    1.31 +resizer[dir="bottomstart"]:not([rtl="true"]):not(:-moz-locale-dir(rtl)),
    1.32 +resizer[dir="bottomend"][rtl="true"] {
    1.33 +  cursor: sw-resize;
    1.34 +}
    1.35 +
    1.36 +resizer[dir="top"],
    1.37 +resizer[dir="bottom"] {
    1.38 +  cursor: ns-resize;
    1.39 +}
    1.40 +
    1.41 +resizer[dir="left"],
    1.42 +resizer[dir="right"] {
    1.43 +  cursor: ew-resize;
    1.44 +}
    1.45 +
    1.46 +resizer[dir="topleft"] {
    1.47 +  cursor: nw-resize;
    1.48 +}
    1.49 +
    1.50 +resizer[dir="topright"] {
    1.51 +  cursor: ne-resize;
    1.52 +}

mercurial