From a7bcc4c00dbac26afc988cff3787a85d51ad48a2 Mon Sep 17 00:00:00 2001 From: Jonh Wendell Date: Wed, 7 Aug 2013 15:35:56 -0300 Subject: [PATCH] dateMenu: add a style class for the clock label it's useful if we need to tweak only the clock's label css. https://bugzilla.gnome.org/show_bug.cgi?id=705634 --- js/ui/dateMenu.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/ui/dateMenu.js b/js/ui/dateMenu.js index 85a0aded1..389860679 100644 --- a/js/ui/dateMenu.js +++ b/js/ui/dateMenu.js @@ -51,6 +51,7 @@ const DateMenuButton = new Lang.Class({ this._clockDisplay = new St.Label(); this.actor.add_actor(this._clockDisplay); + this.actor.add_style_class_name ('clock-display'); hbox = new St.BoxLayout({name: 'calendarArea' }); this.menu.addActor(hbox);