init
This commit is contained in:
parent
06f61d8ce8
commit
f301cb744d
2271 changed files with 103162 additions and 0 deletions
37
02-ui/05-widgets/08-widget-tasks-2/05-tree-checkboxes/solution/tree.css
Executable file
37
02-ui/05-widgets/08-widget-tasks-2/05-tree-checkboxes/solution/tree.css
Executable file
|
@ -0,0 +1,37 @@
|
|||
.tree, .tree ul {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
.tree .tree-open ul {
|
||||
display: block;
|
||||
}
|
||||
|
||||
|
||||
.tree .tree-closed ul {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.tree-toggler {
|
||||
color: blue;
|
||||
cursor: pointer;
|
||||
float: left;
|
||||
margin-left: -16px;
|
||||
width: 1em;
|
||||
height: 1em;
|
||||
}
|
||||
|
||||
.tree-open .tree-toggler {
|
||||
background: url(http://js.cx/tree/minus.gif) no-repeat center;
|
||||
}
|
||||
|
||||
|
||||
.tree-closed .tree-toggler {
|
||||
background: url(http://js.cx/tree/plus.gif) no-repeat center;
|
||||
}
|
||||
|
||||
.tree li {
|
||||
line-height: 1em;
|
||||
padding-left: 16px;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue