remove borders on radio button elements

This commit is contained in:
Andrew Dolgov 2006-02-25 05:47:55 +01:00
parent 1de2b92c16
commit 69654950d6
2 changed files with 5 additions and 1 deletions

View File

@ -682,7 +682,8 @@
$sel .= " value=\"0\"";
}
print "<input type=\"radio\" $sel $attributes name=\"$id\">&nbsp;$v&nbsp;";
print "<input class=\"noborder\"
type=\"radio\" $sel $attributes name=\"$id\">&nbsp;$v&nbsp;";
}
}

View File

@ -989,3 +989,6 @@ div.cdmContent a:hover {
color : black;
}
.noborder {
border-width : 0px;
}