blob: 53530b6d03d438626dc61b6792344e34ddf660d0 (
plain)
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
#index_desc_container {
width: 588px;
height: 365px;
background-color: #FFFFFF;
border: 1px solid #94C721;
padding: 0 20px 0 20px;
}
.index_desc_title_line {
height: 42px;
line-height: 42px;
border-bottom: 1px solid #D6D0D6;
width: 588px;
}
.index_desc_title_line .index_desc_title {
font-weight: bold;
color: #4A4A4A;
font-size: 18px;
float: left;
}
.index_desc_title_line .index_desc_close {
float: right;
background: url('../images/closed.png') no-repeat;
height: 11px;
width: 11px;
margin: 15px 0 0 0;
cursor: pointer;
}
.index_desc_content {
margin-top: 8px;
height: 223px;
line-height: 20px;
color: #4A4A4A;
font-size: 14px;
overflow: auto;
}
.index_desc_content .not_found {
color: #4A4A4A;
line-height: 22px;
font-size: 16px;
text-align: left;
}
.collection {
background-color: #F7F7F7;
height: 38px;
line-height: 38px;
font-size: 16px;
text-align: center;
cursor: pointer;
border: 1px solid #CCCCCC;
border-radius: 3px;
border-shadow: 0 0 2px white;
}
.collection:hover {
background-color: #EAEAEA;
}
/* style for annotation_not_found */
.collection_no_annotation {
height: 40px;
}
.go_library {
margin-top: 12px;
height: 28px;
}
.go_library .go_library_btn {
float: right;
height: 25px;
line-height: 21px;
padding-left: 5px;
padding-right: 5px;
padding-bottom: 2px;
padding-top: 2px;
}
.go_library .go_library_btn:disabled {
background-color: #CCCCCC;
}
|