MINOR Fixed height of MemberTableField 'Groups' tab to allow enough room for TreeMultiSelectField expansion

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@98883 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Ingo Schommer 2010-02-12 04:01:49 +00:00
parent fc8f4130c2
commit d68bbc2c01
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;
}