After upgrading from XFCE4 4.16 (Bullseye) to 4.18 (Bookworm), you may experience a loss of transparency issue if your window buttons use transparency.
How to reproduce the issue:
Open two terminals, each on a different desktop. On one of the terminals, perform an action (yes, it's strange, you need this to reproduce the problem), for example
Code: Select all
$> less /etc/fstab
Proposed solution to resolve the problem:
create the file ~/.config/gtk-3.0/gtk.css with your favorite editor, for example
Code: Select all
$> vi ~/.config/gtk-3.0/gtk.css
Code: Select all
.tasklist .toggle {
transition-duration: 500ms;
transition: all 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
background-color: transparent;
background-image: none;
}
.xfce4-panel.background .tasklist button:checked {
background-image: linear-gradient(to top right, #000000 1%, #1e3a57 99%);
}
You can reload the configuration by running
Code: Select all
$> xfce4-panel -r
Related links:
xfce4-panel - Panelbar Theming
GTK+ CSS Overview
GTK Supported CSS Properties
If you have encountered other problems with the XFCE4 interface, you can report your solution here.