-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathanalysis.css
More file actions
64 lines (51 loc) · 943 Bytes
/
analysis.css
File metadata and controls
64 lines (51 loc) · 943 Bytes
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
th {
text-align: left;
background: #4a89dc;
color: #fff;
}
td.FAIL {
background: #da4453;
color: #fff;
}
td.PASS {
background: #37bc9b;
color: #fff;
}
td.NOTRUN, td.TIMEOUT, td.undefined {
background: #f6bb42;
color: #fff;
}
table > tbody > tr > td.NOTRUN, table > tbody > tr > td.TIMEOUT {
padding: 8px 2px;
}
td.OK {
color: transparent;
}
td.FAIL, td.PASS, td.NOTRUN, td.TIMEOUT, td.undefined, td.OK {
font-size: 0.7em;
text-align: center;
}
tr.test {
background: #ccd1d9;
}
tr.test > td:first-of-type {
font-weight: bold;
}
tr.test small {
font-weight: normal;
}
tr.subtest > td:first-of-type {
padding-left: 2em;
max-width: 790px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.floatingHeader {
position: fixed;
top: 0;
visibility: hidden;
}
dd {
padding-left: 2em;
}