Fix the spacing in the mount operation auth prompt
We weren't setting the correct style attributes like we were in the polkit auth dialog. https://bugzilla.gnome.org/show_bug.cgi?id=682645
This commit is contained in:
parent
df3fa973ad
commit
b3cb9d8459
@ -361,12 +361,12 @@ const ShellMountPasswordDialog = new Lang.Class({
|
|||||||
if (strings[1])
|
if (strings[1])
|
||||||
description.set_text(strings[1]);
|
description.set_text(strings[1]);
|
||||||
|
|
||||||
this._passwordBox = new St.BoxLayout({ vertical: false });
|
this._passwordBox = new St.BoxLayout({ vertical: false, style_class: 'prompt-dialog-password-box' });
|
||||||
this._messageBox.add(this._passwordBox);
|
this._messageBox.add(this._passwordBox);
|
||||||
|
|
||||||
this._passwordLabel = new St.Label(({ style_class: 'prompt-dialog-password-label',
|
this._passwordLabel = new St.Label(({ style_class: 'prompt-dialog-password-label',
|
||||||
text: _("Passphrase") }));
|
text: _("Passphrase") }));
|
||||||
this._passwordBox.add(this._passwordLabel);
|
this._passwordBox.add(this._passwordLabel, { y_fill: false, y_align: St.Align.MIDDLE });
|
||||||
|
|
||||||
this._passwordEntry = new St.Entry({ style_class: 'prompt-dialog-password-entry',
|
this._passwordEntry = new St.Entry({ style_class: 'prompt-dialog-password-entry',
|
||||||
text: "",
|
text: "",
|
||||||
|
Loading…
Reference in New Issue
Block a user