mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
35 lines
419 B
CSS
35 lines
419 B
CSS
window {
|
|
display: block;
|
|
}
|
|
|
|
tree {
|
|
display: table;
|
|
background-color: #eeeeee;
|
|
border: none;
|
|
border-spacing: 0px;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
treerow {
|
|
display: table-row;
|
|
}
|
|
|
|
treehead {
|
|
display: table-header-group;
|
|
}
|
|
|
|
treebody {
|
|
display: table-row-group;
|
|
|
|
}
|
|
|
|
treecell {
|
|
display: table-cell;
|
|
}
|
|
|
|
treehead treerow treecell {
|
|
background-color: #a0a0a0;
|
|
border: thin black solid;
|
|
}
|
|
|