mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update xmltv
This commit is contained in:
parent
17ada9f98e
commit
c8a00e447f
7 changed files with 13 additions and 11 deletions
|
@ -36,6 +36,9 @@ button.actionSheetMenuItem {
|
||||||
font-weight: inherit;
|
font-weight: inherit;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
|
/* Some really bad margin hacks to fix content sizing when scrollbar is visible */
|
||||||
|
margin-left: 20px;
|
||||||
|
margin-right: -20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.actionSheetItemText {
|
.actionSheetItemText {
|
||||||
|
@ -65,6 +68,9 @@ button.actionSheetMenuItem {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
/* Some really bad margin hacks to fix content sizing when scrollbar is visible */
|
||||||
|
padding-right: 20px;
|
||||||
|
margin-right: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.layout-tv .actionSheetScroller {
|
.layout-tv .actionSheetScroller {
|
||||||
|
|
|
@ -102,11 +102,11 @@ function (dialogHelper, loading, connectionManager, globalize, actionsheet) {
|
||||||
html += channel.Name;
|
html += channel.Name;
|
||||||
html += '</h3>';
|
html += '</h3>';
|
||||||
|
|
||||||
if (channel.ProviderChannelNumber || channel.ProviderChannelName) {
|
|
||||||
html += '<div class="secondary">';
|
html += '<div class="secondary">';
|
||||||
|
if (channel.ProviderChannelNumber || channel.ProviderChannelName) {
|
||||||
html += getMappingSecondaryName(channel, providerName);
|
html += getMappingSecondaryName(channel, providerName);
|
||||||
html += '</div>';
|
|
||||||
}
|
}
|
||||||
|
html += '</div>';
|
||||||
|
|
||||||
html += '</div>';
|
html += '</div>';
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/* Links */
|
/* Links */
|
||||||
.ui-body-b a {
|
.ui-body-b a {
|
||||||
color: #52B54B /*{b-link-color}*/;
|
color: #52B54B /*{b-link-color}*/;
|
||||||
font-weight: bold;
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ui-body-b a:visited {
|
.ui-body-b a:visited {
|
||||||
|
|
|
@ -2222,7 +2222,6 @@
|
||||||
|
|
||||||
view.addEventListener('viewbeforeshow', function () {
|
view.addEventListener('viewbeforeshow', function () {
|
||||||
var page = this;
|
var page = this;
|
||||||
|
|
||||||
reload(page, params);
|
reload(page, params);
|
||||||
|
|
||||||
Events.on(ApiClient, 'websocketmessage', onWebSocketMessage);
|
Events.on(ApiClient, 'websocketmessage', onWebSocketMessage);
|
||||||
|
|
|
@ -767,7 +767,7 @@
|
||||||
|
|
||||||
if (mainDrawerButton) {
|
if (mainDrawerButton) {
|
||||||
if (!visible && browserInfo.mobile) {
|
if (!visible && browserInfo.mobile) {
|
||||||
mainDrawerButton.classList.remove('hide');
|
mainDrawerButton.classList.add('hide');
|
||||||
} else {
|
} else {
|
||||||
mainDrawerButton.classList.remove('hide');
|
mainDrawerButton.classList.remove('hide');
|
||||||
}
|
}
|
||||||
|
|
|
@ -185,14 +185,11 @@
|
||||||
});
|
});
|
||||||
|
|
||||||
view.addEventListener('viewbeforeshow', function (e) {
|
view.addEventListener('viewbeforeshow', function (e) {
|
||||||
document.body.classList.add('hiddenViewMenuBar');
|
LibraryMenu.setMenuButtonVisible(false);
|
||||||
document.body.classList.add('hiddenNowPlayingBar');
|
|
||||||
});
|
});
|
||||||
|
|
||||||
view.addEventListener('viewbeforehide', function (e) {
|
view.addEventListener('viewbeforehide', function (e) {
|
||||||
|
LibraryMenu.setMenuButtonVisible(true);
|
||||||
document.body.classList.remove('hiddenViewMenuBar');
|
|
||||||
document.body.classList.remove('hiddenNowPlayingBar');
|
|
||||||
});
|
});
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<div id="searchPage" data-role="page" class="page libraryPage allLibraryPage noSecondaryNavPage" data-title="${ButtonSearch}" data-backbutton="true" style="padding-top:40px!important;">
|
<div id="searchPage" data-role="page" class="page libraryPage allLibraryPage noSecondaryNavPage" data-title="${ButtonSearch}" data-backbutton="true">
|
||||||
|
|
||||||
<button is="paper-icon-button-light" style="position: absolute; top: .5em; left: .5em; z-index: 1;" tabindex="-1" class="btnBack autoSize">
|
<button is="paper-icon-button-light" style="position: absolute; top: .5em; left: .5em; z-index: 1;" tabindex="-1" class="btnBack autoSize">
|
||||||
<i class="md-icon">arrow_back</i>
|
<i class="md-icon">arrow_back</i>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue