mirror of
https://github.com/transmission/transmission
synced 2024-12-23 08:13:27 +00:00
Add seed progress percentage to compact rows (#6034)
Fixes #6009 TorrentRendererFull actually uses the class `full` to add seeding progress. We can get seeding progress functionality in compact mode if we just apply the same progress indication to the compact rows, too. (Put simply: don't rely on the `full` class to apply progress percentage.)
This commit is contained in:
parent
6ead147620
commit
0e0c6b8e2b
1 changed files with 1 additions and 5 deletions
|
@ -728,11 +728,7 @@ $video-image: '../img/film.svg';
|
|||
background-color: var(--color-progressbar-seed-paused);
|
||||
}
|
||||
|
||||
&.seed {
|
||||
background-color: var(--color-progressbar-seed-1);
|
||||
}
|
||||
|
||||
&.seed.full:not(.paused) {
|
||||
&.seed:not(.paused) {
|
||||
background: linear-gradient(
|
||||
to right,
|
||||
var(--color-progressbar-seed-1) 0,
|
||||
|
|
Loading…
Reference in a new issue