Jump to content

Changing backdrop opacity


Recommended Posts

Posted

Hi guys 

 

Can somebody help me to change the backdrop opacity to 0.8 or so?

 

In all themes in general the backdrop opacity is to much for my taste, i mean it is hard to see an enjoy.

 

Thanks in advance  :)

PenkethBoy
Posted
/* ----- Change background Image Transparency ----*/

.backgroundContainer.withBackdrop {

    background: rgba(0, 0, 0, .6)!important;

}
  • Like 1
Posted

 

/* ----- Change background Image Transparency ----*/
.backgroundContainer.withBackdrop {
    background: rgba(0, 0, 0, .6)!important;
}

 

 

Ohh yeah!

 

Thank you so much! :)

  • 1 month later...
Posted

is it possible to alter the oppacity of the backdrop that is displayed in the library view separately? I really like the increased brightness in the movie detail page but I'd like to have the random backdrops that displays while browsing the library to be more faded or even blurred.

PenkethBoy
Posted

Read the thread above for blurred

 

and you can reference a specific type of page with #<name>

 

/* ----- Change background Image Transparency ----*/
.backgroundContainer.withBackdrop {
    background: rgba(0, 0, 0, .6)!important;
}

 

#itemdetailpage .background........

 

so you would need two versions or more i think not that thats a problem

Posted

hm, do i just put the #itemdetailpage infront of the .background...

 

like this?

 

    #itemdetailpage .backgroundContainer.withBackdrop {background: rgba(0, 0, 0, .6)!important;}

 

because that doesn't work for me.

PenkethBoy
Posted

what server are you on

PenkethBoy
Posted

yes that does not work as backgroundcontainer is it appears not page specific

Happy2Play
Posted (edited)

is it possible to alter the oppacity of the backdrop that is displayed in the library view separately? I really like the increased brightness in the movie detail page but I'd like to have the random backdrops that displays while browsing the library to be more faded or even blurred.

 

Something like this

/*Remove backdrop opacity/set opacity per page*/
div.backgroundContainer.withBackdrop {
    background: rgba(0, 0, 0, 0); }

#indexPage {background: rgba(0, 0, 0, .8); }

#itemDetailPage {background: rgba(0, 0, 0, .3); }
Doesn't look like that covers container when scrolling down. Edited by Happy2Play
Posted

Yeah, issues with scrolling down. Is there an alternative? It's a very small issue but would be nice.

StewieGreen
Posted (edited)

I'd like to have the random backdrops that displays while browsing the library to be more faded or even blurred.

This is the blurred background that I use, but it will blur all backgrounds

/*----blur backgroound----*/
.backdropImage.displayingBackdropImage{
-webkit-filter: blur(7px);
  filter: blur(7px);
}
Edited by adamstewiegreen

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