1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Display whole channel icon and new/repeat/live/premiere flags

- Make timer list visually identical when displayed on Series Timer page, or Series page.
- Display full channel icon (background-size: contain)
- Display New/Repeat/etc in timer list. Respects user guide settings for which flags to display
- Add margin before timerIndicator if mediainfo is present
- Add option to display officialRating display in mediainfo
- Use ids instead of CSS class for seriesTimerSchedule*
This commit is contained in:
SenorSmartyPants 2022-11-21 17:45:56 -06:00
parent fceb8f31ee
commit 65543e77a4
6 changed files with 60 additions and 48 deletions

View file

@ -261,6 +261,10 @@ import ServerConnections from '../ServerConnections';
const imgUrl = options.imageSource === 'channel' ? getChannelImageUrl(item, downloadWidth) : getImageUrl(item, downloadWidth);
let imageClass = isLargeStyle ? 'listItemImage listItemImage-large' : 'listItemImage';
if (options.imageSource === 'channel') {
imageClass += ' listItemImage-channel';
}
if (isLargeStyle && layoutManager.tv) {
imageClass += ' listItemImage-large-tv';
}
@ -428,6 +432,7 @@ import ServerConnections from '../ServerConnections';
container: false,
episodeTitle: false,
criticRating: false,
officialRating: false,
endsAt: false
});