Fix modal dialog styling for network secret prompts

https://bugzilla.gnome.org/show_bug.cgi?id=682412
This commit is contained in:
Jasper St. Pierre 2012-08-21 23:23:56 -03:00
parent 7f8c5c4f64
commit 47ce72e011
2 changed files with 5 additions and 1 deletions

View File

@ -1874,6 +1874,7 @@ StButton.popup-menu-item:insensitive {
.network-dialog-secret-table {
spacing-rows: 15px;
spacing-columns: 1em;
}
.keyring-dialog-control-table {

View File

@ -135,7 +135,10 @@ const NetworkSecretDialog = new Lang.Class({
} else
secret.valid = true;
secretTable.add(label, { row: pos, col: 0, x_expand: false, x_fill: true, x_align: St.Align.START, y_align: St.Align.START });
secretTable.add(label, { row: pos, col: 0,
x_expand: false, x_fill: true,
x_align: St.Align.START,
y_fill: false, y_align: St.Align.MIDDLE });
secretTable.add(secret.entry, { row: pos, col: 1, x_expand: true, x_fill: true, y_align: St.Align.END });
pos++;