* changed css names to compatible with zui.

This commit is contained in:
Catouse
2014-03-26 11:01:19 +08:00
parent 1ff011f641
commit e94843f4e2
74 changed files with 303 additions and 296 deletions
+4 -4
View File
@@ -31,11 +31,11 @@
<td><?php echo $i+1;?></td>
<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::textarea("spec[$i]", $spec, "rows='1' class='text-1'");?></td>
<td><?php echo html::input("title[$i]", $storyTitle, "class='form-control'");?></td>
<td><?php echo html::textarea("spec[$i]", $spec, "rows='1' class='form-control'");?></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>
<td><?php echo html::input("estimate[$i]", $estimate, "class='form-control'");?></td>
<td><?php echo html::select("needReview[$i]", $lang->story->reviewList, 0, "class='form-control'");?></td>
</tr>
<?php endfor;?>
<tr><td colspan='8' class='text-center'><?php echo html::submitButton() . html::backButton();?></td></tr>