Project

General

Profile

Download (2.23 KB) Statistics
| Branch: | Tag: | Revision:
1
@CHARSET "ISO-8859-1";
2

    
3
/* ==== tree containers ==== */
4
 
5
/* --- one scrollable container for plain box --- */
6

    
7
div.cdm_taxontree_scroller_xy{
8
	overflow: auto;
9
	height: 300px;
10
}
11

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

    
24
div.cdm_taxontree_container{
25
  width: 250px; /* should be greater than the sidebar width (e.g. 250px for the garland theme) */
26
}
27

    
28
div.cdm_taxontree_scroller_y {
29
  overflow: visible;
30
  overflow-y: visible;
31
  padding: 5px;
32
  border: 1px solid transparent;
33
  background-color: #EDF5FA;
34
  height: 300px; /* this defines the height of the treebrowser box */
35
}
36

    
37
/* ==== styling the tree ==== */
38

    
39
ul.cdm_taxontree{
40
	background-color: #EDF5FA;
41
	padding:0pt 0pt 0.25em 1em;
42
	left: 0px; /* fix IE7? */
43
}
44
	
45
ul.cdm_taxontree li{
46
	padding:0pt 1em 0pt 1em;
47
	margin-left: -1em;
48
	list-style-image: none;
49
	list-style-type: none;
50
	white-space: nowrap;
51
	font-weight: normal;
52
}
53

    
54
ul.cdm_taxontree li .active{
55
	color: #027AC6;
56
	font-weight: bold;
57
}
58

    
59
ul.cdm_taxontree li.expanded, ul.cdm_taxontree cdm_taxontree_filter li.expanded{
60
  background: transparent url(minus.png) no-repeat scroll 0px 0.35em;
61
  cursor: pointer;
62
}
63

    
64
ul.cdm_taxontree li.collapsed, ul.cdm_taxontree cdm_taxontree_filter li.collapsed {
65
  background: transparent url(plus.png) no-repeat scroll 0px 0.35em;
66
  cursor: pointer;
67
}
68

    
69
ul.cdm_taxontree li.focused {
70
  font-weight: bold;	
71
}
72

    
73
ul.cdm_taxontree li.leaf{
74
	background:transparent url(menu-leaf.gif) no-repeat scroll 0px 0.35em;
75
}
76

    
77
ul.cdm_taxontree li.filter_excluded {
78
	background-image: none;
79
	cursor: default;
80
	color: #888888;
81
}
82

    
83
ul.cdm_taxontree li.leaf a,ul.cdm_taxontree li.expanded a,ul.cdm_taxontree li.collapsed a
84
	{
85
  display:inline;
86
  white-space: nowrap;
87
}
88

    
89
div.taxontree_header{
90
height:2em;
91
display:block;
92
}
93

    
94
#cdm-taxonomictree-selector-form .form-item{
95
    margin-bottom: 0px;
96
    /*background-color:#F3F3F3;
97
    border:1px solid #DEDEDE; */
98
}
99

    
100
#cdm-taxonomictree-selector-form select{
101
    width: 100%;
102
}
103

    
(3-3/18)