Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Need help making panel transparent #75

Open
Ironash01 opened this issue Feb 24, 2023 · 1 comment
Open

Need help making panel transparent #75

Ironash01 opened this issue Feb 24, 2023 · 1 comment

Comments

@Ironash01
Copy link

I manually installed the theme to my ~/.themes
At first, it was not rgba but HEX, it was set to #141414 I changed that to match the guide to rgba.
Am I doing something wrong here?

Screenshot from 2023-02-24 11-24-36

OS: Linux Mint 21.1 x86_64 Host: Nitro AN515-58 V1.09 Kernel: 5.15.0-60-generic Uptime: 27 mins Packages: 3578 (dpkg), 28 (flatpak) Shell: bash 5.1.16 Resolution: 1920x1080 DE: Cinnamon 5.6.7 WM: Mutter (Muffin) WM Theme: CBlack (Mint-Y) Theme: CBlack [GTK2/3] Icons: Numix [GTK2/3] Terminal: gnome-terminal

`
.panel-left {
box-shadow: 1px 0px 0px 0px rgba(20, 20, 20, 0); }

.panel-right {
box-shadow: -1px 0px 0px 0px rgba(20, 20, 20, 0); }

.panel-top {
box-shadow: 0px 1px 0px 0px rgba(20, 20, 20, 0); }

.panel-bottom {
box-shadow: 0px -1px 0px 0px rgba(20, 20, 20, 0); }
`

@anaximeno
Copy link

anaximeno commented Mar 18, 2023

@Ironash01 you are changing the wrong section if you want to make the panel transparent, you are changing the box-shadow attribute which relates to the shadow around the panel. If you want to change transparency go to the id #panel and change the attribute background-color:

#panel {
   ...
   background-color: rgba(20, 20, 20, 0);
   ...
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants