Fix fonts in context menus

Context menus inherit their style from the widget they are attached
to. This can have unexpected effects in particular for font, as can
be seen in gedit or gnome-calculator. Prevent this by resetting
the font of context-menus to the initial value.
This commit is contained in:
Matthias Clasen 2014-10-01 07:11:43 -04:00
parent d0fb80d31b
commit 7e9372bafa

View File

@ -2834,3 +2834,7 @@ GtkVolumeButton.button { padding: 8px; }
padding: 10px;
}
/* Decouple the font of context menus from their entry/textview */
.context-menu {
font: initial;
}