From e9fdc6a575d70967edc3ddb2173f4394a7be7b16 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sat, 10 Aug 2013 12:11:58 -0700 Subject: [PATCH] Episode status icons converted to nd icons --- UI/Cells/EpisodeStatusCell.js | 8 ++++---- UI/Content/icons.less | 16 ++++++++++++++++ 2 files changed, 20 insertions(+), 4 deletions(-) diff --git a/UI/Cells/EpisodeStatusCell.js b/UI/Cells/EpisodeStatusCell.js index d20e96052..bef528f72 100644 --- a/UI/Cells/EpisodeStatusCell.js +++ b/UI/Cells/EpisodeStatusCell.js @@ -41,21 +41,21 @@ define( } else { if (this.model.get('downloading')) { - icon = 'icon-download-alt'; + icon = 'icon-nd-downloading'; tooltip = 'Episode is downloading'; } else if (!this.model.get('airDateUtc')) { - icon = 'icon-question-sign'; + icon = 'icon-nd-tba'; tooltip = 'TBA'; } else if (hasAired) { - icon = 'icon-warning-sign'; + icon = 'icon-nd-missing'; tooltip = 'Episode missing from disk'; } else { - icon = 'icon-time'; + icon = 'icon-nd-not-aired'; tooltip = 'Episode has not aired'; } } diff --git a/UI/Content/icons.less b/UI/Content/icons.less index efcb632d2..131b4f381 100644 --- a/UI/Content/icons.less +++ b/UI/Content/icons.less @@ -89,4 +89,20 @@ .icon-nd-update:before { .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); } \ No newline at end of file