Changing tree views to use display: none instead of visibility: collapse for closed nodes.

This commit is contained in:
hyatt%netscape.com 1999-12-01 10:56:17 +00:00
parent 68d5238904
commit 55f80f1d78

View File

@ -179,11 +179,11 @@ treecell {
}
treeitem > treechildren {
visibility: collapse;
display: none;
}
treeitem[open="true"] > treechildren {
visibility: visible;
display: table-row-group;
}
treecol {