2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
2009-01-18 10:28:19 +00:00
|
|
|
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
|
|
|
|
|
2010-06-21 12:37:35 +00:00
|
|
|
resizer {
|
|
|
|
-moz-appearance: resizer;
|
|
|
|
background: url("chrome://global/skin/icons/resizer.png") no-repeat;
|
2012-10-17 08:48:21 +00:00
|
|
|
background-size: 100% 100%;
|
2010-06-21 12:37:35 +00:00
|
|
|
cursor: se-resize;
|
|
|
|
width: 15px;
|
|
|
|
height: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
resizer[rtl="true"],
|
|
|
|
resizer[dir="bottomend"]:-moz-locale-dir(rtl) {
|
|
|
|
background: url("chrome://global/skin/icons/resizer-rtl.png") no-repeat;
|
|
|
|
}
|
|
|
|
|
2011-07-29 09:38:41 +00:00
|
|
|
resizer[dir="left"],
|
|
|
|
resizer[dir="bottomleft"],
|
|
|
|
resizer[dir="bottomstart"] {
|
2012-07-11 01:00:06 +00:00
|
|
|
transform: scaleX(-1);
|
2011-07-29 09:38:41 +00:00
|
|
|
}
|
|
|
|
|
2010-06-21 12:37:35 +00:00
|
|
|
resizer[dir="bottomleft"],
|
2011-07-29 09:38:41 +00:00
|
|
|
resizer[dir="bottomstart"]:not([rtl="true"]):not(:-moz-locale-dir(rtl)),
|
2010-06-21 12:37:35 +00:00
|
|
|
resizer[dir="bottomend"][rtl="true"] {
|
|
|
|
cursor: sw-resize;
|
|
|
|
}
|
|
|
|
|
2009-01-18 10:28:19 +00:00
|
|
|
resizer[dir="top"],
|
|
|
|
resizer[dir="bottom"] {
|
|
|
|
cursor: ns-resize;
|
|
|
|
}
|
|
|
|
|
|
|
|
resizer[dir="left"],
|
|
|
|
resizer[dir="right"] {
|
|
|
|
cursor: ew-resize;
|
|
|
|
}
|
|
|
|
|
2009-01-30 08:13:16 +00:00
|
|
|
resizer[dir="topleft"] {
|
|
|
|
cursor: nw-resize;
|
|
|
|
}
|
|
|
|
|
|
|
|
resizer[dir="topright"] {
|
|
|
|
cursor: ne-resize;
|
2009-01-18 10:28:19 +00:00
|
|
|
}
|