I posted a (minor) issue with the date module, including a screenshot — #node/702026

The date field does not display the same as other fields on the node add/edit pages due to the markup it produces — the form-item class is nested one level below the other elements..

The following CSS, added to the admin module stylee.css provides a workaround

.container-inline-date .form-item
{
margin: 0 0 10px;
padding: 9px;
}
  
.container-inline-date 
{
margin-right: 0;
}