* (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 <stanislas.rolland@fructifor.ca>
$out = '<div id="'.$formFieldNames.'_header">'.$header.'</div>';
$out .= '<div id="'.$formFieldNames.'_fields"'.$appearanceStyleFields.'>'.$fields.$combination.'</div>';
// wrap the header, fields and combination part of a child record with a div container
- $out = '<div id="'.$formFieldNames.'_div" class="inlineDiv'.($isNewRecord ? ' inlineIsNewRecord' : '').'">' . $out . '</div>';
+ $class = 'inlineDiv'.($this->fObj->clientInfo['BROWSER']=='msie' ? 'MSIE' : '').($isNewRecord ? ' inlineIsNewRecord' : '');
+ $out = '<div id="'.$formFieldNames.'_div" class="'.$class.'">' . $out . '</div>';
// Remove the current level also from the dynNestedStack of TCEforms:
$this->fObj->popFromDynNestedStack();
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; }