mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
reduce star rating sizes
This commit is contained in:
parent
22ee826cd7
commit
a673f90a45
4 changed files with 18 additions and 12 deletions
|
@ -56,7 +56,7 @@
|
|||
|
||||
.viewSettings {
|
||||
text-align: center;
|
||||
margin: .5em 0;
|
||||
margin: .5em 0 .25em;
|
||||
}
|
||||
|
||||
.listPaging {
|
||||
|
@ -85,11 +85,11 @@
|
|||
}
|
||||
}
|
||||
|
||||
/*@media all and (min-width: 1000px) {
|
||||
.libraryPage:not(.folderListPage) > .ui-content, .libraryPage:not(.folderListPage) > .ui-panel-content-wrap {
|
||||
@media all and (min-width: 1000px) {
|
||||
/*.libraryPage:not(.folderListPage) > .ui-content, .libraryPage:not(.folderListPage) > .ui-panel-content-wrap {
|
||||
margin-top: -35px!important;
|
||||
}
|
||||
}*/
|
||||
}
|
||||
|
||||
@media all and (min-width: 1200px) {
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -17,7 +17,7 @@
|
|||
<img src="css/images/media/playCircle.png" style="height: 28px;" />
|
||||
</button>
|
||||
|
||||
<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="display: none; position: absolute; bottom: 5px; left: 50px;" data-role="none" title="Queue">
|
||||
<img src="css/images/media/queue.png" style="height: 28px;" />
|
||||
</button>
|
||||
</div>
|
||||
|
|
|
@ -497,7 +497,9 @@
|
|||
html += '<div class="listPaging">';
|
||||
|
||||
html += '<span style="margin-right: 10px;">';
|
||||
html += (query.StartIndex + 1) + '-' + recordsEnd + ' of ' + totalRecordCount;
|
||||
|
||||
var startAtDisplay = totalRecordCount ? query.StartIndex + 1 : 0;
|
||||
html += startAtDisplay + '-' + recordsEnd + ' of ' + totalRecordCount;
|
||||
|
||||
if (showControls) {
|
||||
html += ', page ' + dropdownHtml + ' of ' + pageCount;
|
||||
|
@ -853,7 +855,7 @@
|
|||
|
||||
var miscInfo = [];
|
||||
|
||||
if (item.ProductionYear) {
|
||||
if (item.ProductionYear && item.Type != "Episode") {
|
||||
|
||||
if (item.Status == "Continuing") {
|
||||
miscInfo.push(item.ProductionYear + "-Present");
|
||||
|
@ -875,7 +877,7 @@
|
|||
miscInfo.push(parseInt(minutes) + "min");
|
||||
}
|
||||
|
||||
if (item.MediaType && item.DisplayMediaType) {
|
||||
if (item.MediaType && item.DisplayMediaType && item.DisplayMediaType != item.Type) {
|
||||
miscInfo.push(item.DisplayMediaType);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue