From 6b63724cfbefc9c126f8850d4f49c9d3df34fdba Mon Sep 17 00:00:00 2001 From: Oliver Hader Date: Mon, 14 Jan 2008 23:39:27 +0000 Subject: [PATCH] Fixed bug #7126: IRRE - Child records are shown floated and not as blocks in Safari git-svn-id: https://svn.typo3.org/TYPO3v4/Core/trunk@2889 709f56b5-9817-0410-a4d7-c38de5d9e867 --- ChangeLog | 1 + t3lib/class.t3lib_tceforms_inline.php | 3 ++- typo3/stylesheet.css | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 8768c686db2a..450601b2e744 100755 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,7 @@ * (feature) Added feature #7122: IRRE - Implement TYPO3AJAX handler for Inline Relational Record Editing * (feature) Added feature #2797: Add return value to t3lib_htmlmail::send (thanks to Steffen Kamper) + * (minor) Fixed bug #7126: IRRE - Child records are shown floated and not as blocks in Safari 2008-01-14 Stanislas Rolland diff --git a/t3lib/class.t3lib_tceforms_inline.php b/t3lib/class.t3lib_tceforms_inline.php index ff9c6e33f76a..706313346951 100755 --- a/t3lib/class.t3lib_tceforms_inline.php +++ b/t3lib/class.t3lib_tceforms_inline.php @@ -358,7 +358,8 @@ class t3lib_TCEforms_inline { $out = '
'.$header.'
'; $out .= '
'.$fields.$combination.'
'; // wrap the header, fields and combination part of a child record with a div container - $out = '
' . $out . '
'; + $class = 'inlineDiv'.($this->fObj->clientInfo['BROWSER']=='msie' ? 'MSIE' : '').($isNewRecord ? ' inlineIsNewRecord' : ''); + $out = '
' . $out . '
'; // Remove the current level also from the dynNestedStack of TCEforms: $this->fObj->popFromDynNestedStack(); diff --git a/typo3/stylesheet.css b/typo3/stylesheet.css index a3dee7ddcd13..d93979021c43 100755 --- a/typo3/stylesheet.css +++ b/typo3/stylesheet.css @@ -297,7 +297,7 @@ TABLE.typo3-TCEforms DIV.typo3-TCEforms-diffBox-header { background-color: red; table.typo3-TCEforms div.typo3-dyntabmenu-tabs { margin-top: 10px; } /* TCEforms Inline-Relational-Record-Editing */ -.typo3-TCEforms DIV.inlineDiv { display: inline-block; } +.typo3-TCEforms DIV.inlineDivMSIE { display: inline-block; } /* Element Browser / RTE link selection: */ TABLE#typo3-curUrl { font-weight: bold; width: 100%; margin-bottom: 2px; } -- 2.20.1