Add Design Documents

This commit is contained in:
counterpoint
2015-02-02 11:46:47 +00:00
parent cf9b2c7de7
commit acedcfd5ca
80 changed files with 35465 additions and 0 deletions

View File

@ -0,0 +1,36 @@
.bonsai,
.bonsai li {
margin: 0;
padding: 0;
list-style: none;
overflow: hidden;
}
.bonsai li {
position: relative;
padding-left: 1.3em; /* padding for the thumb */
}
li .thumb {
margin: -1px 0 0 -1em; /* negative margin into the padding of the li */
position: absolute;
cursor: pointer;
}
li.has-children > .thumb:after {
content: '▸';
}
li.has-children.expanded > .thumb:after {
content: '▾';
}
li.collapsed > ol.bonsai {
height: 0;
overflow: hidden;
}
.bonsai .all,
.bonsai .none {
cursor: pointer;
}