* finish task#1527.

This commit is contained in:
chencongzhi520@gmail.com
2013-07-10 00:57:36 +00:00
parent 2dd095e4e2
commit f25dee3244
6 changed files with 6 additions and 3 deletions
+1
View File
@@ -3,3 +3,4 @@
.w-180px{width:180px}
.half-left {text-align:right}
.half-right{text-align:left}
textarea {height:16px}
+1 -1
View File
@@ -32,7 +32,7 @@
<td><?php echo html::select("module[$i]", $moduleOptionMenu, $moduleID, 'class=select-1');?></td>
<td><?php echo html::select("plan[$i]", $plans, $planID, 'class=select-1');?></td>
<td><?php echo html::input("title[$i]", $storyTitle, "class='text-1'");?></td>
<td><?php echo html::input("spec[$i]", $spec, "class='text-1'");?></td>
<td><?php echo html::textarea("spec[$i]", $spec, "rows='1' class='text-1'");?></td>
<td><?php echo html::select("pri[$i]", (array)$lang->story->priList, $pri, 'class=select-1');?></td>
<td><?php echo html::input("estimate[$i]", $estimate, "class='text-1'");?></td>
<td><?php echo html::select("needReview[$i]", $lang->story->reviewList, 0, "class='text-1'");?></td>
+1
View File
@@ -0,0 +1 @@
textarea {height:16px}
+1 -1
View File
@@ -53,7 +53,7 @@
<td><?php echo html::select("type[$i]", $lang->task->typeList, $type, 'class=select-1');?></td>
<td><?php echo html::select("assignedTo[$i]", $members, $member, 'class=select-1');?></td>
<td><?php echo html::input("estimate[$i]", '', 'class=text-1');?></td>
<td><?php echo html::input("desc[$i]", '', "class=text-1");?></td>
<td><?php echo html::textarea("desc[$i]", '', "rows='1' class=text-1");?></td>
<td><?php echo html::select("pri[$i]", (array)$lang->task->priList, $pri, 'class=select-1');?></td>
</tr>
<?php endfor;?>
+1
View File
@@ -4,3 +4,4 @@
.select-2 {width: 75px}
.text-1, .select-1{width:98%}
select {border:1px solid #ccc}
textarea {height:16px}
+1 -1
View File
@@ -35,7 +35,7 @@
<div id='<?php echo "nameBox" . ($i+1);?>' class='hidden'><?php echo html::input("names[$i]", '', 'class="f-left text-1"');?></div>
<div class='<?php echo "nameBox" . ($i+1);?>'><?php echo html::input("names[$i]", '', 'class="f-left text-1"');?></div>
</td>
<td><?php echo html::input("descs[$i]", '', "class=text-1");?></td>
<td><?php echo html::textarea("descs[$i]", '', "rows='1' class=text-1");?></td>
<td>
<?php
echo html::select("begins[$i]", $times, $time, "onchange=setBeginsAndEnds($i,'begin')");