mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04:00
ensure revlog headers match alignment of columns
+ right-align interval; it looks bad centered
This commit is contained in:
parent
5e15ab0ebb
commit
fd013f68d2
1 changed files with 6 additions and 6 deletions
|
@ -83,11 +83,11 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||||
<table class="revlog-table">
|
<table class="revlog-table">
|
||||||
<tr>
|
<tr>
|
||||||
<th class="left">{tr2.cardStatsReviewLogDate()}</th>
|
<th class="left">{tr2.cardStatsReviewLogDate()}</th>
|
||||||
<th class="hidden-xs">{tr2.cardStatsReviewLogType()}</th>
|
<th class="center hidden-xs">{tr2.cardStatsReviewLogType()}</th>
|
||||||
<th>{tr2.cardStatsReviewLogRating()}</th>
|
<th class="center">{tr2.cardStatsReviewLogRating()}</th>
|
||||||
<th>{tr2.cardStatsInterval()}</th>
|
<th class="right">{tr2.cardStatsInterval()}</th>
|
||||||
<th class="hidden-xs">{tr2.cardStatsEase()}</th>
|
<th class="center hidden-xs">{tr2.cardStatsEase()}</th>
|
||||||
<th>{tr2.cardStatsReviewLogTimeTaken()}</th>
|
<th class="right">{tr2.cardStatsReviewLogTimeTaken()}</th>
|
||||||
</tr>
|
</tr>
|
||||||
{#each revlogRows as row, _index}
|
{#each revlogRows as row, _index}
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -96,7 +96,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||||
{row.reviewKind}
|
{row.reviewKind}
|
||||||
</td>
|
</td>
|
||||||
<td class="center {row.ratingClass}">{row.rating}</td>
|
<td class="center {row.ratingClass}">{row.rating}</td>
|
||||||
<td class="center">{row.interval}</td>
|
<td class="right">{row.interval}</td>
|
||||||
<td class="center hidden-xs">{row.ease}</td>
|
<td class="center hidden-xs">{row.ease}</td>
|
||||||
<td class="right">{row.takenSecs}</td>
|
<td class="right">{row.takenSecs}</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
Loading…
Reference in a new issue