mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-26 22:46:37 -04:00
Upgraded to FontAwesome 4.3.0
This commit is contained in:
@@ -19,7 +19,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<span class="indicator x-indicator"><i class="icon-spinner icon-spin"></i></span>
|
||||
<span class="indicator x-indicator"><i class="icon-sonarr-spinner fa-spin"></i></span>
|
||||
<button class="btn" data-dismiss="modal">close</button>
|
||||
<button class="btn btn-primary x-ok">ok</button>
|
||||
</div>
|
||||
|
||||
@@ -8,16 +8,16 @@ module.exports = NzbDroneCell.extend({
|
||||
this.$el.empty();
|
||||
|
||||
var type = this.model.get(this.column.get('name'));
|
||||
var icon = 'icon-hdd';
|
||||
var icon = 'icon-sonarr-hdd';
|
||||
|
||||
if (type === 'computer') {
|
||||
icon = 'icon-desktop';
|
||||
icon = 'icon-sonarr-browser-computer';
|
||||
} else if (type === 'parent') {
|
||||
icon = 'icon-level-up';
|
||||
icon = 'icon-sonarr-browser-up';
|
||||
} else if (type === 'folder') {
|
||||
icon = 'icon-folder-close-alt';
|
||||
icon = 'icon-sonarr-browser-folder';
|
||||
} else if (type === 'file') {
|
||||
icon = 'icon-file-alt';
|
||||
icon = 'icon-sonarr-browser-file';
|
||||
}
|
||||
|
||||
this.$el.html('<i class="{0}"></i>'.format(icon));
|
||||
|
||||
Reference in New Issue
Block a user