1 | h1 {
|
2 | font-size: x-large;
|
3 | }
|
4 |
|
5 | table {
|
6 | border-collapse: collapse;
|
7 | font-family: sans-serif;
|
8 | }
|
9 |
|
10 | thead {
|
11 | font-weight: bold;
|
12 | background-color: #eee;
|
13 | }
|
14 |
|
15 | tbody tr:hover {
|
16 | background-color: #eee;
|
17 | }
|
18 |
|
19 | .totals {
|
20 | font-weight: bold;
|
21 | }
|
22 |
|
23 | td {
|
24 | padding-top: 0.3em;
|
25 | padding-bottom: 0.4em;
|
26 | padding-left: 1em;
|
27 | padding-right: 1em;
|
28 | text-align: right;
|
29 | }
|
30 |
|
31 | .details-row {
|
32 | padding-top: 0;
|
33 | }
|
34 |
|
35 | .case-desc {
|
36 | text-align: left;
|
37 | }
|
38 |
|
39 | /* failure messages */
|
40 | .assertion {
|
41 | color: darkred;
|
42 | }
|
43 |
|
44 | #details td {
|
45 | vertical-align: top; /* so the #anchor goes to top of cell */
|
46 | text-align: left;
|
47 | border-top: solid 1px;
|
48 | border-color: lightgrey;
|
49 | }
|
50 |
|
51 | .pass { color: darkgreen; font-size: large; }
|
52 | .ok { color: #660; font-size: large; }
|
53 | .n-i { color: #660; font-size: large; }
|
54 | .bug { color: #660; font-size: large; }
|
55 | .fail { color: darkred; font-size: large; }
|
56 | .timeout { color: purple; font-size: large; }
|
57 |
|
58 | .failed {
|
59 | background-color: #ffe0e0;
|
60 | }
|
61 |
|
62 | .osh-pass {
|
63 | background-color: #e0ffe0;
|
64 | }
|
65 |
|
66 | .osh-allow-fail {
|
67 | background-color: #ffffe0;
|
68 | }
|