summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaximiliano Sandoval R <msandova@gnome.org>2022-01-06 11:40:20 +0100
committerDavid King <amigadave@amigadave.com>2022-03-28 17:11:49 +0100
commitad209855bb35d2b33c2b15b7333b1fc324e99950 (patch)
tree143d4457a79dee1d9350a091c9e5bcc4e3142641
parent83ed0d724e705dd634dea1a8e2655e230bf52ae0 (diff)
downloadgnome-logs-ad209855bb35d2b33c2b15b7333b1fc324e99950.tar.gz
menu_button: Use caption+dim-label classes
They follow more closelly what was already in gtk3.
-rw-r--r--src/gl-eventtoolbar.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gl-eventtoolbar.c b/src/gl-eventtoolbar.c
index 8b1efba..facb670 100644
--- a/src/gl-eventtoolbar.c
+++ b/src/gl-eventtoolbar.c
@@ -148,7 +148,8 @@ gl_event_toolbar_add_boots (GlEventToolbar *toolbar,
gtk_label_set_label (GTK_LABEL (priv->current_boot), current_boot);
context = gtk_widget_get_style_context (GTK_WIDGET (priv->current_boot));
- gtk_style_context_add_class (context, "subtitle");
+ gtk_style_context_add_class (context, "caption");
+ gtk_style_context_add_class (context, "dim-label");
gtk_grid_attach (GTK_GRID (grid), priv->current_boot, 0, 1, 1, 1);
arrow = gtk_image_new_from_icon_name ("pan-down-symbolic");