blob: 06ae52d68305686c909e4044873456a9f55c4556 (
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
|
.hidden {
display: none;
}
#product, #component {
width: 20em;
}
#parameters th {
text-align: left;
vertical-align: middle !important;
}
#report tr.bugitem:hover {
background: #ccccff;
}
#report td, #report th {
padding: 3px 10px 3px 3px;
}
#report th {
text-align: left;
}
#report th.right {
text-align: right;
}
#report th.sorted {
text-decoration: underline;
}
#report-header {
background-color: #cccccc;
}
.report_subheader {
background-color: #dddddd;
}
.report_row_odd {
background-color: #eeeeee;
color: #000000;
}
.report_row_even {
background-color: #ffffff;
color: #000000;
}
#report.hover tr:hover {
background-color: #ccccff;
}
#report {
border: 1px solid #888888;
}
#report th, #report td {
border: 0px;
}
.disabled {
color: #888888;
}
.hoverrow tr:hover {
background-color: #ccccff;
}
.problem {
color: #aa2222;
}
|