Building on Vitaliy's CSS and Mehmet's jQuery, I changed the a tags to span tags and incorporated some Glyphicons and badging into my take on a Bootstrap tree widget.
For extra credit, here is the LESS source to generate that CSS:
@import "../../../external/bootstrap/less/bootstrap.less"; /* substitute your path to the bootstrap.less file */
@import "../../../external/bootstrap/less/responsive.less"; /* optional; substitute your path to the responsive.less file */
/* collapsable tree */
.tree {
min-height: 20px;
padding: 19px;
margin-bottom: 20px;
background-color: lighten(@grayLighter, 5%);
border: 1px solid @grayLight;
.border-radius(@baseBorderRadius);
.box-shadow(inset 0 1px 1px rgba(0,0,0,.05));
li {
list-style-type: none;
margin: 0px 0;
padding: 10px 5px 0px 5px;
position: relative;
}
li::before, li::after {
content:'';
left: -20px;
position: absolute;
right: auto;
}
li::before {
border-left: 1px solid @grayLight;
bottom: 50px;
height: 100%;
top: 0;
width: 1px;
}
li::after {
border-top: 1px solid @grayLight;
height: 20px;
top: 25px;
width: 25px;
}
li span {
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border: 1px solid @grayLight;
border-radius: 5px;
display: inline-block;
padding: 3px 8px;
text-decoration: none;
}
li.parent_li > span {
cursor: pointer;
}
/*Remove connectors before root*/
> ul > li::before, > ul > li::after {
border: 0;
}
/*Remove connectors after last child*/
li:last-child::before {
height: 30px;
}
/*Time for some hover effects*/
li.parent_li > span:hover, li.parent_li > span:hover+ul li span {
background: @grayLighter;
border: 1px solid #94a0b4;
color: #000;
}
}