border: 1px solid #ccc;
border-radius: 5px;
padding: 5px;
- margin: 10px 0px;
+ margin: 1em 0px;
position: relative;
}
+#buildersView {
+ border: 1px solid #ccc;
+ border-radius: 5px;
+ padding: 5px;
+ margin: 2em 0 1em 0;
+}
+
+#buildersView .testResults {
+ border: none;
+ margin: 1em 0 0 0;
+ padding: 0;
+}
+
.closeButton {
position: absolute;
right: 5px;
border: 0px solid #fff;
padding: 0;
margin: 0;
- width: 100%;
}
.resultsTable caption {
white-space: pre;
}
+.resultsTable thead th {
+ font-weight: bold;
+}
+
.resultsTable td,
.resultsTable th {
white-space: pre;
.resultsTable .resultCell {
display: inline-block;
padding: 0.2em 0.2em;
+ vertical-align: bottom;
+}
+
+.resultsTable thead {
+ cursor: pointer;
}
-.resultsTable tr:hover,
-.resultsTable tr:hover {
+.resultsTable th {
+ background-repeat: no-repeat;
+ background-position: right 10px center;
+}
+
+.resultsTable th.headerSortUp {
+ background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='8' height='6'><polygon points='0,0 8,0 4,6' fill='#999'/></svg>");
+}
+
+.resultsTable th.headerSortDown {
+ background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='8' height='8'><polygon points='0,6 8,6 4,0' fill='#999'/></svg>");
+}
+
+.resultsTable tbody tr:hover {
background-color: #eee;
}
+.resultsTable .externalTestLink {
+ margin-left: 0.5em;
+ display: inline-block;
+ width: 12px;
+ height: 12px;
+ background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16'><circle cx='10' cy='8' r='5' fill='transparent' stroke='#999'></circle><polygon points='8,5 13,8 8,11' fill='#999'/></svg>");
+ background-repeat: no-repeat;
+ background-position: right center;
+}
+
.resultsTable a {
color: #00f;
text-shadow: none;
color: #006;
}
-.resultsTable span a {
+.resultsTable .resultCell a {
display: block;
- width: 1.4em;
- height: 2em;
- border-radius: 3px;
- font-size: 0.5em;
- padding: 0.3em;
+ width: 1.5em;
+ height: 2.5em;
+ border-radius: 5px;
+ font-size: 0.7em;
text-align: center;
- line-height: 1.9em;
+ line-height: 2.5em;
+ padding: 0.1em;
color: inherit;
+ text-decoration: none;
}
.resultsTable .PASS a {