Add movie status to the main search page if the movie is already in the db (label on small screen otherwise progress bar under poster)
Fix issues with yellow/grey movie status color not showing up properly Refactor the getMovieStatus to be more genericpull/5724/head
parent
e263d066da
commit
553b8b1945
@ -1,24 +1,29 @@
|
||||
.missing {
|
||||
.queue {
|
||||
padding-left: 2px;
|
||||
border-left: 4px solid $dangerColor;
|
||||
border-left: 4px solid $queueColor;
|
||||
}
|
||||
|
||||
.downloaded {
|
||||
.continuing {
|
||||
padding-left: 2px;
|
||||
border-left: 4px solid $successColor;
|
||||
border-left: 4px solid $primaryColor;
|
||||
}
|
||||
|
||||
.notAvailable {
|
||||
.availNotMonitored {
|
||||
padding-left: 2px;
|
||||
border-left: 4px solid $primaryColor;
|
||||
border-left: 4px solid $darkGray;
|
||||
}
|
||||
|
||||
.unmonitored {
|
||||
.ended {
|
||||
padding-left: 2px;
|
||||
border-left: 4px solid $warningColor;
|
||||
border-left: 4px solid $successColor;
|
||||
}
|
||||
|
||||
.queue {
|
||||
.missingMonitored {
|
||||
padding-left: 2px;
|
||||
border-left: 4px solid $queueColor;
|
||||
border-left: 4px solid $dangerColor;
|
||||
}
|
||||
|
||||
.missingUnmonitored {
|
||||
padding-left: 2px;
|
||||
border-left: 4px solid $warningColor;
|
||||
}
|
||||
|
Loading…
Reference in new issue