mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 19:08:18 -07:00
update recordings
This commit is contained in:
parent
84edab7fb0
commit
42ff117d72
@ -840,7 +840,7 @@ span.itemCommunityRating:not(:empty) + .userDataIcons {
|
||||
}
|
||||
|
||||
.inlineItemName {
|
||||
font-size: 18px;
|
||||
font-size: 22px;
|
||||
}
|
||||
|
||||
.primaryDetailPageContent p {
|
||||
|
@ -228,6 +228,7 @@
|
||||
$(page).removeClass('noSecondaryNavPage');
|
||||
|
||||
$('#tvShowsTabs', page).show();
|
||||
LibraryMenu.setMenuButtonVisible(true);
|
||||
}
|
||||
else {
|
||||
$(page).addClass('noSecondaryNavPage');
|
||||
|
@ -470,7 +470,7 @@
|
||||
}
|
||||
|
||||
function showUserAtTop() {
|
||||
return Dashboard.isConnectMode();
|
||||
return Dashboard.isConnectMode() || $.browser.mobile;
|
||||
}
|
||||
|
||||
var requiresLibraryMenuRefresh = false;
|
||||
@ -570,7 +570,7 @@
|
||||
|
||||
if (mainDrawerButton) {
|
||||
if (!visible && $.browser.mobile) {
|
||||
mainDrawerButton.classList.add('hide');
|
||||
mainDrawerButton.classList.remove('hide');
|
||||
} else {
|
||||
mainDrawerButton.classList.remove('hide');
|
||||
}
|
||||
@ -756,15 +756,15 @@
|
||||
LibraryMenu.setTitle(Globalize.translate(titleKey));
|
||||
}
|
||||
|
||||
//var mainDrawerButton = document.querySelector('.mainDrawerButton');
|
||||
var mainDrawerButton = document.querySelector('.mainDrawerButton');
|
||||
|
||||
//if (mainDrawerButton) {
|
||||
// if (page.getAttribute('data-menubutton') == 'false' && $.browser.mobile) {
|
||||
// mainDrawerButton.classList.add('hide');
|
||||
// } else {
|
||||
// mainDrawerButton.classList.remove('hide');
|
||||
// }
|
||||
//}
|
||||
if (mainDrawerButton) {
|
||||
if (page.getAttribute('data-menubutton') == 'false' && $.browser.mobile) {
|
||||
mainDrawerButton.classList.remove('hide');
|
||||
} else {
|
||||
mainDrawerButton.classList.remove('hide');
|
||||
}
|
||||
}
|
||||
|
||||
if (isLibraryPage) {
|
||||
|
||||
@ -798,7 +798,7 @@
|
||||
document.body.classList.add('hideMainDrawer');
|
||||
}
|
||||
|
||||
if (!Dashboard.isConnectMode()) {
|
||||
if (!Dashboard.isConnectMode() && !$.browser.mobile) {
|
||||
darkDrawer = true;
|
||||
}
|
||||
|
||||
|
@ -379,9 +379,13 @@ paper-menu-item {
|
||||
}
|
||||
|
||||
.ui-page-theme-b paper-input label, .ui-page-theme-b paper-textarea label {
|
||||
color: #ccc !important;
|
||||
font-size: 20px !important;
|
||||
font-family: inherit !important;
|
||||
color: #858585 !important;
|
||||
}
|
||||
|
||||
.ui-page-theme-b .label-is-highlighted label {
|
||||
color: #52B54B !important;
|
||||
}
|
||||
|
||||
.ui-page-theme-b paper-input input, .ui-page-theme-b paper-textarea textarea {
|
||||
|
Loading…
Reference in New Issue
Block a user