Jump to content

4.4.0.6 opacity backdrops


Recommended Posts

KickVanelli
Posted

I use the following css to change the opacity of the music backdrops. Only the music backdrops, not other backdrops.

Since version  4.4.0.6 this doesn't work any more.

Can somebody help please ?

 

 

/* ----- Change background Image Transparency - Now Playing ----*/
html.layout-desktop.noScrollY div.backgroundContainer.withBackdrop, html.layout-mobile.noScrollY div.backgroundContainer.withBackdrop {
    background: rgba(0, 0, 0, .1);
}

Happy2Play
Posted (edited)

I use the following css to change the opacity of the music backdrops. Only the music backdrops, not other backdrops.

Since version  4.4.0.6 this doesn't work any more.

Can somebody help please ?

 

 

/* ----- Change background Image Transparency - Now Playing ----*/

html.layout-desktop.noScrollY div.backgroundContainer.withBackdrop, html.layout-mobile.noScrollY div.backgroundContainer.withBackdrop {

    background: rgba(0, 0, 0, .1);

}

 

Change to layout-desktop, layout-mobile.  Will have to do more testing as there appears to be "html.html-ios.noScrollY".

/* ----- Change background Image Transparency - Now Playing ----*/
html.noScrollY div.backgroundContainer.withBackdrop {
    background: rgba(0, 0, 0, .1);
}
Edited by Happy2Play
KickVanelli
Posted

Hi @@Happy2Play,

 

It didn't work (on my desktop W10) but I changed it to:

/* ----- Change background Image Transparency - Now Playing ----*/
html.noScrollY div.backgroundContainer.withBackdrop {
    opacity: 0;
}

 

Now it does exactly what I want and what it did with previous versions.

 

Thanks very much.

  • 2 weeks later...
KickVanelli
Posted

Hi @Happy2Play,

 

Sorry to bother you again but since 4.4.0.12 this doesn't work any more.

Same opacity for all backdrops now (movies, tv-shows and music).

What is happening here ??

Will this change with every new version ?

Happy2Play
Posted

Hi @Happy2Play,

 

Sorry to bother you again but since 4.4.0.12 this doesn't work any more.

Same opacity for all backdrops now (movies, tv-shows and music).

What is happening here ??

Will this change with every new version ?

 

It can

 

If I understand correctly, something like this.

/* ----- Change background Image Transparency - Now Playing ----*/
html.noScrollY div.backgroundContainer.withBackdrop {
    opacity: 0;
}
html.withSectionTabs div.backgroundContainer.withBackdrop {
    opacity: .88;
}
KickVanelli
Posted

You understood correctly.

 

Thanks very much again.

  • 3 weeks later...
Posted

Hi @Happy2Play,

 

Since version 4.4.0.16 the backdrops in the view with one tv-show, one movie and one album (used to be in overflowYScroll) have the same opacity as the backdrops in the now playing view (noScrollY).

 

Is there a solution ?

Happy2Play
Posted

Hi @Happy2Play,

 

Since version 4.4.0.16 the backdrops in the view with one tv-show, one movie and one album (used to be in overflowYScroll) have the same opacity as the backdrops in the now playing view (noScrollY).

 

Is there a solution ?

You mean something like this?

/* ----- Change background Image Transparency - Now Playing ----*/
div.backgroundContainer.withBackdrop {
    opacity: 0;
}
div.backgroundContainer.itemBackgroundContainer.withBackdrop
, html.withSectionTabs div.backgroundContainer.withBackdrop {
    opacity: .88;
}

Or this, it applies the default opacity to backdrops except now playing

/* ----- Change background Image Transparency - Now Playing ----*/
div.backgroundContainer.withBackdrop:not (div.backgroundContainer.itemBackgroundContainer.withBackdrop
, html.withSectionTabs div.backgroundContainer.withBackdrop) {
    opacity: 0;
}

But may not have checked all views.

KickVanelli
Posted

The first solution works ok, the second one does not (all backdrops stay .88).

Thanks very much again @Happy2Play, maybe some day i'll understand how it all works.

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