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

added music and game genre image downloading

This commit is contained in:
Luke Pulverenti 2014-01-02 18:07:37 -05:00
parent 1bea110fe6
commit 7ec31feea3
4 changed files with 9 additions and 8 deletions

View file

@ -1,6 +1,6 @@
.detailTableContainer { .detailTableContainer {
width: 100%; width: 100%;
max-width: 1100px; max-width: 1050px;
text-align: center; text-align: center;
margin: 0 auto; margin: 0 auto;
} }
@ -27,14 +27,11 @@
.detailTable td { .detailTable td {
border-spacing: 0; border-spacing: 0;
border-top: 1px solid #404040;
border-bottom: 1px solid #404040;
padding: 5px 5px; padding: 5px 5px;
} }
.detailTable th { .detailTable th {
border-spacing: 0; border-spacing: 0;
border-bottom: 1px solid #404040;
padding: 5px; padding: 5px;
font-weight: bold; font-weight: bold;
text-align: left; text-align: left;

View file

@ -34,7 +34,7 @@
shape: "square", shape: "square",
context: 'music', context: 'music',
showTitle: true, showTitle: true,
overlayText: true coverImage: true
}); });
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount); html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount);

View file

@ -33,7 +33,7 @@
shape: "square", shape: "square",
context: 'music', context: 'music',
showTitle: true, showTitle: true,
overlayText: true coverImage: true
}); });
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount); html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount);

View file

@ -29,9 +29,13 @@
var checkSortOption = $('.radioSortBy:checked', page); var checkSortOption = $('.radioSortBy:checked', page);
$('.viewSummary', page).html(LibraryBrowser.getViewSummaryHtml(query, checkSortOption)).trigger('create'); $('.viewSummary', page).html(LibraryBrowser.getViewSummaryHtml(query, checkSortOption)).trigger('create');
html += LibraryBrowser.getPosterDetailViewHtml({ html = LibraryBrowser.getPosterViewHtml({
items: result.Items, items: result.Items,
context: "music" shape: "backdrop",
preferThumb: true,
context: 'music',
showItemCounts: true,
centerText: true
}); });
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount); html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount);