Skip to content
Snippets Groups Projects
Commit 629c3b83 authored by Demian Katz's avatar Demian Katz
Browse files

Improved CSS for hierarchies.

parent c5afeb89
Branches
Tags
No related merge requests found
......@@ -1737,6 +1737,34 @@ div#closeContextHelp:active {
display: none;
}
#hierarchyTreeHolder {
background-color: #FFF;
border: 1px solid #DCDCDC;
padding: 0.5em;
}
#hierarchyTree {
padding: 0.5em 0.5em 0.5em 0;
max-height:375px;
min-height:375px;
overflow: hidden;
overflow-y: auto;
}
#hierarchyTree ul {
list-style-type: none;
margin: 0;
padding: 0;
}
.tree {
background-image:url(../images/fugue/tree.png);
background-repeat:no-repeat;
background-position: left;
padding:.5em .5em .5em 20px;
margin-right:1em;
}
.currentTree, .hierarchyTreeLinkText {
background-image:url(../images/fugue/treeCurrent.png);
background-repeat:no-repeat;
......@@ -1744,3 +1772,22 @@ div#closeContextHelp:active {
padding:.5em .5em .5em 20px;
margin-right:1em;
}
#hierarchyTree #treeList li {
background-image:url(../images/fugue/treeItem.png);
background-repeat: no-repeat;
padding: 0.25em 0 0 23px;
background-position: 0 0.25em;
}
#hierarchyTree #treeList li.currentRecord {
background-image:url(../images/fugue/treeItemCurrent.png);
background-repeat: no-repeat;
padding: 0.25em 0 0 23px;
background-position: 0 0.25em;
}
#hierarchyTree #treeList li.currentHierarchy > a, #hierarchyTree #treeList li.currentRecord > a {
color: #000;
font-weight: bold;
}
......@@ -246,3 +246,28 @@ p.citationText {
padding-left:25px;
text-indent:-25px;
}
#hierarchyTree ul {
list-style-type: none;
margin: 0;
padding: 0;
}
#hierarchyTree #treeList li {
background-image:url(../images/fugue/treeItem.png);
background-repeat: no-repeat;
padding: 0.25em 0 0 23px;
background-position: 0 0.25em;
}
#hierarchyTree #treeList li.currentRecord {
background-image:url(../images/fugue/treeItemCurrent.png);
background-repeat: no-repeat;
padding: 0.25em 0 0 23px;
background-position: 0 0.25em;
}
#hierarchyTree #treeList li.currentHierarchy > a, #hierarchyTree #treeList li.currentRecord > a {
color: #000;
font-weight: bold;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment