mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2025-03-14 12:10:18 +03:00
Support more torrent states
This commit is contained in:
parent
4bda13ab8a
commit
c78291b247
2 changed files with 4 additions and 2 deletions
|
@ -33,7 +33,7 @@
|
|||
border-left: 4px solid #2e5eaa;
|
||||
}
|
||||
.project.seeding {
|
||||
border-left: 4px solid #00897B;
|
||||
border-left: 4px solid #26A69A;
|
||||
}
|
||||
.project.checking {
|
||||
border-left: 4px solid #FF7043;
|
||||
|
@ -54,7 +54,7 @@
|
|||
background: #2e5eaa !important;
|
||||
}
|
||||
.v-chip.seeding {
|
||||
background: #00897B!important;
|
||||
background: #26A69A!important;
|
||||
}
|
||||
.v-chip.checking {
|
||||
background: #FF7043!important;
|
||||
|
|
|
@ -31,6 +31,8 @@ export default class Torrent {
|
|||
case 'downloading':
|
||||
return 'busy'
|
||||
case 'forcedUP':
|
||||
case 'stalledUP':
|
||||
case 'uploading':
|
||||
return 'seeding'
|
||||
case 'pausedDL':
|
||||
return 'paused'
|
||||
|
|
Loading…
Add table
Reference in a new issue