It appears that the dropdown doesn't work in Firefox, when entering Date CCK fields: when selecting, you can use the arrow keys to navigate through the timezone selections, but the list won't actually drop-down. It functions normally in IE7. (Not sure yet about other browsers).

Comments

aaron’s picture

The timezone selector works fine for user account settings, although I'm sure it uses another API.

aaron’s picture

works fine in ie6 and safari too; it's only broken in linux/ff3.0.4 & xp/ff 3.0.4

aaron’s picture

odd; i just diff'd the options between the date's timezone field and the account settings field, and there's no difference. i'll see what happens on a new installation and report back.

aaron’s picture

removing class .date-clear-block solves the issue for me. not sure if it's a conflict in our css or not; let me see in the zen and garland themes.

aaron’s picture

happens in garland and zen as well. must be a problem with the css in date.css for .date-clear-block.

aaron’s picture

It's this section in date.css causing the problem, and specifically content: " ";. If I comment out that line, it works fine. I would make a patch for it, but am not sure of other unintended side effects.

/*
 ** Markup free clearing that fixes unwanted scrollbars
 ** @see http://drupal.org/node/232959
 */
 .date-clear-block:after {
   content: " "; 
   display: block;
   height: 0;
   clear: both;
   visibility: hidden;
 }
aaron’s picture

Reading #232959: design issue - the scrollbar is shown on date cck field and it has wrong layout in Opera browser, looks like this was added as an alternative to clearfix. Must be a problem with that solution in relation to selects. Is there a reason we add the class to this select? Might be easiest to simply remove it from that form element.

aaron’s picture

KarenS’s picture

Status: Active » Fixed

It looks like there is no problem removing it from the timezone element, it was a problem for the 'from' and 'to' dates.

drewish’s picture

humm... just cvs up'd DRUPAL-6--2 and i'm still seeing this issue. any suggestions? or do i need to update calendar too?

Status: Fixed » Closed (fixed)

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

e2thex’s picture

This issue still exists