2025-01-04, 10:45 PM
(2025-01-02, 06:34 AM)M0RPH3US Wrote:(2024-12-31, 10:45 PM)_Mayhem_ Wrote: https://github.com/SalvaChiLlo/JellyfinTheme with library icons I stole from somewhere online.
I have a custom logo and the library wrap too
Custom logo at the top:
.adminDrawerLogo img { content: url(https:// MY PNG HERE ) !important; } imgLogoIcon { content: url(https:// MY PNG HERE ) !important; } .pageTitleWithLogo { background-image: url(https:// MY PNG HERE) !important; }
Followed by the wrap:
.section0 .itemsContainer {
flex-wrap: wrap;
}
Those library thumbnails look dope. Can I request you to please share them.?
you can kinda do it with css
Code:
#homeTab .section0 .cardImageContainer::before {
content: attr(aria-label);
position: absolute;
bottom: 0em;
left: 0;
font-size: 1.5em;
font-weight: 400;
color: white;
text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
padding: 0.2em 0.5em;
padding-bottom: 0.2em;
border-radius: 0em;
z-index: 10;
width: 93%;
height: 7em;
display: flex;
align-items: flex-end;
background: linear-gradient(90deg, rgb(0% 0% 0%) 0%, rgb(0% 0% 0% / 0.9998779296875) 6.25%, rgb(0% 0% 0% / 0.998046875) 12.5%, rgba(0, 0, 0, 0.99) 18.75%, rgba(0, 0, 0, 0.97) 25%, rgba(0, 0, 0, 0.93) 31.25%, rgba(0, 0, 0, 0.84) 37.5%, rgba(0, 0, 0, 0.71) 43.75%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.29) 56.25%, rgba(0, 0, 0, 0.16) 62.5%, rgba(0, 0, 0, 0.08) 68.75%, rgba(0, 0, 0, 0.03) 75%, rgba(0, 0, 0, 0.01) 81.25%, rgba(0, 0, 0, 0) 87.5%, rgba(0, 0, 0, 0) 93.75%, rgba(0, 0, 0, 0) 100% );
padding-bottom: 3.5em;
}
.verticalSection.section0 .textActionButton {
display: none;
}