Jump to content

Recommended Posts

Posted (edited)

Hi
again here to ask for help on the top bar, which again broke in the EmbyServer 4.2.0.40 update.

I use the CSS code below and it is not doing the effects I want.

1. the top bar on the login screen:
I would like to have her transparent

2. the top bar in the homescreen:
I would like to have her transparent

3. the top bar on the dashboard:
I would like to have it in the default color (only it is transparent)

Thank you for any help.

div.skinHeader {background-color: transparent; }
div.skinHeader-withBackground {background: transparent; }

post-26813-0-49181100-1565704151_thumb.png

Edited by CarlosLima
Happy2Play
Posted

Something like this.

div.skinHeader.skinHeader-withBackground {
    background: transparent;
    backdrop-filter: none;
}
Posted

Hi, thank you very much, the login screen and homepage are now working perfectly; both transparent.

The dashboard screen is also transparent and for her I would like to use the default Emby color.

Can you help with that too?

Happy2Play
Posted

Hi, thank you very much, the login screen and homepage are now working perfectly; both transparent.

 

The dashboard screen is also transparent and for her I would like to use the default Emby color.

 

Can you help with that too?

 

I guess something like this, but it looks like this will break in 4.3 again.

div.skinHeader.skinHeader-withBackground {
    background: transparent;
    backdrop-filter: none;
}

.dashboardDocument div.skinHeader.skinHeader-withBackground  {
       background: rgba(49,50,53,.8);
       backdrop-filter: saturate(1.8) blur(1.5em);
}
Posted

 

I guess something like this, but it looks like this will break in 4.3 again.

div.skinHeader.skinHeader-withBackground {
    background: transparent;
    backdrop-filter: none;
}

.dashboardDocument div.skinHeader.skinHeader-withBackground  {
       background: rgba(49,50,53,.8);
       backdrop-filter: saturate(1.8) blur(1.5em);
}

 

Perfect. Thank you very much.

  • 1 year later...
Posted
On 8/13/2019 at 6:34 PM, Happy2Play said:

Something like this.


div.skinHeader.skinHeader-withBackground {
    background: transparent;
    backdrop-filter: none;
}

So, I am using the same code for a long now but just today I have noticed that there is very slim, maybe 1px white (?) line left that is scrolling down with the transparent skinheader.

How can I remove that?

image.thumb.png.aabbf5ca62a39dbfd157d83f8e4504c8.png

Happy2Play
Posted

Here you go

div.skinHeader-withBackground.skinHeader-withfulldrawer {
    border-bottom: none;
}

css.thumb.jpg.69c881e439497cf60e7dda732d2cc2dc.jpg

  • Like 1
Posted

Thanks for the answer but most importantly thanks for the screenshot. I have been using the Console all wrong. Just now I realised that there are 'Styles' section, not just 'Elements' and that makes addressing things more easy I guess. Have to try it. Thank you CSS Yoda!

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