gecko-dev/themes/classic/global/unix/tree.css

157 lines
4.0 KiB
CSS

/******** Tree widget **********/
/** basic tree ****************************************************
* basic tree widget for use in main windows where no decoration
* is required.
**/
tree
{
background-color : window;
border-spacing : 0px;
font : list;
border-left : 1px solid threedshadow;
border-top : 1px solid threedshadow;
border-right : 1px solid threedhighlight;
border-bottom : 1px solid threedhighlight;
}
tree.inset
{
margin : 1px 5px 2px 5px;
}
treeitem[selected="true"] > treerow {
color: highlighttext;
background-color: highlight;
}
treeitem[dd-dropon="true"] > treerow {
color: highlighttext;
background-color: highlight;
}
treecell
{
white-space : nowrap;
vertical-align : middle;
padding : 1px 0px 1px 2px;
}
.treecell-header,
.treecell-inset-header
{
behavior : url("chrome://global/skin/treeBindings.xml#treecell-header");
border-left : 1px solid threedface !important;
border-top : 1px solid threedface !important;
border-right : 1px solid threeddarkshadow !important;
border-bottom : 1px solid threeddarkshadow !important;
background-color : threedface;
padding : 0px;
}
.treecell-header-image {
padding: 0px;
}
.treecell-image {
padding: 0px;
}
.treecell-header-box
{
border-left : 1px solid threedhighlight;
border-top : 1px solid threedhighlight;
border-right : 1px solid threedshadow;
border-bottom : 1px solid threedshadow;
padding : 2px 5px 2px 4px;
}
.sortable.treecell-header:hover:active,
.sortable.treecell-inset-header:hover:active
{
border : 1px solid threedshadow;
}
.sortable.treecell-header:hover:active > .treecell-header-box,
.sortable.treecell-inset-header:hover:active > .treecell-header-box
{
border : 1px solid threedface;
padding : 3px 4px 1px 5px;
}
/** class="propertylist" ******************************************
* class for cells in grid-formatted property lists.
**/
treecell.propertylist
{
padding-left : 5px;
border-right : 1px solid threedface;
border-bottom : 1px solid threedface;
}
.tree-cell-primary-icon {
list-style-image: inherit;
padding-right: 2px;
}
.tree-cell-icon {
list-style-image: inherit;
padding-right: 2px;
}
.tree-cell-twisty {
list-style-image: url("chrome://global/skin/closedtwisty.gif");
user-focus:ignore;
padding-right: 2px;
}
.treecell-indent > .tree-cell-primary-icon {
padding-left: 14px;
}
treeitem[container="true"] > treerow > .treecell-indent > .tree-cell-primary-icon {
padding-left: 0px;
}
treeitem[selected="true"] > treerow > treecell > .tree-cell-twisty {
list-style-image: url("chrome://global/skin/closedtwisty-selected.gif");
}
.tree-cell-twisty:hover {
text-decoration: none;
}
.tree-cell-twisty:active {
text-decoration: none;
}
.tree-cell-twisty[disabled="true"] {
list-style-image: none;
}
treeitem[container="true"][open="true"] > treerow > treecell > .tree-cell-twisty {
list-style-image: url("chrome://global/skin/opentwisty.gif");
}
treeitem[selected="true"][container="true"][open="true"] > treerow > treecell > .tree-cell-twisty {
list-style-image: url("chrome://global/skin/opentwisty-selected.gif");
}
/* tree header with sort direction indicators */
.sortDirectionIndicator[sortDirection="ascending"] > treecell-header-box > .tree-header-sortdirection {
list-style-image: url("chrome://global/skin/sortAscending.gif");
margin-right: 3px;
}
.sortDirectionIndicator[sortDirection="descending"] > treecell-header-box > .tree-header-sortdirection {
list-style-image: url("chrome://global/skin/sortDescending.gif");
margin-right: 3px;
}
.treecell-popup-icon
{
list-style-image : url("chrome://global/skin/columnselect.gif");
}