Increase size of the permissions set input

fixes #7762
This commit is contained in:
Eric Lippmann 2015-02-03 16:58:53 +01:00
parent 2fe3f4c6c2
commit ed411ec9b6
2 changed files with 7 additions and 1 deletions

View File

@ -108,7 +108,8 @@ class RoleForm extends ConfigForm
'description' => $this->translate(
'The permissions to grant. You may select more than one permission'
),
'multiOptions' => $this->providedPermissions
'multiOptions' => $this->providedPermissions,
'class' => 'grant-permissions'
)
)
));

View File

@ -220,3 +220,8 @@ form label.has-feedback:after {
/* Uncomment for 3D effect */
/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
select.grant-permissions {
height: 20em;
width: auto;
}