File tree Expand file tree Collapse file tree 1 file changed +11
-8
lines changed Expand file tree Collapse file tree 1 file changed +11
-8
lines changed Original file line number Diff line number Diff line change 206
206
height : 10px ;
207
207
}
208
208
209
- # content td {
209
+ # bootstrap th {
210
210
text-align : center;
211
211
}
212
212
213
- # bootstrap th {
213
+ # bootstrap td {
214
214
text-align : center;
215
215
}
216
216
227
227
width : 25% ;
228
228
min-width : 50px ;
229
229
}
230
-
231
- . benches th + td {
230
+ . benches td {
231
+ text-align : center;
232
232
width : 25% ;
233
233
}
234
+ .benches td .numeric {
235
+ text-align : right;
236
+ }
234
237
235
238
.benchmark-name {
236
239
text-align : center;
@@ -1043,22 +1046,22 @@ <h2>Comparing <span id="stat-header">{{stat}}</span> between <span id="before">{
1043
1046
<td>{{ testCase.benchmark }}</td>
1044
1047
<td>{{ testCase.profile }}</td>
1045
1048
<td>{{ testCase.scenario }}</td>
1046
- <td>
1049
+ <td class="numeric" >
1047
1050
<a v-bind:href="percentLink(commitB, commitA, testCase)">
1048
1051
<span v-bind:class="percentClass(testCase.percent)">
1049
1052
{{ testCase.percent.toFixed(2) }}%{{testCase.isDodgy ? "?" : ""}}
1050
1053
</span>
1051
1054
</a>
1052
1055
</td>
1053
- <td>
1056
+ <td class="numeric" >
1054
1057
{{ testCase.significanceFactor ? testCase.significanceFactor.toFixed(2) + "x" : "-" }}
1055
1058
</td>
1056
- <td v-if="showRawData">
1059
+ <td v-if="showRawData" class="numeric" >
1057
1060
<a v-bind:href="detailedQueryLink(commitA, testCase)">
1058
1061
<abbr :title="testCase.datumA">{{ testCase.datumA.toFixed(2) }}</abbr>
1059
1062
</a>
1060
1063
</td>
1061
- <td v-if="showRawData">
1064
+ <td v-if="showRawData" class="numeric" >
1062
1065
<a v-bind:href="detailedQueryLink(commitB, testCase)">
1063
1066
<abbr :title="testCase.datumB">{{ testCase.datumB.toFixed(2) }}</abbr>
1064
1067
</a>
You can’t perform that action at this time.
0 commit comments