mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update channel display
This commit is contained in:
parent
dc87e4ccc2
commit
1ab2aaa51a
3 changed files with 18 additions and 6 deletions
|
@ -882,7 +882,7 @@ span.itemCommunityRating:not(:empty) + .userDataIcons {
|
||||||
|
|
||||||
@media all and (min-width: 750px) {
|
@media all and (min-width: 750px) {
|
||||||
.detailPageContent {
|
.detailPageContent {
|
||||||
width: 950px;
|
max-width: 950px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1554,7 +1554,7 @@ paper-icon-button.listviewMenuButton {
|
||||||
|
|
||||||
@media all and (min-width: 1200px) {
|
@media all and (min-width: 1200px) {
|
||||||
|
|
||||||
paper-icon-item:hover .listViewUserDataButtons {
|
li:hover .listViewUserDataButtons {
|
||||||
visibility: visible !important;
|
visibility: visible !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
|
|
||||||
if (startDateText != currentIndexValue) {
|
if (startDateText != currentIndexValue) {
|
||||||
|
|
||||||
html += '<h2 class="detailSectionHeader tvProgramSectionHeader">' + startDateText + '</h2>';
|
html += '<h1 tvProgramSectionHeader" style="margin-bottom:1em;">' + startDateText + '</h1>';
|
||||||
currentIndexValue = startDateText;
|
currentIndexValue = startDateText;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -159,19 +159,31 @@
|
||||||
|
|
||||||
user.Configuration.DisplayChannelsInline = page.querySelector('.chkDisplayChannelsInline').checked;
|
user.Configuration.DisplayChannelsInline = page.querySelector('.chkDisplayChannelsInline').checked;
|
||||||
|
|
||||||
user.Configuration.LatestItemsExcludes = $(".chkIncludeInLatest:not(:checked)", page).get().map(function (i) {
|
user.Configuration.LatestItemsExcludes = $(".chkIncludeInLatest", page).get().filter(function (i) {
|
||||||
|
|
||||||
|
return !i.checked;
|
||||||
|
|
||||||
|
}).map(function (i) {
|
||||||
|
|
||||||
return i.getAttribute('data-folderid');
|
return i.getAttribute('data-folderid');
|
||||||
});
|
});
|
||||||
|
|
||||||
user.Configuration.ExcludeFoldersFromGrouping = null;
|
user.Configuration.ExcludeFoldersFromGrouping = null;
|
||||||
|
|
||||||
user.Configuration.GroupedFolders = $(".chkGroupFolder:checked", page).get().map(function (i) {
|
user.Configuration.GroupedFolders = $(".chkGroupFolder", page).get().filter(function(i) {
|
||||||
|
|
||||||
|
return i.checked;
|
||||||
|
|
||||||
|
}).map(function (i) {
|
||||||
|
|
||||||
return i.getAttribute('data-folderid');
|
return i.getAttribute('data-folderid');
|
||||||
});
|
});
|
||||||
|
|
||||||
user.Configuration.PlainFolderViews = $(".chkPlainFolder:not(:checked)", page).get().map(function (i) {
|
user.Configuration.PlainFolderViews = $(".chkPlainFolder", page).get().filter(function (i) {
|
||||||
|
|
||||||
|
return !i.checked;
|
||||||
|
|
||||||
|
}).map(function (i) {
|
||||||
|
|
||||||
return i.getAttribute('data-folderid');
|
return i.getAttribute('data-folderid');
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue