Actions
Bug #103536
openBackend Page Module - drag-n-drop of Content Elements has display glitch with EXT:container
Status:
Under Review
Priority:
Should have
Assignee:
-
Category:
Backend User Interface
Target version:
-
Start date:
2024-04-04
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
12
PHP Version:
Tags:
UX
Complexity:
Is Regression:
Sprint Focus:
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
Actions