elofgren: Remove padding:0; margin:0; accidentally committed in r36714 (merged from branches/gsoc)

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@41774 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Ingo Schommer 2007-09-14 17:38:38 +00:00
parent 1d07b6b254
commit ff2f8fa7f4
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ class HtmlEditorField extends TextareaField {
// We can't use htmlentities as that messes with unicode
$cleanVal = str_replace(array("&","<",">"),array("&amp;","&lt;","&gt;"),$cleanVal);
// 97% instead of 100% to prevent horizontal scrollbars in IE7
$style = "width: 97%; padding:0; margin:0; height: " . ($this->rows * 16) . "px";
$style = "width: 97%; height: " . ($this->rows * 16) . "px";
$class = "htmleditor";
$class = ($this->extraClass)?$class." ".$this->extraClass:$class;