I noticed that when I hover over a menu item that has submenu items, the color of the text changes to green for a second. I only see this in firefox. Where in the css is this green coming from. I attached an image showing the green highlighting in firefox.

CommentFileSizeAuthor
green.jpg10.3 KBbeyond67
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

aimutch’s picture

Which version of Firefox are you using?

beyond67’s picture

Version 3.6.3

red18’s picture

I have exactly the same problem, I am also using 3.6.3.

Initially changing external links to internal links solved the problem, but now the links are green again. I am using Firefox 3.5.9

Jacine’s picture

Status: Active » Postponed (maintainer needs more info)

This is the weirdest problem... Is it still happening? Tell me what versions and OS you are on if so.

danielpd’s picture

This is happening on my site. The parent menu item turns green while waiting on the delayed sub menu items to drop down. Once the items have dropped down, everything looks normal. This only happens in Firefox. I am using Windows 7 with Firefox version 3.6.13. If this can't be figured out, can someone show me how to disable to delayed menu drop effect? If I could turn that off until the green is fix it would not be that noticeable. Thanks.

Jacine’s picture

Category: support » bug
Status: Postponed (maintainer needs more info) » Active

Aha! Finally, someone gives me a good bug report and I'm able to reproduce this crazy bug. Thank you @danielpd.

This appears to be a Windows/Firefox only problem. It can be fixed by removing the opacity: 0.999 line in this rule. This line was needed to fix another bug in Firefox 2, but I think we can drop support for FF2 anyway at this point. I'll commit a fix in the next release.

So, change this:

#navigation ul {
    line-height: 2.75em;
    list-style: none;
    opacity: 0.9999;
}

to:

#navigation ul {
    line-height: 2.75em;
    list-style: none;
}
Jacine’s picture

Status: Active » Fixed

The fix has been committed. Thanks again!

http://drupal.org/cvs?commit=495898 :)

danielpd’s picture

No, thank you. The fix worked perfect. ;)

Status: Fixed » Closed (fixed)

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