updated stats table css
This commit is contained in:
parent
dd3942b967
commit
ea922f1365
2 changed files with 10 additions and 6 deletions
|
@ -171,6 +171,9 @@ button.copy-button {
|
||||||
border-bottom: 1px solid grey;
|
border-bottom: 1px solid grey;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
.stats-table-url {
|
||||||
|
word-wrap: break-word;
|
||||||
|
}
|
||||||
|
|
||||||
@media (max-width: 750px) {
|
@media (max-width: 750px) {
|
||||||
|
|
||||||
|
|
|
@ -4,10 +4,14 @@
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<h3>Site Statistics</h3>
|
<h3>Site Statistics</h3>
|
||||||
|
<p>Serve: {{ totals.totalServe }}</p>
|
||||||
|
<p>Publish: {{ totals.totalPublish }}</p>
|
||||||
|
<p>Show: {{ totals.totalShow }}</p>
|
||||||
|
<p>Percent Success: {{ percentSuccess}}%</p>
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
<th>action</th>
|
<th>action</th>
|
||||||
<th>url</th>
|
<th >url</th>
|
||||||
<th class="center-text">count</th>
|
<th class="center-text">count</th>
|
||||||
<th class="center-text">success</th>
|
<th class="center-text">success</th>
|
||||||
<th class="center-text">failure</th>
|
<th class="center-text">failure</th>
|
||||||
|
@ -15,7 +19,7 @@
|
||||||
{{#each records}}
|
{{#each records}}
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{ this.action }}</td>
|
<td>{{ this.action }}</td>
|
||||||
<td>{{ this.url }}</td>
|
<td class="stats-table-url">{{ this.url }}</td>
|
||||||
<td class="center-text">{{ this.count }}</td>
|
<td class="center-text">{{ this.count }}</td>
|
||||||
<td class="center-text">{{ this.success }}</td>
|
<td class="center-text">{{ this.success }}</td>
|
||||||
<td class="center-text">{{ this.failure }}</td>
|
<td class="center-text">{{ this.failure }}</td>
|
||||||
|
@ -29,9 +33,6 @@
|
||||||
<td class="totals-row center-text">{{ totals.totalFailure }}</td>
|
<td class="totals-row center-text">{{ totals.totalFailure }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<p>Serve: {{ totals.totalServe }}</p>
|
|
||||||
<p>Publish: {{ totals.totalPublish }}</p>
|
|
||||||
<p>Show: {{ totals.totalShow }}</p>
|
|
||||||
<p>Percent Success: {{ percentSuccess}}%</p>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
Loading…
Add table
Reference in a new issue