I have attached a screenshot of the display of date fields with admin module on add/edit node pages.

The admin module theme uses a form-item class for the display of fields. it includes the following css

style.css (line 570)
div.form-item 
{
border:1px solid #CCCCCC;
margin:0 0 10px;
padding:9px;
}

I would be nice, for consistency, to have this css apply to the date field container. It is currently overridden by form-item applying to the next nested div, with the margin and padding over-riden by

date.css (line 9)
.container-inline-date .form-item
{
float:none;
margin:0;
padding:0;
}

I am creating a similar post in the admin module queue, with CSS to override the date module settings. I will come back and post the link

Comments

avolve’s picture

StatusFileSize
new33.72 KB

attaching screenshot & link to admin module post — http://drupal.org/node/702032

thekevinday’s picture

StatusFileSize
new2.95 KB

I specifically needed to override individual date containers.
I have just made a patch that allows this such that the following css can be used:

div#edit-field-myfield-0-value-container {
  display:  inline-block;
  position: relative;
}
damienmckenna’s picture

Issue summary: View changes
Status: Active » Closed (won't fix)

Unfortunately the Drupal 6 version of the Date module is no longer supported. That said, we appreciate that you took time to work on this issue. Should this request still be relevant for Drupal 7 please feel free to reopen it. Thank you.