We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there a way to customize the tray menu in hover mode? Currently it's background "system" blue and color white.
Something like this would be great:
#tray menu-item:hover { color: red; background-color: green; }
The text was updated successfully, but these errors were encountered:
Try it:
#tray > widget:hover { color: red; background-color: green; }
EDIT: I've try here.. Seems hiver state don't work.
Sorry, something went wrong.
Some documentation on what the actual item is named would be fantastic.
Doing this at least changes the background color of the current item:
#tray menu *:hover { background-color: @color7; color: @background; }
But it'd be better to know what the actual name of the item in the list is.
Edit: Got it
#tray menu menuitem:hover { background-color: @color7; color: @background; }
Doc: https://lazka.github.io/pgi-docs/Gtk-3.0/classes/MenuItem.html#class-details See: "CSS nodes"
No branches or pull requests
Is there a way to customize the tray menu in hover mode?
Currently it's background "system" blue and color white.
Something like this would be great:
The text was updated successfully, but these errors were encountered: