The indicator bar of the panel does not become transparent

Hi, I’m trying to make the panel transparent. It “works” but, the indicator bar of the panel remains opaque. I have no idea what it can be. I can not change its color because it keeps the original color of the theme. I would attach a screenshot of the problem, but I can not. I posted photos in this link. Regards!

New photo · Album by Raul Lobo

@mancusolobo, no link seen. You should check out this post -

1 Like

Just for reference, there isn't a transparent background property, you have to use an RGBA color (the last value is the opacity level: 0= 100% transparent, 1=100% opaque)

#fast-user-switch-menubar  {
  background-color:rgba(0,0,0,0);
}

1 Like