unlockDialog: Iconize the switch user button
Make it look exactly the same as the login screen's session selection button. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/1006
This commit is contained in:
parent
d44a4a6a62
commit
133b623204
@ -70,6 +70,7 @@
|
||||
}
|
||||
|
||||
.cancel-button,
|
||||
.switch-user-button,
|
||||
.login-dialog-session-list-button {
|
||||
padding: 0;
|
||||
border-radius: 99px;
|
||||
|
@ -556,15 +556,13 @@ var UnlockDialog = GObject.registerClass({
|
||||
this._notificationsBox.connect('wake-up-screen', () => this.emit('wake-up-screen'));
|
||||
|
||||
// Switch User button
|
||||
let otherUserLabel = new St.Label({
|
||||
text: _('Log in as another user'),
|
||||
style_class: 'login-dialog-not-listed-label',
|
||||
});
|
||||
this._otherUserButton = new St.Button({
|
||||
style_class: 'login-dialog-not-listed-button',
|
||||
style_class: 'modal-dialog-button button switch-user-button',
|
||||
can_focus: true,
|
||||
child: otherUserLabel,
|
||||
reactive: true,
|
||||
x_align: Clutter.ActorAlign.END,
|
||||
y_align: Clutter.ActorAlign.END,
|
||||
child: new St.Icon({ icon_name: 'system-users-symbolic' }),
|
||||
});
|
||||
this._otherUserButton.connect('clicked', this._otherUserClicked.bind(this));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user