Found with: firefox 2.0.0.15
Date field widget: text field, no jquery date selector

In the add/edit form the text field following the date field is partly covering the input field. This is due to a float on .container-inline-date .form-item
Temporarily fixed this by adding a display: table to .container-inline-date But better solutions may be available.

.container-inline-date {
  clear:both;
  width:auto;
  display:table;
}
CommentFileSizeAuthor
after the fix9.68 KBSutharsan
before the fix8.05 KBSutharsan
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

KarenS’s picture

This comes from a recent feature request to float the dates so that the from and to dates will float next to each other if there's room. So now we have more floating than we really want. This fix would more or less take things back to the original state -- the dates never float. I have to think about whether there's a way to fix the 'wrong' floats and leave the 'right' ones alone.

KarenS’s picture

Status: Active » Fixed

I committed a fix that I hope will work by introducing a default behavior of not floating with an option to let them float that is only used when there are two dates together.

Grantovich’s picture

Status: Fixed » Active

If the intention of this fix was to keep the input fields all on one line (as it was in RC2), I don't think it worked. Using the latest release in Firefox, Safari, and Opera, my date inputs are now stacked on top of each other, like this:

From date:
[date input]
[time input]

To date:
[date input]
[time input]

KarenS’s picture

Status: Active » Fixed

Found the mistake that kept the date parts from floating together. It need a small change in the css to change .date-clear-block .form-item to just .date-clear-block.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.