mirror of
https://github.com/ankitects/anki.git
synced 2025-09-25 01:06:35 -04:00
Fix true retention table dimensions
https://forums.ankiweb.net/t/anki-24-10-beta/49989/118
This commit is contained in:
parent
78b9580447
commit
40f9e0dc7a
1 changed files with 3 additions and 1 deletions
|
@ -65,9 +65,11 @@ export function renderTrueRetention(data: GraphsResponse, revlogRange: RevlogRan
|
||||||
td.trl { border: 1px solid; text-align: left; }
|
td.trl { border: 1px solid; text-align: left; }
|
||||||
td.trr { border: 1px solid; text-align: right; }
|
td.trr { border: 1px solid; text-align: right; }
|
||||||
td.trc { border: 1px solid; text-align: center; }
|
td.trc { border: 1px solid; text-align: center; }
|
||||||
table { width: 100%; }
|
table { width: 100%; table-layout: fixed; }
|
||||||
|
colgroup col:first-child { width: 40% }
|
||||||
</style>
|
</style>
|
||||||
<table cellspacing="0" cellpadding="2">
|
<table cellspacing="0" cellpadding="2">
|
||||||
|
<colgroup><col><col><col></colgroup>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="trl"><b>${scopeRange(scope)}</b></td>
|
<td class="trl"><b>${scopeRange(scope)}</b></td>
|
||||||
<td class="trr">${tr.statisticsTrueRetentionPass()}</td>
|
<td class="trr">${tr.statisticsTrueRetentionPass()}</td>
|
||||||
|
|
Loading…
Reference in a new issue