blob: 6b35c00f85eb2c79f1291303203dd615db3a5346 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
treechildren::-moz-tree-checkbox { /* css for unchecked cells */
list-style-image: url("chrome://https-everywhere/skin/cross.png");
}
treechildren::-moz-tree-checkbox(checked) { /* css for checked cells */
list-style-image: url("chrome://https-everywhere/skin/tick.png");
}
treechildren::-moz-tree-checkbox(undefined) { /* css for empty cells */
list-style-image: url("");
}
|