Actions
Bug #98619
closedNot possible to click the new CE button if CE is current active target in URL
Start date:
2022-10-14
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
12
PHP Version:
8.1
Tags:
CSS, Backend
Complexity:
Is Regression:
Sprint Focus:
Description
If a content element is the current active target in the backend URL, the "New Content Element" button above this content element can not be clicked anymore.
This is because of a css style that uses a pseudoelement selector to create an invisible container above the button in file EXT:backend/Resources/Public/Css/backend.css
:
:target::before {
content: "";
display: block;
height: 80px;
margin: -80px 0 0;
}
For example if the content element with id 6 has been edited and closed the backend URL looks like:
https://domain.tld/typo3/module/web/layout?id=1#element-tt_content-6
This causes the red area to be unclickable in the image shown below.
Files
Actions