mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
35 lines
622 B
CSS
35 lines
622 B
CSS
@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;
|
|
}
|