Jump to content

4.6.0.2 bright background


Recommended Posts

arrbee99
Posted

This may also be in connection with this https://emby.media/community/index.php?/topic/90579-media-info-grey-background/ in that I think they're related to this new version, but -

this seems to have stopped working for brightening the backdrop

/* Make Backdrop Much Brighter */
/*.backgroundContainer.withBackdrop {background: rgba(0,0,0,.10)!important;}*/

I've tried these variations -

/* Make Backdrop Much Brighter */
/*div.backgroundContainer.itemBackgroundContainer.withBackdrop {background: rgba(0,0,0,.0)!important;}*/
/*div.backdropContainer.backdropContainer-item {background: rgba(0,0,0,.0)!important;}*/
/*div.mainAnimatedPages.skinBody {background: rgba(0,0,0,.0)!important;}*/
/*div.backdropContainer {background: rgba(0,0,0,.0)!important;}*/

but surprisingly, nothing works.

 

Happy2Play
Posted

You know /*anything*/ is for comments only and put around code disables it.  So your first variation does work.

But Luke put !important in his code so we have to target a little different.

/* Make Backdrop Much Brighter */
div.backgroundContainer.withBackdrop {background: rgba(0,0,0,.10)!important;}

If you want to remove the opacity also.

/* Make Backdrop Much Brighter */
div.backgroundContainer.withBackdrop {background: rgba(0,0,0,.10)!important; opacity: 0 !important;}

 

 

  • Like 2
arrbee99
Posted

Thanks very much. Civilisation has returned 😀

...well yes I put that in comments as it didn't work any more.

So I think actually the first stopped working but adding div at the beginning made it work again (I presume thats what you meant by targeting ?)

Happy2Play
Posted
3 minutes ago, arrbee99 said:

Thanks very much. Civilisation has returned 😀

...well yes I put that in comments as it didn't work any more.

So I think actually the first stopped working but adding div at the beginning made it work again (I presume thats what you meant by targeting ?)

Yes as div.backgroundContainer.withBackdrop is actually different then just .backgroundContainer.withBackdrop as this applies to any type of that element.

  • Like 1
arrbee99
Posted

Thus illustrating again why I don't do this for a living (or a hobby)...

Posted
12 hours ago, Happy2Play said:

You know /*anything*/ is for comments only and put around code disables it.  So your first variation does work.

But Luke put !important in his code so we have to target a little different.


/* Make Backdrop Much Brighter */
div.backgroundContainer.withBackdrop {background: rgba(0,0,0,.10)!important;}

If you want to remove the opacity also.


/* Make Backdrop Much Brighter */
div.backgroundContainer.withBackdrop {background: rgba(0,0,0,.10)!important; opacity: 0 !important;}

 

 

Thanks @Happy2Play !  I knew it wouldn't take too long for someone to post the fix!

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...