Bug #95522
closedmissing styles for typo3-docbody in backend.css
0%
Description
In our backend module layout there is the familiar HTML structure:
<div id="typo3-docbody"> <div id="typo3-inner-docbody"> <f:flashMessages /> <f:render section="content" /> </div> </div>
But in version 11.5 (first trial with 11 - no clue about the behaviour of 11.4) in the backend.css the styles for #typo3-docbody are missing. This leads to overlapping of content with the doc header.
In version 10 there are these lines (expanded backend.css)
div#typo3-docbody { bottom: 0; overflow: auto; position: absolute; top: 51px; width: 100% } @media print { div#typo3-docbody { overflow: visible } }
Files
Updated by Benni Mack about 3 years ago
Hey,
this structure was used in TYPO3 v7 (DocumentTemplate) but was replaced with `class="module"` and `class="module-body"` in TYPO3 v8, so I guess the old stylings are gone.
Updated by Thorsten Born almost 3 years ago
Benni Mack wrote in #note-1:
Hey,
this structure was used in TYPO3 v7 (DocumentTemplate) but was replaced with `class="module"` and `class="module-body"` in TYPO3 v8, so I guess the old stylings are gone.
Thanks, Benni.
You are right: I have finally been able to adapt the backend template.
So the ticket can be closed.