From ff2f8fa7f42343ebf9ca782a6d623cb81c64b682 Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Fri, 14 Sep 2007 17:38:38 +0000 Subject: [PATCH] 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 --- forms/HtmlEditorField.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forms/HtmlEditorField.php b/forms/HtmlEditorField.php index f8b6fb103..37e219301 100755 --- a/forms/HtmlEditorField.php +++ b/forms/HtmlEditorField.php @@ -61,7 +61,7 @@ class HtmlEditorField extends TextareaField { // We can't use htmlentities as that messes with unicode $cleanVal = str_replace(array("&","<",">"),array("&","<",">"),$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;