Icons in Budgie Panel are cutoff at sides
Xrey274 opened this issue · 2 comments
Xrey274 commented
Prerequisites
- I performed a cursory search of the issue tracker to avoid opening a duplicate issue.
Checklist to make sure the issue is not on your end
- I have made sure that I do not have multiple versions of the theme installed. Only one version should be installed in either
~/.local/share/themesor/usr/share/themesor~/.themes - The file
~/.config/gtk-3.0/gtk.cssdoes not exist. (If it does, backup and remove it.) - I have logged out and in again.
- Dark theme only. I have enabled adw-gtk3-dark in
gnome-tweaksAND set the appearance to dark ingnome-control-center - The flatpak theme is installed
org.gtk.Gtk3theme.adw-gtk3andorg.gtk.Gtk3theme.adw-gtk3-dark - The app I'm having an issue with is an actual GTK3 app and is not coded using another toolkit like GTK2, GTK4, QT, etc.
- I have created a new user profile without any modifications except adw-gtk3.
Description
The icons in the Budgie Panel, are cut off on the sides. This happens only with adw-gtk3-dark, and no other theme (as show in below screenshots). This has been a thing for a while with different budgie and adw-gtk3 versions.
Adw-gtk3-dark
Flat-Plat-dark (for example, other themes behave the same)
OS and version [e.g Fedora 37]
Solus 4.4
Adw-gtk3 version. Also specify your installation source. [e.g tar.xz, AUR, git main branch]
No idea, git main branch some time ago.
GNOME version
44?
Application name and version (If the issue is with an app.)
No response
lassekongo83 commented
Can you add the following to ~/.config/gtk-3.0/gtk.css
.budgie-panel button {
min-height: 16px;
min-width: 16px;
padding: 0;
border-radius: 0;
}
.budgie-panel.horizontal button {
padding: 0 4px;
}
.budgie-panel.vertical button {
padding: 4px 0;
}
.budgie-panel #tasklist-button {
padding: 0 4px;
}
.budgie-panel.vertical #tasklist-button {
min-height: 32px;
}
.budgie-panel button.flat.launcher {
padding: 0;
}Then relog (or restart the panel) and see if it fixes the problem.
Xrey274 commented
Yep, it seems to have done it.

