You are not logged in.
Pages: 1
I have this issue with the xfce4-clipman-plugin and datetime plugin on Linux Mint 19.1 on a dark wallpaper.
Changing in ~$ /.config/gtk-3.0/gtk.css
#datetime-21* {
color: #FFFFFF;
}
to
#datetime-21* {
color: #000000;
}
gives me that effect.
Any way to overcome this?
Offline
By specifying everything (*) below the widget name your snippet also affects the menu. To focus only on the button widget itself, use:
#datetime-21>button {
color: #FFFFFF;
}
Note: you can also use:
#xfce-panel-toggle-button { color: #FFFFFF; }
A number of xfce4-panel plugins use a toggle button that has this widget name - so you might be able to affect more than just one plugin. Plus you don't need to know the actual plugin ID value.
Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki | Community | Contribute ---
Offline
Helpful as every time.
Thank you very much, ToZ.
br
Offline
Pages: 1
[ Generated in 0.006 seconds, 7 queries executed - Memory usage: 522.4 KiB (Peak: 528.59 KiB) ]