Bug #103536
openBackend Page Module - drag-n-drop of Content Elements has display glitch with EXT:container
0%
Description
There is a display glitch for using drag-n-drop with EXT:container - see https://github.com/b13/container/issues/490
This is fixable by removing an unnecessary position: relative
in the core.
.t3-page-ce {
position: relative;
}
There are no child elements inside .t3-page-ce
that use position: absolute
.
The element .t3-page-ce
has none of the properties top
, right
, bottom
, left
or z-index
.
So position: relative
can be omitted resulting in the default position: static
.
Introduced by [TASK] Do not use jQuery and jQuery UI in page module drag&drop
Updated by Ayke Halder 8 months ago
Additionaly this can be removed as the corresponding JavaScript is no more.
.t3-page-ce.active-drag {
z-index: 4500;
}
Related to #58473
Updated by Gerrit Code Review 8 months ago
- Status changed from New to Under Review
Patch set 1 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/83650
Updated by Riccardo De Contardi 7 months ago
- Related to Task #101085: Problems with Drag & Drop in Page layout added
Updated by Gerrit Code Review about 1 month ago
Patch set 2 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/83650
Updated by Gerrit Code Review about 1 month ago
Patch set 3 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/83650