mirror of https://github.com/Radarr/Radarr
fixed card styling for import series
This commit is contained in:
parent
9160343a51
commit
942679d4bd
|
@ -1,4 +1,4 @@
|
|||
<div class="search-item">
|
||||
<div class="search-item {{#unless isExisting}}search-item-new{{/unless}}">
|
||||
<div class="row">
|
||||
<div class="span2">
|
||||
<a href="{{traktUrl}}" target="_blank">
|
||||
|
@ -27,4 +27,4 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -49,6 +49,7 @@
|
|||
}
|
||||
|
||||
.unmapped-folder-view {
|
||||
.card;
|
||||
margin-top: 20px;
|
||||
padding: 20px;
|
||||
.folder-header {
|
||||
|
@ -65,8 +66,6 @@
|
|||
|
||||
.search-item {
|
||||
|
||||
.card;
|
||||
|
||||
padding-bottom: 20px;
|
||||
a {
|
||||
color: #343434;
|
||||
|
@ -79,6 +78,10 @@
|
|||
}
|
||||
}
|
||||
|
||||
.search-item-new {
|
||||
.card;
|
||||
}
|
||||
|
||||
.new-series-overview {
|
||||
text-overflow: ellipsis;
|
||||
white-space: pre-line;
|
||||
|
@ -91,10 +94,9 @@
|
|||
}
|
||||
|
||||
.new-series-loadmore {
|
||||
.card;
|
||||
.clickable;
|
||||
font-size: 30px;
|
||||
font-weight: 300;
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -24,11 +24,14 @@ define(['app'], function () {
|
|||
|
||||
return start.format('{h}.{mm}{tt}');
|
||||
},
|
||||
end : function () {
|
||||
var start = Date.create(this.get('airDate'));
|
||||
var runtime = this.get('series').runtime;
|
||||
end : function () {
|
||||
|
||||
return start.addMinutes(runtime);
|
||||
if (this.has('series')) {
|
||||
var start = Date.create(this.get('airDate'));
|
||||
var runtime = this.get('series').runtime;
|
||||
|
||||
return start.addMinutes(runtime);
|
||||
}
|
||||
},
|
||||
statusLevel : function () {
|
||||
var episodeFileId = this.get('episodeFileId');
|
||||
|
|
Loading…
Reference in New Issue