1999-02-10 22:15:46 +03:00
|
|
|
window {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
tree {
|
|
|
|
display: table;
|
|
|
|
background-color: #eeeeee;
|
|
|
|
border: none;
|
|
|
|
border-spacing: 0px;
|
1999-02-26 05:45:25 +03:00
|
|
|
// border-collapse: collapse;
|
1999-02-10 22:15:46 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
treeitem {
|
|
|
|
display: table-row;
|
|
|
|
}
|
|
|
|
|
|
|
|
treehead {
|
|
|
|
display: table-header-group;
|
|
|
|
}
|
|
|
|
|
|
|
|
treebody {
|
|
|
|
display: table-row-group;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
1999-03-05 06:22:51 +03:00
|
|
|
treecol {
|
|
|
|
display: table-column;
|
|
|
|
width: 200px;
|
|
|
|
}
|
|
|
|
|
1999-02-10 22:15:46 +03:00
|
|
|
treecell {
|
1999-03-05 06:22:51 +03:00
|
|
|
display: table-cell;
|
|
|
|
font-family: Verdana, Sans-Serif;
|
|
|
|
font-size: 8pt;
|
1999-02-10 22:15:46 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
treehead treeitem treecell {
|
|
|
|
background-color: #a0a0a0;
|
|
|
|
border: thin black solid;
|
|
|
|
}
|
1999-03-09 04:54:46 +03:00
|
|
|
|
|
|
|
treecell[selectedcell] {
|
|
|
|
background-color: yellow;
|
|
|
|
}
|
|
|
|
|
|
|
|
treecell[sortActive="true"] {
|
|
|
|
background-color: #404040;
|
|
|
|
}
|
|
|
|
|
|
|
|
treecol[sortActive="true"] {
|
|
|
|
background-color: green;
|
|
|
|
}
|
1999-02-10 22:15:46 +03:00
|
|
|
|