Project

General

Profile

Download (2.57 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
}
50

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

    
58
ul.taxon-nodes li.focused {
59
    list-style-image: none;
60
    list-style-type: none;
61
    font-weight: bold;
62
}
63

    
64
#block-cdm-taxontree-cdm-tree ul.taxon-nodes li.expanded,
65
#block-cdm-taxontree-cdm-tree ul.taxon-nodes .cdm_taxontree_filter li.expanded {
66
  list-style-image: none;
67
  list-style-type: none;
68
  background: transparent url(minus.png) no-repeat scroll 0px 0.35em;
69
  cursor: pointer;
70
}
71

    
72
#block-cdm-taxontree-cdm-tree ul.taxon-nodes li.collapsed,
73
#block-cdm-taxontree-cdm-tree ul.taxon-nodes .cdm_taxontree_filter li.collapsed {
74
  list-style-image: none;
75
  list-style-type: none;
76
  background: transparent url(plus.png) no-repeat scroll 0px 0.35em;
77
  cursor: pointer;
78
}
79

    
80
#block-cdm-taxontree-cdm-tree ul.taxon-nodes li.leaf {
81
  list-style-image: none;
82
  list-style-type: none;
83
  background:transparent url(menu-leaf.gif) no-repeat scroll 0px 0.35em;
84
}
85

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

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

    
101
div.taxontree_header {
102
  height: 2em;
103
  display: block;
104
}
105

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

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