mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2025-03-14 12:10:18 +03:00
fix: add progress border + percentage #430
This commit is contained in:
parent
db86506c5e
commit
acc07335d3
1 changed files with 5 additions and 3 deletions
|
@ -14,7 +14,8 @@
|
|||
<td :class="commonStyle">
|
||||
{{ $t('modals.detail.pageInfo.pieceStates') }}
|
||||
</td>
|
||||
<td id="pieceStates">
|
||||
<td id="pieceStates" class="d-flex">
|
||||
<span class="mr-2 align-center d-flex"> {{ torrent.progress }}% </span>
|
||||
<canvas width="0" height="1" />
|
||||
</td>
|
||||
</tr>
|
||||
|
@ -110,7 +111,7 @@
|
|||
</td>
|
||||
<td>
|
||||
{{ torrent.num_seeds
|
||||
}}<span cla:class="commonStyle">/{{ torrent.available_seeds }}</span>
|
||||
}}<span :class="commonStyle">/{{ torrent.available_seeds }}</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
@ -338,7 +339,8 @@ export default {
|
|||
|
||||
canvas {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
width: 95%;
|
||||
border: 1px dotted;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Add table
Reference in a new issue