Project

General

Profile

Actions

Bug #95522

closed

missing styles for typo3-docbody in backend.css

Added by Thorsten Born over 2 years ago. Updated over 2 years ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Backend User Interface
Target version:
-
Start date:
2021-10-07
Due date:
% Done:

0%

Estimated time:
TYPO3 Version:
11
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:

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

typo3-bug-be-backend-css--20211007.jpg (155 KB) typo3-bug-be-backend-css--20211007.jpg Screenshot with chrome devTools to show the overlapping and missing styles Thorsten Born, 2021-10-07 13:10
Actions #1

Updated by Benni Mack over 2 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.

Actions #2

Updated by Thorsten Born over 2 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.

Actions #3

Updated by Benni Mack over 2 years ago

  • Status changed from New to Closed

Thanks for the feedback

Actions

Also available in: Atom PDF