bklLiudl
2024-07-23 46cca75880353bbffbd8fef39fe2ea659180ebd7
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
61
62
/*!
 * 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;
}
 
a:link,
a:visited,
a:hover,
a:active {
  color: #000;
  text-decoration: none;
}
 
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;
}
 
.tree_checkbox { margin-top:-1px; padding-left:5px; }