69 lines
956 B
CSS
69 lines
956 B
CSS
|
|
tree {
|
|
-moz-user-focus: normal;
|
|
display: -moz-grid;
|
|
min-width: 0px;
|
|
min-height: 0px;
|
|
width: 200px;
|
|
height: 200px;
|
|
}
|
|
|
|
tree[rows] {
|
|
height: auto;
|
|
}
|
|
|
|
treehead, treerows, treechildren, treeitem, treecolgroup {
|
|
display: -moz-grid-group;
|
|
}
|
|
|
|
treehead, treerows, treechildren, treeitem {
|
|
-moz-box-orient: vertical;
|
|
}
|
|
|
|
treechildren, treehead, treerows {
|
|
-moz-user-focus: none;
|
|
}
|
|
|
|
treecol, treerow {
|
|
display: -moz-grid-line;
|
|
}
|
|
|
|
treecol {
|
|
min-width: 16px;
|
|
width: 16px;
|
|
-moz-box-orient: vertical;
|
|
}
|
|
|
|
treecol[hidden="true"] {
|
|
display: -moz-grid-line;
|
|
visibility: collapse;
|
|
}
|
|
|
|
treechildren {
|
|
display: -moz-grid-group;
|
|
}
|
|
|
|
tree > treechildren {
|
|
overflow: auto;
|
|
min-height: 0px;
|
|
-moz-box-flex: 1;
|
|
}
|
|
|
|
treeitem > treechildren {
|
|
display: none;
|
|
}
|
|
|
|
treeitem[open="true"] > treechildren {
|
|
display: -moz-grid-group;
|
|
}
|
|
|
|
treecell {
|
|
-moz-box-align: center;
|
|
}
|
|
|
|
treecell[hidden="true"] {
|
|
display: -moz-box;
|
|
visibility: collapse;
|
|
}
|
|
|