Black box around right click menu in linux #3185
Answered
by
anund
anund
asked this question in
Feature Requests, Ideas
-
What's missing to get the right click menu to render without this additional black border. |
Beta Was this translation helpful? Give feedback.
Answered by
anund
Dec 26, 2024
Replies: 2 comments
-
Gtk seems to require additional compositing to for it's default style. A global override will fix this behaviour for gtk 4 apps. ~/.config/gtk-4.0/gtk.css popover contents {
border: 1px solid rgb(150,150,150);
border-radius: 0;
box-shadow: none;
} Relevant gtk issue: https://gitlab.gnome.org/GNOME/gtk/-/issues/4815. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
anund
-
Also, please note that running GTK applications without a compositor on X11 will cause this too. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Gtk seems to require additional compositing to for it's default style. A global override will fix this behaviour for gtk 4 apps.
~/.config/gtk-4.0/gtk.css
Relevant gtk issue: https://gitlab.gnome.org/GNOME/gtk/-/issues/4815.