git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_SGD/tags/3.7.0.2_original@1 eb19766c-00d9-a042-a3a0-45cb8ec72764
35 lines
698 B
CSS
35 lines
698 B
CSS
/* CSS to handle the trees. */
|
|
.kt_treenodes {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
border: 0;
|
|
text-align: left !important;
|
|
}
|
|
|
|
.leafnode {font-weight: bold; }
|
|
|
|
#content .kt_treenodes ul,
|
|
#content ul.kt_treenodes {
|
|
list-style: none;
|
|
list-style-image: none !important;
|
|
text-align: left;
|
|
}
|
|
.kt_treenodes li.treenode > a.pathnode {
|
|
background: transparent url(../graphics/plus.png) center left no-repeat;
|
|
padding-left: 15px;
|
|
}
|
|
|
|
.kt_treenodes li.treenode.active > a.pathnode {
|
|
background: transparent url(../graphics/minus.png) center left no-repeat;
|
|
}
|
|
|
|
.kt_treenodes li.active > ul {
|
|
display: block;
|
|
}
|
|
|
|
.kt_treenodes li ul {
|
|
display: none;
|
|
}
|
|
|