1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-18 21:35:51 -04:00

more nd icons and some spelling fixes

This commit is contained in:
Mark McDowall
2013-08-13 22:25:53 -07:00
parent 3ef9b40754
commit b1e5646d7d
6 changed files with 18 additions and 9 deletions

View File

@@ -92,7 +92,7 @@
}
.icon-nd-downloading:before {
.icon(@download-alt);
.icon(@cloud-download);
}
.icon-nd-tba:before {
@@ -105,4 +105,8 @@
.icon-nd-not-aired:before {
.icon(@time);
}
.icon-nd-imported:before {
.icon(@download-alt);
}

View File

@@ -18,7 +18,7 @@ define(
switch (this.cellValue.get('eventType')) {
case 'grabbed':
icon = 'icon-cloud-download';
icon = 'icon-nd-downloading';
toolTip = 'Episode grabbed from {0} and sent to download client'.format(this.cellValue.get('data').indexer);
break;
case 'seriesFolderImported':
@@ -26,7 +26,7 @@ define(
toolTip = 'Existing episode file added to library';
break;
case 'downloadFolderImported':
icon = 'icon-download-alt';
icon = 'icon-nd-imported';
toolTip = 'Episode downloaded successfully and picked up from download client';
break;
default :