20.04 set transparent panels on vimix-dark-ruby gtk theme

Hi,

20.04 freshly installed here. Pictures better than words ?


and

Anything I can tinker ?

( or what is it meant by desktop style : the pocillo default one, with blue highlights ? )

So my question actually maybe is :
how can I set « more » transparency on panels to Vimix-dark-ruby theme ?

.budgie-panel {
  transition: background-color 100ms cubic-bezier(0, 0, 0.2, 1);
  background-color: #222222;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.budgie-panel.transparent {
  background-color: rgba(34, 34, 34, 0.85);
}

???

Done !

.budgie-panel {
  transition: background-color 100ms cubic-bezier(0, 0, 0.2, 1);
  background-color: #222222;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.budgie-panel.transparent {
  background-color: rgba(34, 34, 34, 0.1);
}

…by creating
$HOME/.local/share/themes/vimix-dark-ruby/gtk-3.0
copying there the .css file from
/usr/share/themes/vimix-dark-ruby/gtk-3.0/gtk.css
and modifying « locally » for this user as shown above.

Problem now : this has an effect on other parts of the interface ! Not only the panels.
Radio buttons are now also transparent…
Capture d’écran du 2022-09-04 18-42-06

In sass the pixelsaver has its own specific styling that can be translated to css

Naa… ok I’ve found why.
Buttons were not transparent, they were missing.
Needed assets in the same directory as gtk.css file.
So I did a symlink

cd ~/.local/share/themes/vimix-dark-ruby/gtk-3.0/
ln -s /usr/share/themes/vimix-dark-ruby/gtk-3.0/assets

and everything’s fine now <3

Hope I’ll be able to do the same in 22.04…