gecko/toolkit/themes/pinstripe/global/resizer.css

35 lines
622 B
CSS
Raw Normal View History

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
resizer[dir="top"],
resizer[dir="bottom"] {
cursor: ns-resize;
}
resizer[dir="left"],
resizer[dir="right"] {
cursor: ew-resize;
}
resizer[dir="topleft"] {
cursor: nw-resize;
}
resizer[dir="bottomright"],
resizer[dir="bottomend"]:-moz-locale-dir(ltr) {
cursor: se-resize;
}
resizer[dir="topright"] {
cursor: ne-resize;
}
resizer[dir="bottomleft"],
resizer[dir="bottomend"]:-moz-locale-dir(rtl) {
cursor: sw-resize;
}
resizer[dir="bottomright"]:-moz-locale-dir(ltr),
resizer[dir="bottomend"] {
-moz-appearance: resizer;
}