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 100 101 102 103 104 105 106 107 108 109 110
|
h1 {
font-family: sans-serif;
}
h2 {
font-family: sans-serif;
}
li > a {
font-family: monospace;
}
body {
margin-bottom: 3em;
}
.testclass > td {
border-bottom: 1px solid silver;
color: #222222;
padding: 3px;
font-weight: bold;
}
.testclass > div {
padding-left: 1em;
}
.testclass > a > div {
font-size: 1.3em;
font-family: sans-serif;
}
.testcase > div {
border-left: 3px solid black;
padding-left: 1em;
}
.testcase pre {
display: block;
padding: 4px;
margin-right: 1em;
background-color: #121212;
color: #dedede;
white-space: pre-wrap;
}
.testcase .details b {
font-size: 1.2em;
}
.stdout, .stderr, .property {
margin-left: 1em;
}
.testcase-link {
text-decoration: none;
}
.testcase-cell {
height: 1.8em;
width: 1.8em;
vertical-align: middle;
text-align: center;
}
.testcase-cell a {
display: inline-block;
margin: -1em;
padding: 1em;
}
.testcase-combined {
white-space: pre;
padding-left: 1em;
}
.skipped {
background-color: gold;
}
.failed {
background-color: lightcoral;
}
.passed {
background-color: limegreen;
}
.tooltip {
visibility: hidden;
padding: 2px;
z-index: 1;
position: absolute;
background: cornsilk;
border: 1px solid black;
margin-top: 15px;
margin-left: 10px;
opacity: 0;
}
.tooltip-parent:hover .tooltip {
visibility: visible;
opacity: 1;
}
.testcase:hover {
background-color: gray;
color: white;
}
.result-stats {
margin: auto;
}
|