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

update to vs 2013

This commit is contained in:
Luke Pulverenti 2014-07-12 15:05:35 -04:00
parent f0db695368
commit 7f17e93738
4 changed files with 12 additions and 5 deletions

View file

@ -117,6 +117,13 @@
} }
} }
@media all and (min-width: 1920px) {
.squareEhsContent {
width: 1200px;
}
}
.detailPageContent { .detailPageContent {
margin: 0 auto; margin: 0 auto;
padding: 0; padding: 0;

View file

@ -24,7 +24,7 @@
</p> </p>
</div> </div>
<table class="ehsContent"> <table class="ehsContent homeEhsContent">
<tr> <tr>
<td> <td>
<div class="sections"></div> <div class="sections"></div>

View file

@ -279,7 +279,7 @@
SortOrder: "Descending", SortOrder: "Descending",
MediaTypes: "Video", MediaTypes: "Video",
Filters: "IsResumable", Filters: "IsResumable",
Limit: (screenWidth >= 1200 ? 9 : 6), Limit: screenWidth >= 1920 ? 9 : (screenWidth >= 1200 ? 9 : 6),
Recursive: true, Recursive: true,
Fields: "PrimaryImageAspectRatio", Fields: "PrimaryImageAspectRatio",
CollapseBoxSetItems: false, CollapseBoxSetItems: false,

View file

@ -11,7 +11,7 @@
var options = { var options = {
IncludeItemTypes: "Audio", IncludeItemTypes: "Audio",
Limit: screenWidth >= 1920 ? 15 : (screenWidth >= 1200 ? 10 : 12), Limit: screenWidth >= 1920 ? 18 : (screenWidth >= 1200 ? 10 : 12),
Fields: "PrimaryImageAspectRatio", Fields: "PrimaryImageAspectRatio",
ParentId: parentId ParentId: parentId
}; };
@ -34,7 +34,7 @@
SortBy: "DatePlayed", SortBy: "DatePlayed",
SortOrder: "Descending", SortOrder: "Descending",
IncludeItemTypes: "Audio", IncludeItemTypes: "Audio",
Limit: screenWidth >= 1920 ? 5 : (screenWidth >= 1200 ? 5 : 6), Limit: screenWidth >= 1920 ? 6 : (screenWidth >= 1200 ? 5 : 6),
Recursive: true, Recursive: true,
Fields: "PrimaryImageAspectRatio,AudioInfo", Fields: "PrimaryImageAspectRatio,AudioInfo",
Filters: "IsPlayed", Filters: "IsPlayed",
@ -64,7 +64,7 @@
SortBy: "PlayCount", SortBy: "PlayCount",
SortOrder: "Descending", SortOrder: "Descending",
IncludeItemTypes: "Audio", IncludeItemTypes: "Audio",
Limit: screenWidth >= 1920 ? 10 : (screenWidth >= 1200 ? 10 : 12), Limit: screenWidth >= 1920 ? 12 : (screenWidth >= 1200 ? 10 : 12),
Recursive: true, Recursive: true,
Fields: "PrimaryImageAspectRatio,AudioInfo", Fields: "PrimaryImageAspectRatio,AudioInfo",
Filters: "IsPlayed", Filters: "IsPlayed",