panel: Add :overview pseudo class while in overview
The panel used to provide an .in-overview class which was removed after the theme stopped using it. Classic mode should use a different top bar style in the overview, so bring it back (but use a pseudo class this time for consistency with MessageTray and ActivitiesButton). https://bugzilla.gnome.org/show_bug.cgi?id=693218
This commit is contained in:
parent
3d638c692e
commit
f47c0601ce
@ -972,6 +972,13 @@ const Panel = new Lang.Class({
|
|||||||
this.actor.connect('allocate', Lang.bind(this, this._allocate));
|
this.actor.connect('allocate', Lang.bind(this, this._allocate));
|
||||||
this.actor.connect('button-press-event', Lang.bind(this, this._onButtonPress));
|
this.actor.connect('button-press-event', Lang.bind(this, this._onButtonPress));
|
||||||
|
|
||||||
|
Main.overview.connect('showing', Lang.bind(this, function () {
|
||||||
|
this.actor.add_style_pseudo_class('overview');
|
||||||
|
}));
|
||||||
|
Main.overview.connect('hiding', Lang.bind(this, function () {
|
||||||
|
this.actor.remove_style_pseudo_class('overview');
|
||||||
|
}));
|
||||||
|
|
||||||
Main.layoutManager.panelBox.add(this.actor);
|
Main.layoutManager.panelBox.add(this.actor);
|
||||||
Main.ctrlAltTabManager.addGroup(this.actor, _("Top Bar"), 'emblem-system-symbolic',
|
Main.ctrlAltTabManager.addGroup(this.actor, _("Top Bar"), 'emblem-system-symbolic',
|
||||||
{ sortGroup: CtrlAltTab.SortGroup.TOP });
|
{ sortGroup: CtrlAltTab.SortGroup.TOP });
|
||||||
|
Loading…
Reference in New Issue
Block a user