WebUI: Display torrent progress percentage in General tab

This PR adds torrent progress percentage next to pieces bar in General tab, as in the GUI.

PR #21756.
This commit is contained in:
skomerko
2024-11-09 09:03:20 +01:00
committed by GitHub
parent 06fe3e5fb0
commit 71f83cf9ba
4 changed files with 27 additions and 9 deletions

View File

@@ -700,6 +700,22 @@ td.generalLabel {
padding: 2px;
}
#propProgressWrapper {
align-items: center;
display: flex;
height: auto;
margin: 5px 2px;
& > span:not(:first-child, :empty) {
margin-left: 6px;
min-width: 3.5em;
}
& #progress {
flex: 1;
}
}
.piecesbarWrapper {
position: relative;
width: 100%;