mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
3226f93b00
273018 - View > Character Encoding > Customize 268230 - Mac: wrong popup notification icon 266047 - Clean Up button is not included in DM WIndow's tab-order 235031 - Firefox displays "blue" appearance 242831 - Pinstripe should follow "Full keyboard access"
35 lines
883 B
CSS
35 lines
883 B
CSS
|
|
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
|
|
|
|
.up {
|
|
min-width: 0px;
|
|
list-style-image: url("chrome://global/skin/arrow/arrow-up.gif");
|
|
}
|
|
.up[disabled="true"] {
|
|
list-style-image: url("chrome://global/skin/arrow/arrow-up-dis.gif");
|
|
}
|
|
|
|
.down {
|
|
min-width: 0px;
|
|
list-style-image: url("chrome://global/skin/arrow/arrow-dn.gif");
|
|
}
|
|
.down[disabled="true"] {
|
|
list-style-image: url("chrome://global/skin/arrow/arrow-dn-dis.gif");
|
|
}
|
|
|
|
.left {
|
|
min-width: 0px;
|
|
list-style-image: url("chrome://global/skin/arrow/arrow-lft.gif");
|
|
}
|
|
.left[disabled="true"] {
|
|
list-style-image: url("chrome://global/skin/arrow/arrow-lft-dis.gif");
|
|
}
|
|
|
|
.right {
|
|
min-width: 0px;
|
|
list-style-image: url("chrome://global/skin/arrow/arrow-rit.gif");
|
|
}
|
|
.right[disabled="true"] {
|
|
list-style-image: url("chrome://global/skin/arrow/arrow-rit-dis.gif");
|
|
}
|