MINOR Fixed height of MemberTableField 'Groups' tab to allow enough room for TreeMultiSelectField expansion (from r98883)

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/branches/2.4@99689 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Ingo Schommer 2010-02-23 03:34:42 +00:00 committed by Sam Minnee
parent 8c67b1a01e
commit 7f3c14784f
2 changed files with 7 additions and 0 deletions

View File

@ -414,6 +414,7 @@ class MemberTableField_Popup extends ComplexTableField_Popup {
function forTemplate() {
$ret = parent::forTemplate();
Requirements::css(CMS_DIR . '/css/SecurityAdmin.css');
Requirements::javascript(CMS_DIR . '/javascript/MemberTableField.js');
Requirements::javascript(CMS_DIR . '/javascript/MemberTableField_popup.js');

View File

@ -5,4 +5,10 @@
#Form_EditForm_Permissions .Arg input {
text-align: right;
}
/* Ensure there's enough room in the tab for TreeMultiSelectField expansion */
#MemberTableField_Popup_DetailForm #Groups,
#MemberTableField_Popup_AddForm #Groups {
height: 250px;
}