diff --git a/module/task/css/common.css b/module/task/css/common.css
index 842d9c8db3..676f71a76d 100644
--- a/module/task/css/common.css
+++ b/module/task/css/common.css
@@ -1,8 +1,7 @@
.body-modal > .main {padding: 20px;}
.body-modal > .main .table-form {border: 1px solid #ddd;}
-#modalTeam .modal-dialog {padding-bottom: 20px;}
-#modalTeam .modal-content {padding: 0 0 5px; height: 340px;}
+#modalTeam .modal-content {padding: 0 0 5px; min-height: 120px;}
#modalTeam .modal-body {padding: 12px 13px 20px; max-height: 296px !important; overflow-y: scroll !important;}
#modalTeam .modal-header {height: 44px; padding: 10px 20px; margin: 0; }
#modalTeam .modal-header .modal-title {font-size: 13px; line-height: 24px;}
diff --git a/module/task/css/create.css b/module/task/css/create.css
index 6aa2ede9c0..0c8b0eb081 100644
--- a/module/task/css/create.css
+++ b/module/task/css/create.css
@@ -28,6 +28,6 @@
.c-modulel {width: 110px;}
.keep-row-height {height: 32px;}
-#modalTeam .modal-dialog {height: 340px; width: 520px; color: #3c4353;}
+#modalTeam .modal-dialog {min-height: 120px; width: 520px; color: #3c4353;}
#taskTeamEditor .chosen-single {width: 200px;}
#taskTeamEditor .estimateBox {width: 120px;}
diff --git a/www/js/my.full.js b/www/js/my.full.js
index defe102c4f..43cbcf35f6 100644
--- a/www/js/my.full.js
+++ b/www/js/my.full.js
@@ -834,7 +834,7 @@ function toggleFold(form, unfoldIdList, objectID, objectType)
$parentTd = $form.find('td.has-child');
if($parentTd.length == 0) return false;
- var toggleClass = objectType == 'product' ? 'story-toggle' : 'task-toggle';
+ var toggleClass = ['product', 'requirement'].includes(objectType) ? 'story-toggle' : 'task-toggle';
var nameClass = ['product', 'productplan'].indexOf(objectType) !== -1 ? 'c-title' : 'c-name';
$form.find('th.' + nameClass).addClass('clearfix').append("");