mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
Episode status icons converted to nd icons
This commit is contained in:
parent
c1b68e0dee
commit
e9fdc6a575
@ -41,21 +41,21 @@ define(
|
|||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
if (this.model.get('downloading')) {
|
if (this.model.get('downloading')) {
|
||||||
icon = 'icon-download-alt';
|
icon = 'icon-nd-downloading';
|
||||||
tooltip = 'Episode is downloading';
|
tooltip = 'Episode is downloading';
|
||||||
}
|
}
|
||||||
|
|
||||||
else if (!this.model.get('airDateUtc')) {
|
else if (!this.model.get('airDateUtc')) {
|
||||||
icon = 'icon-question-sign';
|
icon = 'icon-nd-tba';
|
||||||
tooltip = 'TBA';
|
tooltip = 'TBA';
|
||||||
}
|
}
|
||||||
|
|
||||||
else if (hasAired) {
|
else if (hasAired) {
|
||||||
icon = 'icon-warning-sign';
|
icon = 'icon-nd-missing';
|
||||||
tooltip = 'Episode missing from disk';
|
tooltip = 'Episode missing from disk';
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
icon = 'icon-time';
|
icon = 'icon-nd-not-aired';
|
||||||
tooltip = 'Episode has not aired';
|
tooltip = 'Episode has not aired';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -89,4 +89,20 @@
|
|||||||
|
|
||||||
.icon-nd-update:before {
|
.icon-nd-update:before {
|
||||||
.icon(@download-alt);
|
.icon(@download-alt);
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-nd-downloading:before {
|
||||||
|
.icon(@download-alt);
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-nd-tba:before {
|
||||||
|
.icon(@question-sign);
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-nd-missing:before {
|
||||||
|
.icon(@warning-sign);
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-nd-not-aired:before {
|
||||||
|
.icon(@time);
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user