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

Merge pull request #1093 from MrTimscampi/mobile-fixes-2

Fix some mobile navigation issues
This commit is contained in:
dkanada 2020-04-17 06:42:17 +09:00 committed by GitHub
commit 542a738926
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 10 deletions

View file

@ -24,6 +24,10 @@
padding-top: 7em !important; padding-top: 7em !important;
} }
.layout-mobile .libraryPage {
padding-top: 4em !important;
}
.itemDetailPage { .itemDetailPage {
padding-top: 0 !important; padding-top: 0 !important;
} }
@ -115,7 +119,7 @@
display: -webkit-inline-box; display: -webkit-inline-box;
display: -webkit-inline-flex; display: -webkit-inline-flex;
display: inline-flex; display: inline-flex;
margin: 0.3em 0 0 0.5em; margin: 0 0 0 0.5em;
height: 1.7em; height: 1.7em;
-webkit-box-align: center; -webkit-box-align: center;
-webkit-align-items: center; -webkit-align-items: center;
@ -268,12 +272,6 @@
} }
} }
@media all and (max-width: 60em) {
.libraryDocument .mainDrawerButton {
display: none;
}
}
@media all and (max-width: 84em) { @media all and (max-width: 84em) {
.withSectionTabs .headerTop { .withSectionTabs .headerTop {
padding-bottom: 0.55em; padding-bottom: 0.55em;

View file

@ -92,7 +92,7 @@
left: 0; left: 0;
bottom: 0; bottom: 0;
z-index: 1; z-index: 1;
width: 10px; width: 0.8em;
} }
</style> </style>
</head> </head>

View file

@ -63,7 +63,9 @@ define(["dom", "layoutManager", "inputManager", "connectionManager", "events", "
hasImage = true; hasImage = true;
} }
headerUserButton.classList.remove("hide"); if (!layoutManager.mobile) {
headerUserButton.classList.remove("hide");
}
} else { } else {
headerUserButton.classList.add("hide"); headerUserButton.classList.add("hide");
} }
@ -73,7 +75,7 @@ define(["dom", "layoutManager", "inputManager", "connectionManager", "events", "
} }
if (user && user.localUser) { if (user && user.localUser) {
if (headerHomeButton && !layoutManager.mobile) { if (headerHomeButton) {
headerHomeButton.classList.remove("hide"); headerHomeButton.classList.remove("hide");
} }