mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
fixed missing files
This commit is contained in:
parent
358df5f81c
commit
9311eca340
8 changed files with 13 additions and 12 deletions
Binary file not shown.
Before Width: | Height: | Size: 2.8 KiB |
Binary file not shown.
Before Width: | Height: | Size: 535 B After Width: | Height: | Size: 2.8 KiB |
|
@ -100,7 +100,7 @@
|
||||||
|
|
||||||
.listPaging {
|
.listPaging {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
margin: .5em 0 .75em;
|
margin: .5em 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tabletColumn, .desktopColumn {
|
.tabletColumn, .desktopColumn {
|
||||||
|
|
|
@ -460,7 +460,6 @@ form, .readOnlyContent {
|
||||||
text-shadow: none;
|
text-shadow: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.posterViewItemWithDualText .posterViewItemText {
|
.posterViewItemWithDualText .posterViewItemText {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
|
@ -489,7 +488,7 @@ form, .readOnlyContent {
|
||||||
@media all and (min-width: 1200px) {
|
@media all and (min-width: 1200px) {
|
||||||
|
|
||||||
.posterViewItem {
|
.posterViewItem {
|
||||||
font-size: 16px;
|
font-size: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.posterViewItem img {
|
.posterViewItem img {
|
||||||
|
@ -505,7 +504,7 @@ form, .readOnlyContent {
|
||||||
}
|
}
|
||||||
|
|
||||||
.posterViewItem {
|
.posterViewItem {
|
||||||
font-size: 18px;
|
font-size: 17px;
|
||||||
padding-bottom: 29px;
|
padding-bottom: 29px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
<div id="queueButtonShadow" style="display: none; height: 48px; position: absolute; bottom: 0; left: 0; right: 0; background: black; opacity: .75;"></div>
|
<div id="queueButtonShadow" style="display: none; height: 48px; position: absolute; bottom: 0; left: 0; right: 0; background: black; opacity: .75;"></div>
|
||||||
<button id="btnQueueMenu" type="button" class="imageButton" style=" position: absolute; bottom: 5px; left: 50px;" data-role="none" title="Queue">
|
<button id="btnQueueMenu" type="button" class="imageButton" style=" position: absolute; bottom: 5px; left: 50px;" data-role="none" title="Queue">
|
||||||
<img src="css/images/media/btn_queue.png" style="height: 28px;" />
|
<img src="css/images/media/queue.png" style="height: 28px;" />
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div id="playMenuAnchor"></div>
|
<div id="playMenuAnchor"></div>
|
||||||
|
|
|
@ -504,7 +504,7 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
getPagingHtml: function (query, totalRecordCount) {
|
getPagingHtml: function (query, totalRecordCount, isTop) {
|
||||||
|
|
||||||
var html = '';
|
var html = '';
|
||||||
|
|
||||||
|
@ -524,7 +524,7 @@
|
||||||
|
|
||||||
var recordsEnd = Math.min(query.StartIndex + query.Limit, totalRecordCount);
|
var recordsEnd = Math.min(query.StartIndex + query.Limit, totalRecordCount);
|
||||||
|
|
||||||
html += '<div class="listPaging">';
|
html += isTop ? '<div class="listPaging topListPaging">' : '<div class="listPaging">';
|
||||||
html += 'Results ' + (query.StartIndex + 1) + '-' + recordsEnd + ' of ' + totalRecordCount + ', page ' + dropdownHtml + ' of ' + pageCount;
|
html += 'Results ' + (query.StartIndex + 1) + '-' + recordsEnd + ' of ' + totalRecordCount + ', page ' + dropdownHtml + ' of ' + pageCount;
|
||||||
html += '</div>';
|
html += '</div>';
|
||||||
|
|
||||||
|
|
|
@ -126,7 +126,7 @@
|
||||||
var showPaging = result.TotalRecordCount > query.Limit;
|
var showPaging = result.TotalRecordCount > query.Limit;
|
||||||
|
|
||||||
if (showPaging) {
|
if (showPaging) {
|
||||||
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount);
|
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (view == "Tile") {
|
if (view == "Tile") {
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
var showPaging = result.TotalRecordCount > query.Limit;
|
var showPaging = result.TotalRecordCount > query.Limit;
|
||||||
|
|
||||||
if (showPaging) {
|
if (showPaging) {
|
||||||
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount);
|
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (view == "Tile") {
|
if (view == "Tile") {
|
||||||
|
@ -71,11 +71,13 @@
|
||||||
|
|
||||||
$('.radioSortBy', this).on('click', function () {
|
$('.radioSortBy', this).on('click', function () {
|
||||||
query.SortBy = this.getAttribute('data-sortby');
|
query.SortBy = this.getAttribute('data-sortby');
|
||||||
|
query.StartIndex = 0;
|
||||||
reloadItems(page);
|
reloadItems(page);
|
||||||
});
|
});
|
||||||
|
|
||||||
$('.radioSortOrder', this).on('click', function () {
|
$('.radioSortOrder', this).on('click', function () {
|
||||||
query.SortOrder = this.getAttribute('data-sortorder');
|
query.SortOrder = this.getAttribute('data-sortorder');
|
||||||
|
query.StartIndex = 0;
|
||||||
reloadItems(page);
|
reloadItems(page);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -91,7 +93,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
query.Filters = filters;
|
query.Filters = filters;
|
||||||
|
query.StartIndex = 0;
|
||||||
reloadItems(page);
|
reloadItems(page);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -107,7 +109,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
query.SeriesStatus = filters;
|
query.SeriesStatus = filters;
|
||||||
|
query.StartIndex = 0;
|
||||||
reloadItems(page);
|
reloadItems(page);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -123,7 +125,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
query.AirDays = filters;
|
query.AirDays = filters;
|
||||||
|
query.StartIndex = 0;
|
||||||
reloadItems(page);
|
reloadItems(page);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue