Jump to content

Changing backdrop opacity


Riggs

Recommended Posts

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  :)

Link to comment
Share on other sites

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

.backgroundContainer.withBackdrop {

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

}
  • Like 1
Link to comment
Share on other sites

 

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

 

 

Ohh yeah!

 

Thank you so much! :)

Link to comment
Share on other sites

  • 1 month later...
Karl Blixt

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.

Link to comment
Share on other sites

PenkethBoy

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

Link to comment
Share on other sites

Karl Blixt

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.

Link to comment
Share on other sites

Happy2Play

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
Link to comment
Share on other sites

adamstewiegreen

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