Jump to content

top bar - CSS code customization


CarlosLima

Recommended Posts

CarlosLima

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

Happy2Play

Something like this.

div.skinHeader.skinHeader-withBackground {
    background: transparent;
    backdrop-filter: none;
}
Link to comment
Share on other sites

CarlosLima

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?

Link to comment
Share on other sites

Happy2Play

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);
}
  • Like 1
Link to comment
Share on other sites

CarlosLima

 

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.

Link to comment
Share on other sites

  • 1 year later...
cochize1
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

Link to comment
Share on other sites

Happy2Play

Here you go

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

css.thumb.jpg.69c881e439497cf60e7dda732d2cc2dc.jpg

  • Like 1
Link to comment
Share on other sites

cochize1

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!

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