blob: 9f56b63dea7bc37f727598f5a829c855a5ad37e5 (
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
|
.chr_manhattan_plot .y_axis path,
.chr_manhattan_plot .y_axis line {
fill: none;
stroke: black;
shape-rendering: crispEdges;
}
.chr_manhattan_plot .y_axis text {
font-family: sans-serif;
font-size: 14px;
}
.chr_manhattan_plot .x_axis path,
.chr_manhattan_plot .x_axis line {
fill: none;
stroke: black;
shape-rendering: crispEdges;
}
.chr_manhattan_plot .x_axis text {
text-anchor: end;
font-family: sans-serif;
font-size: 10px;
}
rect.pane {
cursor: move;
fill: none;
pointer-events: all;
}
/*rect {
stroke: WhiteSmoke;
fill: lightgrey;
}*/
/*rect {
stroke: WhiteSmoke;
fill: Azure;
}*/
tr .outlier {
background-color: #ffff99;
}
table.dataTable thead th{
border-right: 1px solid white;
color: white;
background-color: #369;
}
table.dataTable thead .sorting_asc {
background-image: url("/js/DataTables/images/sort_asc_disabled.png");
}
table.dataTable thead .sorting_desc {
background-image: url("/js/DataTables/images/sort_desc_disabled.png");
}
table.dataTable thead th {
padding: 4px 18px 4px 10px;
}
table.dataTable tbody td {
padding: 4px 20px 2px 10px;
}
table.dataTable tbody tr.selected {
background-color: #ffee99;
}
table.dataTable.cell-border tbody th, table.dataTable.cell-border tbody td {
border-top: 1px solid #ccc;
border-right: 1px solid #ccc;
}
table.dataTable.cell-border tbody tr th:first-child,
table.dataTable.cell-border tbody tr td:first-child {
border-left: 1px solid #ccc;
}
|