pinkerton%netscape.com 7d7d82c1c1 new styles for expanding and collapsing folders
git-svn-id: svn://10.0.0.236/trunk@23418 18797224-902f-48f8-a5cc-f745e15eee43
1999-03-10 00:01:55 +00:00

63 lines
883 B
CSS

window {
display: block;
width: 100%;
}
tree {
display: table;
background-color: lightGray;
border: none;
border-spacing: 0px;
border-collapse: collapse;
width: 75%;
}
treeitem {
display: table-row;
visibility: collapse;
}
treehead {
display: table-header-group;
}
treebody {
display: table-row-group;
}
treehead > treeitem {
visibility: visible;
}
treeitem[open] > treechildren > treeitem {
visibility: visible;
}
treebody > treeitem {
visibility: visible;
}
treecell {
display: table-cell;
color: black;
font-family: Verdana;
font-size: 10pt;
}
treehead treeitem treecell {
background-color: #a0a0a0;
border: thin black solid;
color: black;
}
treeicon {
display: list-item;
list-style-image: url("http://rava/~hyatt/ClosedRead.gif");
list-style-position: inside;
}
treecell[selectedcell] {
background-color: lightBlue;
}