* fix a bug in ie8: button too small.

This commit is contained in:
zhujinyong
2012-10-30 05:43:21 +00:00
parent 6cb6fc4599
commit 08467d7d97
+2 -2
View File
@@ -7,8 +7,8 @@
<input type='file' name='files[]' class='fileControl' tabindex='-1' />
<label tabindex='-1' class='fileLabel'>{$lang->file->label}</label>
<input type='text' name='labels[]' class='text-3' tabindex='-1' />
<input type='button' onclick='addFile(this)' class='icon-addFile'></input>
<input type='button' onclick='delFile(this)' class='icon-delFile'></input>
<input type='button' onclick='addFile(this)' class='icon-addFile' value='&nbsp;'></input>
<input type='button' onclick='delFile(this)' class='icon-delFile' value='&nbsp;'></input>
</div>
EOT;
for($i = 1; $i <= $fileCount; $i ++) echo str_replace('$i', $i, $fileRow);