-
Notifications
You must be signed in to change notification settings - Fork 0
/
test-runner.css
61 lines (52 loc) · 944 Bytes
/
test-runner.css
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
header {
border-bottom: 3px dotted silver;
margin-bottom: 0.5em;
display: flex;
flex-direction: row;
}
header > :nth-child(1) { flex: 0 0 7em; }
header > :nth-child(3) { flex: 1 1 auto; }
header > :nth-child(4) { flex: 1 1 auto; }
runner-name {
font-weight: bold;
}
tom-container {
display: block;
}
test-el {
display: flex;
flex-direction: row;
margin-bottom: 0.5em;
}
test-el > :nth-child(1) { flex: 0 0 8em; }
test-el > :nth-child(2) { flex: 1 1 auto; }
test-el > * {
padding: 0.5em;
}
test-el state-indicator {
margin-right: 0.5em;
color: white;
}
test-el details {
display: none;
}
test-el details[data-has-data="true"] {
display: initial;
}
[state="ignored"] {
background-color: grey;
}
[state="pending"] {
background-color: initial;
}
[state="in-progress"],
[state="start"]
{
background-color: orange;
}
[state="pass"] {
background-color: green;
}
[state="fail"] {
background-color: red;
}