diff --git a/data/theme/gnome-shell.css b/data/theme/gnome-shell.css index 5ce232b44..64e651af5 100644 --- a/data/theme/gnome-shell.css +++ b/data/theme/gnome-shell.css @@ -1418,7 +1418,8 @@ StButton.popup-menu-item:insensitive { #summary-mode { padding: 2px 0px 0px 4px; - height: 72px; + height: 60px; + spacing: 10px; } #summary-mode:rtl { diff --git a/js/ui/messageTray.js b/js/ui/messageTray.js index 2d7ef8ea2..7ada61685 100644 --- a/js/ui/messageTray.js +++ b/js/ui/messageTray.js @@ -1361,6 +1361,7 @@ const MessageTray = new Lang.Class({ })); this.actor = new St.Widget({ name: 'message-tray', + layout_manager: new Clutter.BinLayout(), reactive: true, track_hover: true }); this.actor.connect('style-changed', Lang.bind(this, this._onStyleChanged)); @@ -1378,6 +1379,7 @@ const MessageTray = new Lang.Class({ this._notificationClickedId = 0; this._summaryBin = new St.Bin({ x_align: St.Align.END, + y_expand: true, // this is the Clutter property reactive: true }); this._summaryBin.connect('button-release-event', Lang.bind(this, function(actor, event) { this._setClickedSummaryItem(null);