mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
42 lines
762 B
CSS
42 lines
762 B
CSS
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
|
|
|
|
resizer {
|
|
-moz-appearance: resizer;
|
|
background: url("chrome://global/skin/icons/resizer.png") no-repeat;
|
|
cursor: se-resize;
|
|
width: 15px;
|
|
height: 15px;
|
|
}
|
|
|
|
resizer[type="window"] {
|
|
display: none;
|
|
}
|
|
|
|
resizer[rtl="true"],
|
|
resizer[dir="bottomend"]:-moz-locale-dir(rtl) {
|
|
background: url("chrome://global/skin/icons/resizer-rtl.png") no-repeat;
|
|
}
|
|
|
|
resizer[dir="bottomleft"],
|
|
resizer[dir="bottomend"][rtl="true"] {
|
|
cursor: sw-resize;
|
|
}
|
|
|
|
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="topright"] {
|
|
cursor: ne-resize;
|
|
}
|