mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-27 23:16:58 -04:00
Upgraded to FontAwesome 4.3.0
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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">×</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>
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user