arrbee99 1712 Posted October 5, 2020 Posted October 5, 2020 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 9441 Posted October 5, 2020 Posted October 5, 2020 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;} 2
arrbee99 1712 Posted October 5, 2020 Author Posted October 5, 2020 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 9441 Posted October 5, 2020 Posted October 5, 2020 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. 1
arrbee99 1712 Posted October 5, 2020 Author Posted October 5, 2020 Thus illustrating again why I don't do this for a living (or a hobby)...
mgworek 125 Posted October 5, 2020 Posted October 5, 2020 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!
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now