michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); michael@0: michael@0: resizer { michael@0: -moz-appearance: resizer; michael@0: background: url("chrome://global/skin/icons/resizer.png") no-repeat; michael@0: background-size: 100% 100%; michael@0: cursor: se-resize; michael@0: width: 15px; michael@0: height: 15px; michael@0: } michael@0: michael@0: resizer[rtl="true"], michael@0: resizer[dir="bottomend"]:-moz-locale-dir(rtl) { michael@0: background: url("chrome://global/skin/icons/resizer-rtl.png") no-repeat; michael@0: } michael@0: michael@0: resizer[dir="left"], michael@0: resizer[dir="bottomleft"], michael@0: resizer[dir="bottomstart"] { michael@0: transform: scaleX(-1); michael@0: } michael@0: michael@0: resizer[dir="bottomleft"], michael@0: resizer[dir="bottomstart"]:not([rtl="true"]):not(:-moz-locale-dir(rtl)), michael@0: resizer[dir="bottomend"][rtl="true"] { michael@0: cursor: sw-resize; michael@0: } michael@0: michael@0: resizer[dir="top"], michael@0: resizer[dir="bottom"] { michael@0: cursor: ns-resize; michael@0: } michael@0: michael@0: resizer[dir="left"], michael@0: resizer[dir="right"] { michael@0: cursor: ew-resize; michael@0: } michael@0: michael@0: resizer[dir="topleft"] { michael@0: cursor: nw-resize; michael@0: } michael@0: michael@0: resizer[dir="topright"] { michael@0: cursor: ne-resize; michael@0: }