mirror of https://github.com/lidarr/Lidarr
Fixed: Added symbols and tooltips to Manual Search last two sort columns.
This commit is contained in:
parent
f39e99bd3c
commit
6393f66448
|
@ -470,3 +470,7 @@
|
|||
.icon-sonarr-episode-file {
|
||||
.fa-icon-content(@fa-var-file-video-o);
|
||||
}
|
||||
|
||||
.icon-sonarr-header-rejections {
|
||||
.fa-icon-content(@fa-var-exclamation-circle);
|
||||
}
|
|
@ -292,3 +292,9 @@ dl.info {
|
|||
vertical-align : bottom;
|
||||
}
|
||||
}
|
||||
|
||||
.sort-direction-icon {
|
||||
.pull-right();
|
||||
position : relative;
|
||||
width : 0px;
|
||||
}
|
|
@ -53,16 +53,22 @@ module.exports = Marionette.Layout.extend({
|
|||
cell : QualityCell
|
||||
},
|
||||
{
|
||||
name : 'rejections',
|
||||
label : '',
|
||||
cell : ApprovalStatusCell,
|
||||
sortable : false
|
||||
name : 'rejections',
|
||||
label : '<i class="icon-sonarr-header-rejections" />',
|
||||
tooltip : 'Rejections',
|
||||
cell : ApprovalStatusCell,
|
||||
sortable : true,
|
||||
sortType : 'fixed',
|
||||
direction : 'ascending'
|
||||
},
|
||||
{
|
||||
name : 'download',
|
||||
label : '',
|
||||
cell : DownloadReportCell,
|
||||
sortable : true
|
||||
name : 'download',
|
||||
label : '<i class="icon-sonarr-download" />',
|
||||
tooltip : 'Auto-Search Prioritization',
|
||||
cell : DownloadReportCell,
|
||||
sortable : true,
|
||||
sortType : 'fixed',
|
||||
direction : 'ascending'
|
||||
}
|
||||
],
|
||||
|
||||
|
|
|
@ -17,13 +17,19 @@ module.exports = function() {
|
|||
render : function() {
|
||||
this.$el.empty();
|
||||
this.$el.append(this.column.get('label'));
|
||||
if (this.column.get('tooltip')) {
|
||||
this.$el.attr({
|
||||
'title' : this.column.get('tooltip'),
|
||||
'data-container' : '.table'
|
||||
});
|
||||
}
|
||||
|
||||
var column = this.column;
|
||||
var sortable = Backgrid.callByNeed(column.sortable(), column, this.collection);
|
||||
|
||||
if (sortable) {
|
||||
this.$el.addClass('sortable');
|
||||
this.$el.append(' <i class="pull-right"></i>');
|
||||
this.$el.prepend(' <i class="sort-direction-icon"></i>');
|
||||
}
|
||||
|
||||
//Do we need this?
|
||||
|
@ -51,7 +57,7 @@ module.exports = function() {
|
|||
},
|
||||
|
||||
direction : function(dir) {
|
||||
this.$el.children('i').removeClass('icon-sonarr-sort-asc icon-sonarr-sort-desc');
|
||||
this.$el.children('i.sort-direction-icon').removeClass('icon-sonarr-sort-asc icon-sonarr-sort-desc');
|
||||
|
||||
if (arguments.length) {
|
||||
if (dir) {
|
||||
|
@ -137,11 +143,11 @@ module.exports = function() {
|
|||
|
||||
_setSortIcon : function(dir) {
|
||||
this._removeSortIcon();
|
||||
this.$el.children('i').addClass(this._convertDirectionToIcon(dir));
|
||||
this.$el.children('i.sort-direction-icon').addClass(this._convertDirectionToIcon(dir));
|
||||
},
|
||||
|
||||
_removeSortIcon : function() {
|
||||
this.$el.children('i').removeClass('icon-sonarr-sort-asc icon-sonarr-sort-desc');
|
||||
this.$el.children('i.sort-direction-icon').removeClass('icon-sonarr-sort-asc icon-sonarr-sort-desc');
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue