-
Notifications
You must be signed in to change notification settings - Fork 82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bug: logo.css
misaligned
#148
Comments
I'm having the same issue in the before image, but the scaling correction LeviSnoot provided isn't fixing it for me (identical desktop information) no matter if it's right after the jellyskin import, after the theme, or at the very bottom of the CSS. |
Tried to troubleshoot this but it works no matter what I do. All I can think of is if you added the rule with the @import url("https://cdn.jsdelivr.net/npm/[email protected]/dist/main.css");
@import url("https://cdn.jsdelivr.net/npm/[email protected]/dist/logo.css");
body #itemDetailPage .detailLogo {
top: 0vh;
} |
Logos might not be optimised for smaller screen sizes rightnow but I will fix it |
Hi @prayag17 If it can help : here is some screnshoots with different window size (with Jellifin client): Got almost the same result with chrome. |
Update your chrome browser and as for Jellyfin Media Player, it does not support baseline 2023 yet so JellySkin is not supported. Look at readme |
Thanks for your answer I was up to date for the test I tried to uninstall Jellyfin Media Player delete the cache in AppData/Local reinstall it, same result Still got theses problems |
It's work for me,thank you! |
Jellyfin Media Player does not support baseline 23 yet so this skin wont work there, not for now atleast. You can disable logos to restore some functionality.
I might have forgotten to check music albums since my default server was dead and I was using a dummy server on my desktop. I will add that in next build. And before posting any other instance of where logo fails please check if your browser supports baseline 23 |
Having the following indeed seems to be a good solution for now. Thanks! @import url("https://cdn.jsdelivr.net/npm/jellyskin@latest/dist/main.css");
@import url("https://cdn.jsdelivr.net/npm/jellyskin@latest/dist/logo.css");
body #itemDetailPage .detailLogo {
top: 0vh;
}
|
@LeviSnoot just been looking into this again cause I'm bored and I'm wondering if you could elaborate on this? Do you have any examples for Logos where this doesn't work? On preliminary checks I've seen issues still happening on vertical screens where the logo gets dragged down into the description area. The reason for that is this: Line 25 in 4d465d8
Regarding your quickfix: I'm not sure what the intention for both the edit: Can be similarly fixed with: body #itemDetailPage:has(.itemName.subtitle) .detailLogo {
- top: 9.5vh;
+ top: 0;
} |
Describe the bug
Logos overlap titles and other elements on the detail page.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
No overlap with other UI elements.
Screenshots
If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
Additional context
Did a quick fix with the following (however this doesn't work with all logos, needs further investigation):
logo.css
After:
The text was updated successfully, but these errors were encountered: