Project

General

Profile

Bug #103536

Updated by Ayke Halder about 1 month ago

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. 

 <pre><code class="css"> 
 .t3-page-ce { 
     position: relative; 
 } 
 </code></pre> 

 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":https://review.typo3.org/c/Packages/TYPO3.CMS/+/75887

Back