-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtape.css
80 lines (80 loc) · 1.41 KB
/
tape.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
div.test {
width: 100%;
border-top: 1px dotted grey;
margin-top: 1em;
background: #eef;
font-weight: bold;
}
p.assert {
margin-top: 0px;
margin-bottom: 0px;
font-weight: normal;
width: 100%;
}
p.assert.ok {
background: #efe;
color: grey;
}
p.assert.fail {
background: #faa;
}
p.comment {
background: #eef;
color: grey;
font-style: italic;
margin-top: 0.2em;
margin-bottom: 0.2em;
padding-left: 2.4em;
}
p.end {
border-bottom: 1px dotted grey;
margin-top: 1em;
background: #eef;
margin-top: 0.2em;
margin-bottom: 0.2em;
}
p.diff {
background: #ffe;
margin-top: 0px;
margin-bottom: 0px;
padding-top: 0.25em;
padding-bottom: 0.25em;
padding-left: 4em;
font-weight: normal;
white-space: pre-wrap;
}
ins {
background: #afa;
}
del {
background: #faa;
text-decoration: strike;
}
span.ok {
font-weight: bold;
}
span.actual, span.expected, span.name {
padding-left: 1em;
font-style: italic;
max-width: 25em;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
display: inline-block;
}
p.assert.fail span.name {
color: #555;
}
span.expected:before {
content: '!=';
padding-right: 1em;
}
span.line {
padding-left: 1em;
float: right;
text-align: right;
overflow: hidden;
text-overflow: ellipsis;
font-family: monospace;
color: #888;
}