delete the checkbox's margin

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@8386 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
xq2005 2010-12-13 06:08:58 +00:00
parent c701627d7c
commit fc5df4fc23

View File

@ -515,7 +515,7 @@ function createFspDiv(fspName, mtm, fsp){
}
//create return value
var retHtml = '<input class="fspcheckbox" type="checkbox" name="check_' + fspName + '">';
var retHtml = '<input style="margin:3px 3px 1px 4px;padding:0" class="fspcheckbox" type="checkbox" name="check_' + fspName + '">';
retHtml += '<div value="' + fspName + '" class="' + divClass + '">';
retHtml += '<div class="lparDiv"><table><tbody><tr>' + lparStatusRow + '</tr></tbody></table></div></div>';
return retHtml;