summaryrefslogtreecommitdiff
path: root/programs/templates/index.css
blob: 4133d33ad26407eb7f7bf905faeee2027e4359de (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
78
79
80
81
82
83
84
85
div#table {
	margin-left: 1.75em;
	margin-right: 1.75em;
}

div#tablebody {
	display: box;
	box-orient: horizontal;
	display: -moz-box;
	-moz-box-orient: horizontal;
    width: 100%;
}

div.nameColumn {
	box-flex: 1;
	-moz-box-flex: 1;
}

div.nameColumn a.title {
	visibility: hidden;
}

div.groupbody {
	margin-left: 1.5em;
	padding: 0;
}

/* column header: test run name */
div.resultColumn {
	text-align: right;
}

div.resultColumn a {
	display: block;
	padding: 4pt;
}

a.title {
    display: block;
	font-weight: bold;
    color: black;
	background-color: #c8c838;
	padding: 4pt;
}

div.head {
	font-weight: bold;
	background-color: #c8c838;
	padding: 4pt;
}

div.group {
	white-space: nowrap;
}

/* Normal test names (as opposed to subgroups) */
div.groupbody > div:not([class]) {
	padding: 4pt;
}

.skip, .timeout, .fail, .pass {
}

.crash {
	color: #ffffff;
}

div.groupbody > div:not([class]):nth-child(odd)  { background-color: #ffff95 }
div.groupbody > div:not([class]):nth-child(even) { background-color: #e1e183 }

div.group .pass:nth-child(odd)   { background-color: #20ff20; }
div.group .pass:nth-child(even)  { background-color: #15e015; }

div.group .skip:nth-child(odd)   { background-color: #b0b0b0; }
div.group .skip:nth-child(even)  { background-color: #a0a0a0; }

div.group .timeout:nth-child(odd)   { background-color: #ff9020; }
div.group .timeout:nth-child(even)  { background-color: #ef8010; }

div.group .fail:nth-child(odd)   { background-color: #ff2020; }
div.group .fail:nth-child(even)  { background-color: #e00505; }

div.group .crash:nth-child(odd)  { background-color: #111111; }
div.group .crash:nth-child(even) { background-color: #000000; }