X-Git-Url: http://git.tremily.us/?p=dirtag.git;a=blobdiff_plain;f=static%2Fdirtag.css;h=9fcf43d3048721d05c626ded698b84c37a41cccb;hp=e57c4984170e2c8645c8311c84476d24c1fd4a5a;hb=46565ba4cce440a96dbe4844c2b01502b468d7f6;hpb=baf84d6cac649a2987d055277c128818d8399263 diff --git a/static/dirtag.css b/static/dirtag.css index e57c498..9fcf43d 100644 --- a/static/dirtag.css +++ b/static/dirtag.css @@ -4,3 +4,21 @@ https://developer.mozilla.org/en/XUL/groupbox */ /* groupbox {border-style:solid; border-color:black; border:1px;} */ + +/* Checkbox images following + https://developer.mozilla.org/en/XUL/Attribute/treecol.type + http://code.google.com/p/weaponry/wiki/ExtensionWrittingTipsAndTricks + */ +treechildren::-moz-tree-checkbox +{ + /* unchecked checkbox treecells. This style MUST come before treechildren::-moz-tree-checkbox(checked) otherwise it won't take effect. */ + list-style-image: none; +} +treechildren::-moz-tree-checkbox(checked) +{ + list-style-image: url(chrome://global/skin/checkbox/cbox-check.gif); +} +treechildren::-moz-tree-checkbox(disabled) +{ + list-style-image: url(chrome://global/skin/checkbox/cbox-check-dis.gif); +}