Upgraded to FontAwesome 4.3.0

This commit is contained in:
Mark McDowall
2015-02-20 18:20:31 -08:00
parent c4ce64d98d
commit 015deacd7b
132 changed files with 2260 additions and 3917 deletions

View File

@@ -45,7 +45,7 @@ module.exports = Marionette.Layout.extend({
items : [
{
title : 'Backup',
icon : 'icon-file-text',
icon : 'icon-sonarr-file-text',
command : 'backup',
properties : { type : 'manual' },
successMessage : 'Database and settings were backed up successfully',

View File

@@ -6,16 +6,16 @@ module.exports = NzbDroneCell.extend({
render : function() {
this.$el.empty();
var icon = 'icon-time';
var icon = 'icon-sonarr-backup-scheduled';
var title = 'Scheduled';
var type = this.model.get(this.column.get('name'));
if (type === 'manual') {
icon = 'icon-book';
icon = 'icon-sonarr-backup-manual';
title = 'Manual';
} else if (type === 'update') {
icon = 'icon-retweet';
icon = 'icon-sonarr-backup-update';
title = 'Before update';
}