Skip to content

Sortable doesn't work inside of CSS container (container queries) #2255

Open
@blesa

Description

@blesa

In my project I use simple layout structure:

<div class="layout">
  <div class="sidebar">....menu....</div> <!-- cca 200px wide -->
  <div class="content">
    <div class="my-sortable-component-is-here">...</div>
  </div>
</div>

If I add container query CSS property "container-type: inline-size" to .content it breaks jQuery UI sortable behaviour. If I drag an item from the sortable div, the item immediately jumps some distance from the position of grab. The shift is probably the same distance as offset of div.content from the top left corner of the document. There is obviously a problem with calculation of position of dragged ghost element (displaced).

.content {
  container-type: inline-size;  /* This is problematic */
}

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions