Autocoplete popups partially cover autocomplete fields (see attached screenshot).

pixture_reloaded.css:

input {
  margin: .5em 0;
  max-width: 100%;
}

That solved the problem for me:

input {
  margin: 0;
}

...or:

input.form-autocomplete {
  margin: 0;
}
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

quotesBro’s picture

quotesBro’s picture

Issue summary: View changes
Status: Active » Needs review
Jeff Burnz’s picture

Good catch, thought I had fixed this ages ago, seems we may have a regression here - I'll apply and commit this shortly. Cheers!

kalyansamanta’s picture

Status: Needs review » Reviewed & tested by the community

@quotesBro Thanks. Applied patch now looks good.