Project

General

Profile

Download (2.47 KB) Statistics
| Branch: | Tag: | Revision:
1
/* ==== tree containers ==== */
2

    
3
/* --- one scrollable container for plain box --- */
4

    
5
div.cdm_taxontree_scroller_xy {
6
  overflow: auto;
7
  height: 300px;
8
}
9

    
10
/* ---- separate horizontal and vertical scrollable
11
containers in case of magic box mode,
12
plus container to span the tree to its maximum width --- */
13
div.cdm_taxontree_scroller_x {
14
  border: 1px solid #adddfa;
15
  overflow: auto;
16
  overflow-x: auto;
17
  overflow-y: auto;
18
}
19

    
20
div.cdm_taxontree_container {
21
  width: 250px; /* should be greater than the sidebar width (e.g. 250px for the garland theme) */
22
}
23

    
24
div.cdm_taxontree_scroller_y {
25
  overflow: visible;
26
  overflow-y: visible;
27
  padding: 5px;
28
  border: 1px solid transparent;
29
  background-color: #edf5fa;
30
  height: 300px; /* this defines the height of the treebrowser box */
31
}
32

    
33
/* ==== styling the tree ==== */
34

    
35
ul.taxon-nodes {
36
  /* background-color: #edf5fa; */
37
  padding: 0pt 0pt 0.25em 1em;
38
  left: 0px; /* fix IE7? */
39
  margin: 0;
40
}
41

    
42
ul.taxon-nodes li {
43
  padding: 0pt 1em 0pt 1em;
44
  margin-left: -1em;
45
  list-style-image: none;
46
  list-style-type: none;
47
  white-space: nowrap;
48
  font-weight: normal;
49
  list-style-image: none;
50
  list-style-type: none;
51
}
52

    
53
ul.taxon-nodes li .active {
54
  list-style-image: none;
55
  list-style-type: none;
56
  color: #027ac6;
57
  font-weight: bold;
58
}
59

    
60
ul.taxon-nodes li.expanded,
61
ul.taxon-nodes cdm_taxontree_filter li.expanded {
62
  list-style-image: none;
63
  list-style-type: none;
64
  background: transparent url(minus.png) no-repeat scroll 0px 0.35em;
65
  cursor: pointer;
66
}
67

    
68
ul.taxon-nodes li.collapsed,
69
ul.taxon-nodes .cdm_taxontree_filter li.collapsed {
70
  list-style-image: none;
71
  list-style-type: none;
72
  background: transparent url(plus.png) no-repeat scroll 0px 0.35em;
73
  cursor: pointer;
74
}
75

    
76
ul.taxon-nodes li.focused {
77
  list-style-image: none;
78
  list-style-type: none;
79
  font-weight: bold;
80
}
81

    
82
ul.taxon-nodes li.leaf {
83
  list-style-image: none;
84
  list-style-type: none;
85
  background:transparent url(menu-leaf.gif) no-repeat scroll 0px 0.35em;
86
}
87

    
88
ul.taxon-nodes li.filter_excluded {
89
  list-style-image: none;
90
  list-style-type: none;
91
  background-image: none;
92
  cursor: default;
93
  color: #888888;
94
}
95

    
96
ul.taxon-nodes li.leaf a,
97
ul.taxon-nodes li.expanded a,
98
ul.taxon-nodes li.collapsed a {
99
  display: inline;
100
  white-space: nowrap;
101
}
102

    
103
div.taxontree_header {
104
  height: 2em;
105
  display: block;
106
}
107

    
108
#cdm-taxonomictree-selector-form .form-item {
109
  margin-bottom: 0px;
110
  /*background-color:#f3f3f3;*/
111
  /*border:1px solid #dedede;*/
112
}
113

    
114
#cdm-taxonomictree-selector-form select {
115
  width: 100%;
116
}
(2-2/16)