Skip to content

Commit b7bbd68

Browse files
committed
Moved resources directory. Added readable.css to be included using --css=/path/to/readable.css for improving readability
1 parent 7cce66d commit b7bbd68

3 files changed

Lines changed: 72 additions & 0 deletions

File tree

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
body {
2+
color: #000;
3+
}
4+
5+
a {
6+
color: #000;
7+
}
8+
9+
/******************************
10+
* TEST RESULT COLORS
11+
******************************/
12+
span.passed {
13+
color: #6c6;
14+
}
15+
16+
span.skipped, span.xfailed, span.rerun {
17+
color: #D88E5A;
18+
}
19+
20+
span.error, span.failed, span.xpassed {
21+
color: #D8655A;
22+
}
23+
24+
tbody.passed {
25+
background-color: #6c6;
26+
}
27+
28+
tbody.skipped, tbody.xfailed, tbody.rerun {
29+
background-color: #D88E5A;
30+
}
31+
32+
tbody.error, tbody.failed, tbody.xpassed {
33+
background-color: #D8655A;
34+
}
35+
36+
.passed .col-result, .skipped .col-result, .xfailed .col-result, .rerun .col-result,
37+
.error .col-result, .failed .col-result, .xpassed .col-result {
38+
color: black;
39+
}
40+
41+
td.extra {
42+
background-color: white;
43+
}
44+
45+
/******************************
46+
* RESULTS TABLE
47+
*
48+
* 1. Table Layout
49+
* 2. Extra
50+
* 3. Sorting items
51+
*
52+
******************************/
53+
/*------------------
54+
* 1. Table Layout
55+
*------------------*/
56+
57+
#results-table {
58+
color: #000;
59+
}
60+
61+
/*------------------
62+
* 2. Extra
63+
*------------------*/
64+
.log {
65+
font-family: Courier, "Courier New", monospace;
66+
}
67+
.expander::after {
68+
color: #444;
69+
}
70+
.collapser::after {
71+
color: #444;
72+
}

0 commit comments

Comments
 (0)