- πΊπΈUnited States RichardDavies Portland, Oregon
Rerolled patch for Drupal 10.3.1.
Autocomplete form breaks wrapping container
Just add a multi-value entity reference field with autocomplete widget to a node form and resize window.
The wrapping element "div.claro-autocomplete" is an inline-block. The inner "input.form-element" is styled with max-width, what is not working.
The following CSS solves the problem.
.claro-autocomplete .form-element {
width: 100%;
max-width: 40rem;
}
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Rerolled patch for Drupal 10.3.1.