Merge branch 'sprint/177_tianshujie_kanban' into 'kanban'

* Modify the team drop-down pop-up method.

See merge request easycorp/zentaopms!950
This commit is contained in:
孙广明
2021-12-15 02:46:13 +00:00
5 changed files with 8 additions and 10 deletions
-2
View File
@@ -1,5 +1,3 @@
.color-picker-item {width: 20px; height: 20px; margin-right: 10px; border-radius: 50% 50%; float: left; cursor: pointer; text-align: center; line-height: 20px;}
.color-picker-item > .icon {color: #fff; display: none}
.checked > .icon {display: inline-block;}
#teamBox .chosen-container .chosen-results {max-height: 180px;}
+2 -2
View File
@@ -33,9 +33,9 @@
</tr>
<tr>
<th><?php echo $lang->kanban->team;?></th>
<td colspan='2' id='teamBox'>
<td colspan='2'>
<div class="input-group">
<?php echo html::select('team[]', $users, '', "class='form-control chosen' multiple");?>
<?php echo html::select('team[]', $users, '', "class='form-control chosen' multiple data-drop_direction='down'");?>
<?php echo $this->fetch('my', 'buildContactLists');?>
</div>
</td>
+2 -2
View File
@@ -29,9 +29,9 @@
</tr>
<tr>
<th><?php echo $lang->kanbanspace->team;?></th>
<td colspan='2' id='teamBox'>
<td colspan='2'>
<div class="input-group">
<?php echo html::select('team[]', $users, '', "class='form-control chosen' multiple");?>
<?php echo html::select('team[]', $users, '', "class='form-control chosen' multiple data-drop_direction='down'");?>
<?php echo $this->fetch('my', 'buildContactLists');?>
</div>
</td>
+2 -2
View File
@@ -33,9 +33,9 @@
</tr>
<tr>
<th><?php echo $lang->kanban->team;?></th>
<td colspan='2' id='teamBox'>
<td colspan='2'>
<div class="input-group">
<?php echo html::select('team[]', $users, $kanban->team, "class='form-control chosen' multiple");?>
<?php echo html::select('team[]', $users, $kanban->team, "class='form-control chosen' multiple data-drop_direction='down'");?>
<?php echo $this->fetch('my', 'buildContactLists');?>
</div>
</td>
+2 -2
View File
@@ -30,9 +30,9 @@
</tr>
<tr>
<th><?php echo $lang->kanbanspace->team;?></th>
<td colspan='2' id='teamBox'>
<td colspan='2'>
<div class="input-group">
<?php echo html::select('team[]', $users, $space->team, "class='form-control chosen' multiple");?>
<?php echo html::select('team[]', $users, $space->team, "class='form-control chosen' multiple data-drop_direction='down'");?>
<?php echo $this->fetch('my', 'buildContactLists');?>
</div>
</td>