Use checkbox tree rather than a simple array for element tags in dirtag.xul
[dirtag.git] / static / dirtag.css
1 @import url(chrome://global/skin/);
2
3 /* No groupbox border in Linux:
4      https://developer.mozilla.org/en/XUL/groupbox
5  */
6 /* groupbox {border-style:solid; border-color:black; border:1px;} */
7
8 /* Checkbox images following
9      https://developer.mozilla.org/en/XUL/Attribute/treecol.type
10      http://code.google.com/p/weaponry/wiki/ExtensionWrittingTipsAndTricks
11  */
12 treechildren::-moz-tree-checkbox
13 {
14     /* unchecked checkbox treecells. This style MUST come before treechildren::-moz-tree-checkbox(checked) otherwise it won't take effect. */
15     list-style-image: none;
16 }
17 treechildren::-moz-tree-checkbox(checked)
18 {
19     list-style-image: url(chrome://global/skin/checkbox/cbox-check.gif);
20 }
21 treechildren::-moz-tree-checkbox(disabled)
22 {
23     list-style-image: url(chrome://global/skin/checkbox/cbox-check-dis.gif);
24 }