1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
.treeView, .treeView ul
{
padding: 0;
margin: 0;
}
.treeView li
{
list-style-type: none;
padding: 2px;
}
.treeView li li
{
margin-left: 18px;
}
.treeView img
{
vertical-align: middle;
border: 0px;
margin-right:7px;
}
img.folder
{
width:15px;
height:14px;
}
img.expand
{
width:8px;
width:9px;
}
.treeView li.folderItem
{
cursor: pointer;
color:Blue;
text-decoration: underline;
font-style:italic;
margin-bottom: 4px;
}
.content_true
{
cursor: pointer;
font-weight: bold;
}
|