-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathbootstrap-tree.css
More file actions
60 lines (56 loc) · 1.14 KB
/
bootstrap-tree.css
File metadata and controls
60 lines (56 loc) · 1.14 KB
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
51
52
53
54
55
56
57
58
59
60
/*!
* Bootstrap Tree v0.3
*
* Copyright 2012 Cutters Crossing
* Bootstrap is Copyright 2012 Twitter, Inc.
* Licensed under the Apache License v2.0
* http://www.apache.org/licenses/LICENSE-2.0
*
* Designed and built with all the love in the world by @cutterbl.
*/
.tree,
.branch {
list-style: none outside none;
}
.branch {
postion: relative;
height: 0;
margin: 0 0 0 15px;
overflow: hidden;
}
.branch.in {
height: auto;
}
.tree a:link,
.tree a:visited,
.tree a:hover,
.tree a:active {
color: #000;
text-decoration: none;
}
.tree a:hover {
text-decoration: underline;
cursor: pointer;
}
/* Work in progress */
a.tree-toggle-icon-only {
height: 16px;
width: 20px;
line-height: 16px;
vertical-align: middle;
display: inline-block;
background: url("../img/bstree-halflings.png") no-repeat;
background-position: 0 -22px;
}
a.tree-toggle {
height: 16px;
padding-left: 20px;
line-height: 16px;
vertical-align: middle;
display: inline-block;
background: url("../img/bstree-halflings.png") no-repeat;
background-position: 0 -22px;
}
a.tree-toggle.closed, a.tree-toggle-icon-only.closed {
background-position: 0 1px;
}