Project

General

Profile

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

    
3

    
4
div.cdm_taxontree_scroller_x{
5
  border: 1px solid #ADDDFA;
6
  overflow: auto;
7
	overflow-x: auto;
8
	overflow-y: auto;
9
}
10

    
11
div.cdm_taxontree_container{
12
  width: 250px; /* should be greater than the sidebar width (e.g. 250px for the garland theme) */
13
}
14

    
15
div.cdm_taxontree_scroller_y {
16
  overflow: visible;
17
  overflow-y: visible;
18
  padding: 5px;
19
  border: 1px solid transparent;
20
  background-color: #EDF5FA;
21
  height: 300px; /* this defines the height of the treebrowser box */
22
}
23

    
24
ul.cdm_taxontree{
25
	background-color: #EDF5FA;
26
	padding:0pt 0pt 0.25em 1em;
27
	left: 0px; /* fix IE7? */
28
}
29
	
30
ul.cdm_taxontree li{
31
	padding:0pt 1em 0pt 1em;
32
	margin-left: -1em;
33
	list-style-image: none;
34
	list-style-type: none;
35
	white-space: nowrap;
36
	font-weight: normal;
37
}
38

    
39
ul.cdm_taxontree li .active{
40
	color: #027AC6;
41
	font-weight: bold;
42
}
43

    
44
ul.cdm_taxontree li.expanded {
45
  background:transparent url(minus.png) no-repeat scroll 0px 0.35em;
46
  cursor: pointer;
47
}
48

    
49
ul.cdm_taxontree li.collapsed {
50
  background:transparent url(plus.png) no-repeat scroll 0px 0.35em;
51
  cursor: pointer;
52
}
53
ul.cdm_taxontree li.focused {
54
  font-weight: bold;	
55
}
56

    
57
ul.cdm_taxontree li.leaf{
58
	background:transparent url(menu-leaf.gif) no-repeat scroll 0px 0.35em;
59
}
60

    
61
ul.cdm_taxontree li.filter_excluded {
62
	background-image: none;
63
	cursor: default;
64
	color: #888888;
65
}
66

    
67

    
68

    
69
ul.cdm_taxontree li.leaf a, ul.cdm_taxontree li.expanded a, ul.cdm_taxontree li.collapsed a {
70
  display:inline;
71
  white-space: nowrap;
72
}
73

    
74
/* --------- cdm_taxontree_widget  ----------- */
75

    
76
div.cdm_taxontree_widget div.taxontree, div.cdm_taxontree_widget div.form-item{
77
  width: 40%;
78
  float: left;
79
}
80

    
81
div.cdm_taxontree_widget div.taxontree{
82
	height: 300px;
83
	padding-left: 20px;
84
  background-color: #EDF5FA;
85
  overflow: auto;
86
  width: 45%;
87
  float: left;
88
}
89

    
90
div.cdm_taxontree_widget .widget_select{
91
	cursor: pointer; 
92
}
93

    
94

    
95
div.cdm_taxontree_widget select{
96
	width: 100%;
97
}
98

    
99
div.cdm_taxontree_widget option[selected] {
100
	background-color: white;
101
}
102

    
(2-2/15)