Fix #164 also for channel's program list post-1.2.x

This commit is contained in:
vexorian 2020-10-17 12:51:02 -04:00
parent 23ef2ca7c6
commit cd28ee24a5
2 changed files with 4 additions and 4 deletions

View File

@ -254,11 +254,11 @@ table.tvguide {
text-align: right;
}
.filler-list .list-group-item {
.filler-list .list-group-item, .program-row {
min-height: 1.5em;
}
.filler-list .list-group-item .title {
.filler-list .list-group-item .title, .program-row .title {
margin-right: 5px;
white-space: nowrap;
overflow: hidden;

View File

@ -128,10 +128,10 @@
</div>
<div ng-style="programSquareStyle(x)" />
<div style="margin-right: 5px;" ng-hidden="x.isOffline">
<div ng-hidden="x.isOffline" class='title' >
{{ x.type === 'episode' ? x.showTitle + ' - S' + x.season.toString().padStart(2, '0') + 'E' + x.episode.toString().padStart(2, '0') : x.title}}
</div>
<div style="margin-right: 5px; font-weight:ligther" ng-show="x.isOffline">
<div style="font-weight:ligther" ng-show="x.isOffline" class='title' >
<i ng-if="x.type !== 'redirect' " >Flex</i>
<span ng-if="x.type === 'redirect' " ><i>Redirect to channel:</i> <b>{{x.channel}}</b></span>
</div>