Jump to content

CSS Mind the gap


arrbee99
Go to solution Solved by Happy2Play,

Recommended Posts

arrbee99

Wondering if anyone can help with these gaps. They used to be gone, but came back. Ideally the gaps would be covered with the transparency as moving things closer would probably make them too close.

In movies and TV series get a gap near the top (below Director) -

EmbyGapMovie.thumb.jpg.c77742c5c2219ac68b56b1b1257aa700.jpg

and below More -

EmbyGapSeries.thumb.jpg.81c3a87ed648bc0d8ab89bc86bd36668.jpg

and in music near the bottom, below the last song

EmbyGapAlbum.thumb.jpg.c9b85d4d23c53f2931743ff10f207f4f.jpg

Also (if it matters) in music used to get a gap near the top (below Play) -

EmbyGapAlbum1.thumb.jpg.1d2db78d1522d73f1fe726feae034eb0.jpg

but this seems to fix it -

div.trackList.vertical-list {margin-top: 0;}

Aand there is a gap at the side, to the left of the episodes -

EmbyGapSide.thumb.jpg.20fbdacff201db3a64820a40d5c42458.jpg

 

which this

/* and for tracklist move tiny bit to the left UNLESS SPACE CAN BE MADE GREY */
div.trackList.vertical-list {margin-left: -0.01% !important; }

seems to fix, but it doesn't look right to me, either code-wise or because the thumbs don't line up with the stuff above.

Yours Hopefully...

Link to comment
Share on other sites

Happy2Play

Can you attach the code that you are using. @arrbee99

Edited by Happy2Play
Link to comment
Share on other sites

arrbee99

Did you want all of it or what I reckon is relevant ? its a bit of a disaster area if you want all of it if you're feeling that brave...

Link to comment
Share on other sites

  • Solution
Happy2Play
41 minutes ago, arrbee99 said:

Caution to the winds time (should, possibly be under section - /* Movie and Series Details Page */-

CSS to Emby 08 Mar 24.txt 42.31 kB · 1 download

Thing this is it.

Change this for image 1, 2 and 4

/* Add transparent grey background to top info, episode list, extra bottom info */  
div.verticalSection.detailMainContainer {background: rgba(0, 0, 0, 0.3); }
div.trackList.vertical-list {background: rgba(0, 0, 0, 0.3); }
div.details-additionalContent.padded-bottom-page.details-additionalContent-withbackdrop {background: rgba(0, 0, 0, 0.3); }

to this

/* Add transparent grey background to top info, episode list, extra bottom info */  
div.topDetailsMain {margin-bottom: 0;}
div.verticalSection.detailMainContainer {background: rgba(0, 0, 0, 0.3); padding-bottom: 1em;}
div.trackList.vertical-list {background: rgba(0, 0, 0, 0.3); }
div.details-additionalContent.padded-bottom-page.details-additionalContent-withbackdrop {background: rgba(0, 0, 0, 0.3); }

 

 

Image 3 and 5 change

/* and for tracklist move tiny bit to the left UNLESS SPACE CAN BE MADE GREY */
div.trackList.vertical-list {margin-left: -0.01% !important; }

to

div.trackList-marginleftcards
{
    -webkit-margin-start: 0;
    margin-inline-start: 0;
    margin-bottom: 0 !important;
    padding-bottom: 1.5em;
}

 

  • Like 1
Link to comment
Share on other sites

arrbee99

Brilliant. Thanks. I realise this is high praise, but you are quite possibly the best thing since sliced bread 😀

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...