forked from HuygensING/timbuctoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconcordion.css
99 lines (95 loc) · 1.99 KB
/
concordion.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
.success:hover, .success:hover * {
background-color: #afa;
}
.failure, .failure * {
background-color: #ffb0b0;
padding: 1px;
}
.failure .expected {
text-decoration: line-through;
color: #bb5050;
}
.ignored, .ignored * {
background-color: #f0f0f0;
}
.exceptionMessage {
background-color: #fdd;
font-family: Courier New, Courier, Monospace;
font-size: 10pt;
display: block;
font-weight: normal;
padding: 4px;
text-decoration: none !important;
}
.stackTrace, .stackTrace * {
font-weight: normal;
}
.stackTrace {
display: none;
padding: 1px 4px 4px 4px;
background-color: #fdd;
border-top: 1px dotted black;
}
.stackTraceExceptionMessage {
display: block;
font-family: Courier New, Courier, Monospace;
font-size: 8pt;
white-space: wrap;
padding: 1px 0px 1px 0px;
}
.stackTraceEntry {
white-space: nowrap;
font-family: Courier New, Courier, Monospace;
display: block;
font-size: 8pt;
padding: 1px 0px 1px 32px;
}
.stackTraceButton {
font-size: 8pt;
margin: 2px 8px 2px 0px;
font-weight: normal;
font-family: Arial;
}
.special {
font-style: italic;
}
.missing, .missing * {
background-color: #ff9999;
color:#bb5050;
text-decoration: line-through;
}
.surplus, .surplus * {
background-color: #ff9999;
}
.footer {
text-align: right;
margin-top: 40px;
font-size: 8pt;
width: 100%;
color: #999;
}
.footer .testTime {
padding: 2px 10px 0px 0px;
}
.defaultValue {
color: gray;
}
.requestCaption, .responseCaption {
margin-top: 1em;
font-weight: bold;
font-size: 0.8em;
}
.requestContent, .responseContent {
background: #f6f9fc;
padding: 10px;
border: 1px solid #d0d4d9;
font-family: monospace;
border-radius: 3px;
}
.superfluous {color: lightgray}
.missing {color: red}
.mismatch {color: red}
.expected { color: lightgray }
.matching > .expected {display: none}
.superfluous > .expected {display: none}
pre:hover .expected {display: initial}