From: Stanislas Rolland Date: Sat, 6 Aug 2011 14:30:03 +0000 (-0400) Subject: [BUGFIX] RTE Remove format: German fieldset legend does not wrap in IE X-Git-Tag: TYPO3_4-6-0beta2~77 X-Git-Url: http://git.typo3.org/Packages/TYPO3.CMS.git/commitdiff_plain/b5d2ddcb498d053f39196bd8c748bae50f9d628b [BUGFIX] RTE Remove format: German fieldset legend does not wrap in IE Workaround IE bug by floating the legend to the left. Change-Id: I6cdbca368ad3ccd76d65ede97040c807c7f0fb95 Resolves: #25484 Releases: 4.5, 4.6 Reviewed-on: http://review.typo3.org/4174 Reviewed-by: Stanislas Rolland Tested-by: Stanislas Rolland --- diff --git a/typo3/sysext/rtehtmlarea/htmlarea/skins/default/htmlarea.css b/typo3/sysext/rtehtmlarea/htmlarea/skins/default/htmlarea.css index 4333d2bd42a7..a4bf035b44a7 100644 --- a/typo3/sysext/rtehtmlarea/htmlarea/skins/default/htmlarea.css +++ b/typo3/sysext/rtehtmlarea/htmlarea/skins/default/htmlarea.css @@ -238,6 +238,16 @@ body.ext-ie6 .htmlarea-window .x-panel-icon { } .htmlarea-window .x-fieldset { margin: 3px; + padding-top: 5px; +} +/* IE legend positioning bug */ +.ext-ie .htmlarea-window .x-fieldset legend, +.ext-ie .htmlarea-window .x-fieldset legend span { + display: block; + float: left; +} +.ext-ie .htmlarea-window .x-fieldset-bwrap { + clear: left; } .htmlarea-window .x-form-item-label { font-size: 10px; diff --git a/typo3/sysext/t3skin/rtehtmlarea/htmlarea.css b/typo3/sysext/t3skin/rtehtmlarea/htmlarea.css index e0f9f0c076ac..98c2e44765a1 100644 --- a/typo3/sysext/t3skin/rtehtmlarea/htmlarea.css +++ b/typo3/sysext/t3skin/rtehtmlarea/htmlarea.css @@ -243,6 +243,16 @@ body.ext-ie6 .htmlarea-window .x-panel-icon { } .htmlarea-window .x-fieldset { margin: 3px; + padding-top: 5px; +} +/* IE legend positioning bug */ +.ext-ie .htmlarea-window .x-fieldset legend, +.ext-ie .htmlarea-window .x-fieldset legend span { + display: block; + float: left; +} +.ext-ie .htmlarea-window .x-fieldset-bwrap { + clear: left; } .htmlarea-window .x-form-item-label { font-size: 10px;