basic width styling for common cells

pull/4/head
kay.one 11 years ago
parent e1de291f8c
commit 6838298dbc

@ -1,6 +1,8 @@
"use strict";
define(['app'], function () {
NzbDrone.Cells.RelativeDateCell = Backgrid.Cell.extend({
define(['app','Cells/NzbDroneCell'], function () {
NzbDrone.Cells.RelativeDateCell = NzbDrone.Cells.NzbDroneCell.extend({
className : 'relative-date-cell',
render: function () {

@ -5,3 +5,15 @@
.episode-title-cell {
.btn-link;
}
.air-date-cell {
width: 100px;
}
.relative-date-cell {
width: 150px;
}
.quality-cell{
width: 130px;
}

@ -75,8 +75,10 @@ define(['app', 'Series/SeriesModel'], function () {
}
}, this));
if (this.has('series'))
{
json.series = this.get('series').toJSON();
}
return json;
},

Loading…
Cancel
Save