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
+4 -4
View File
@@ -22,12 +22,12 @@ var view = Marionette.ItemView.extend({
if (checked) {
this.ui.itemDiv.removeClass('do-not-rename');
this.ui.checkboxIcon.addClass('icon-check');
this.ui.checkboxIcon.removeClass('icon-check-empty');
this.ui.checkboxIcon.addClass('icon-sonarr-checked');
this.ui.checkboxIcon.removeClass('icon-sonarr-unchecked');
} else {
this.ui.itemDiv.addClass('do-not-rename');
this.ui.checkboxIcon.addClass('icon-check-empty');
this.ui.checkboxIcon.removeClass('icon-check');
this.ui.checkboxIcon.addClass('icon-sonarr-unchecked');
this.ui.checkboxIcon.removeClass('icon-sonarr-checked');
}
},
@@ -10,10 +10,10 @@
</div>
<div class="col-md-11">
<div class="row">
<div class="col-md-12 file-path"><i class="icon-nd-existing" title="Existing path" /> {{existingPath}}</div>
<div class="col-md-12 file-path"><i class="icon-sonarr-existing" title="Existing path" /> {{existingPath}}</div>
</div>
<div class="row">
<div class="col-md-12 file-path"><i class="icon-nd-suggested" title="Suggested path" /> {{newPath}}</div>
<div class="col-md-12 file-path"><i class="icon-sonarr-suggested" title="Suggested path" /> {{newPath}}</div>
</div>
</div>
</div>
+4 -4
View File
@@ -95,11 +95,11 @@ module.exports = Marionette.Layout.extend({
_setCheckedState : function(checked) {
if (checked) {
this.ui.checkboxIcon.addClass('icon-check');
this.ui.checkboxIcon.removeClass('icon-check-empty');
this.ui.checkboxIcon.addClass('icon-sonarr-checked');
this.ui.checkboxIcon.removeClass('icon-sonarr-unchecked');
} else {
this.ui.checkboxIcon.addClass('icon-check-empty');
this.ui.checkboxIcon.removeClass('icon-check');
this.ui.checkboxIcon.addClass('icon-sonarr-unchecked');
this.ui.checkboxIcon.removeClass('icon-sonarr-checked');
}
},
@@ -3,7 +3,7 @@
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
<h3>
<i class="icon-nd-rename"></i> Organize & Rename
<i class="icon-sonarr-rename"></i> Organize & Rename
</h3>
</div>
@@ -22,7 +22,7 @@
<label class="checkbox-button" title="Toggle all">
<input type="checkbox" checked="checked" class="x-rename-all"/>
<div class="btn btn-icon-only">
<i class="icon-check"></i>
<i class="icon-sonarr-checked"></i>
</div>
</label>
</span>
-10
View File
@@ -12,16 +12,6 @@
opacity: 0.7;
}
.icon-nd-existing:before {
.icon(@minus);
color : @brand-danger;
}
.icon-nd-suggested:before {
.icon(@plus);
color : @brand-success;
}
.rename-checkbox {
width: 40px;
padding-top: 5px;