mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
123 lines
2.9 KiB
CSS
123 lines
2.9 KiB
CSS
|
|
/******** Tree widget **********/
|
|
|
|
/** basic tree ****************************************************
|
|
* basic tree widget for use in main windows where no decoration
|
|
* is required.
|
|
**/
|
|
tree {
|
|
background-color: white;
|
|
border: none;
|
|
border-spacing: 0px;
|
|
}
|
|
|
|
/** class="inset" *************************************************
|
|
* this is the tree class used by dialogs to create treeviews with
|
|
* inset borders, and default dialog spacing.
|
|
**/
|
|
tree.inset {
|
|
border-top: 1px solid #666666;
|
|
border-bottom: 1px solid white;
|
|
border-left: 1px solid #666666;
|
|
border-right: 1px solid white;
|
|
margin: 1px 5px 2px 5px;
|
|
}
|
|
|
|
treeitem[selected="true"] > treerow {
|
|
color: white;
|
|
background-color: #336699;
|
|
}
|
|
|
|
treecell {
|
|
white-space: nowrap;
|
|
vertical-align: middle;
|
|
padding: 1px 0px 1px 2px;
|
|
}
|
|
|
|
.treecell-header {
|
|
background-color: #CCCCCC;
|
|
color: black;
|
|
border-right: 1px solid white;
|
|
vertical-align: middle;
|
|
padding: 0px 0px 0px 5px;
|
|
}
|
|
|
|
.treecell-inset-header {
|
|
border-top: 1px solid white;
|
|
border-bottom: 1px solid #666666;
|
|
border-left: 1px solid white;
|
|
border-right: 1px solid #666666;
|
|
}
|
|
|
|
tree.inset > treehead > treerow > treecell.sortable:active {
|
|
border-top: 1px solid #666666;
|
|
border-bottom: 1px solid white;
|
|
border-left: 1px solid #666666;
|
|
border-right: 1px solid white;
|
|
}
|
|
|
|
/** class="propertylist" ******************************************
|
|
* class for cells in grid-formatted property lists.
|
|
**/
|
|
treecell.propertylist {
|
|
padding-left: 5px;
|
|
border-right: 1px solid #CCCCCC;
|
|
border-bottom: 1px solid #CCCCCC;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
treeitem[empty="true"] > treerow > treecell > .tree-cell-twisty {
|
|
list-style-image: none !important;
|
|
}
|
|
|
|
.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 */
|
|
treecell.sortDirectionIndicator[sortDirection="ascending"] > .tree-header-sortdirection {
|
|
list-style-image: url("chrome://global/skin/sortAscending.gif");
|
|
margin-right: 3px;
|
|
}
|
|
|
|
treecell.sortDirectionIndicator[sortDirection="descending"] > .tree-header-sortdirection {
|
|
list-style-image: url("chrome://global/skin/sortDescending.gif");
|
|
margin-right: 3px;
|
|
}
|