From aeab95f9db5f78094fcb8f595eb83965dce2e33c Mon Sep 17 00:00:00 2001 From: skodak Date: Fri, 5 Jan 2007 21:33:48 +0000 Subject: [PATCH] MDL-7861 xhtml strict fixes - the invisible fieldset was borking layout because it behaved like a block, added display:inline directive --- theme/standard/styles_layout.css | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/theme/standard/styles_layout.css b/theme/standard/styles_layout.css index a4dc616153..301ddafa1f 100644 --- a/theme/standard/styles_layout.css +++ b/theme/standard/styles_layout.css @@ -276,7 +276,7 @@ img.emoticon { } form.popupform { - display: inline; + display: inline; } .arrow_button { @@ -303,8 +303,10 @@ form.popupform { } .invisiblefieldset { - border: 0; - padding: 0; + display:inline; + border:0px; + padding:0px; + margin:0px; } span.hide, -- 2.39.5