Today, 01:59 AM
My bad, my file didn't have enough subtitles for me to see the scroll
(This is personal one)
I don't like to see the name of the file (again) in "My Media"
![[Image: PRQaYHr.png]](https://i.imgur.com/PRQaYHr.png)
-------------------------------------
(Also personal)
I like to see the metadata icons xD

(This is personal one)
I don't like to see the name of the file (again) in "My Media"
Code:
/* Hide card library name*/
@media all and (min-width: 50em) {
#specialsCollapsible .emby-scroller,
#musicVideosCollapsible.emby-scroller,
#scenesCollapsible.emby-scroller {
margin-right: 0;
}
#specialsCollapsible .emby-scrollbuttons,
#musicVideosCollapsible .emby-scrollbuttons,
#scenesCollapsible .emby-scrollbuttons {
display: none;
}
#specialsCollapsible .itemsContainer,
#musicVideosCollapsible .itemsContainer,
#scenesCollapsible .itemsContainer {
flex-wrap: wrap;
}
#specialsCollapsible .overflowBackdropCard,
#musicVideosCollapsible .overflowBackdropCard,
#scenesCollapsible .overflowBackdropCard {
max-width: 13.4vw !important;
}
.verticalSection.section0 .textActionButton {
display: none;
}
}
.itemsContainer > .card > .cardBox:hover {
transform: translateY(-5px);
}
![[Image: PRQaYHr.png]](https://i.imgur.com/PRQaYHr.png)
-------------------------------------
(Also personal)
I like to see the metadata icons xD
Code:
/* Metadata Icons */
a[href*="imdb.com"]::before,
a[href*="trakt.tv"]::before,
a[href*="themoviedb.org"]::before,
a[href*="themoviedb.org/collection"]::before,
a[href*="thetvdb.com/movies"]::before,
a[href*="thetvdb.com/series"]::before,
a[href*="thetvdb.com/tv"]::before,
a[href*="thetvdb.com/?tab=series"]::before,
a[href*="tvmaze.com"]::before,
a[href*="anidb.net"]::before {
content: "";
display: inline-block;
width: 36px;
height: 18px;
background-size: contain;
background-repeat: no-repeat;
background-position: center;
vertical-align: middle;
box-sizing: border-box;
}
a[href*="imdb.com"]::before {
background-image: url(https://upload.wikimedia.org/wikipedia/commons/6/69/IMDB_Logo_2016.svg);
}
a[href*="trakt.tv"]::before {
background-image: url(https://trakt.tv/assets/logos/logo.default.negative-7c28b25bb270dc291faa5d7794b9bfd6fcdf4698ee5e6504151167fbecd8a197.svg);
transform: scale(1.2);
}
a[href*="themoviedb.org"]::before {
background-image: url(https://www.themoviedb.org/assets/2/v4/logos/v2/blue_square_1-5bdc75aaebeb75dc7ae79426ddd9be3b2be1e342510f8202baf6bffa71d7f5c4.svg);
}
a[href*="themoviedb.org/collection"]::before {
background-image: url(https://i.imgur.com/Vguav7a.png);
}
a[href*="thetvdb.com/movies"]::before,
a[href*="thetvdb.com/series"]::before,
a[href*="thetvdb.com/tv"]::before,
a[href*="thetvdb.com/?tab=series"]::before {
background-image: url(https://www.thetvdb.com/images/logo.svg);
}
a[href*="tvmaze.com"]::before {
background-image: url(https://static.tvmaze.com/images/tvm-header-logo.png);
transform: scale(1.2);
}
a[href*="anidb.net"]::before {
background-image: url(https://i.imgur.com/7hpyHRn.png);
}
a[href*="imdb.com"],
a[href*="trakt.tv"],
a[href*="themoviedb.org"],
a[href*="themoviedb.org/collection"],
a[href*="thetvdb.com"],
a[href*="tvmaze.com"],
a[href*="anidb.net"] {
font-size: 0;
display: flex;
align-items: center;
}
.itemExternalLinks.focuscontainer-x {
display: flex;
align-items: center;
gap: 8px;
color: #fff0 !important;
margin: 1.5em 0 !important;
}
![[Image: bn9QsDj.png]](https://i.imgur.com/bn9QsDj.png)