Hi I'm having an issue in that Admin menu does not auto-expand when I hover the mouse over 2nd level menu items. Its happening on two sites now - a D6 and a D7, both of which are using the latest version of core. I'm not sure if this is a bug, or if its me overlooking something obvious. Clearing the cache does not help. Would appreciate any advice on this.

Comments

roblog’s picture

Just to clarify, when I say 'not auto-expanding', what I actually mean is they're not expanding at all. If I hover over the top level menu item, I get a drop down list of 2nd level menu items. The items with three or more levels, have a small arrow to the right of them, but if I hover, or click on these nothing happens.

joachim’s picture

Title: Level three menu items not autoexpanding » Level three menu items not autoexpanding with Firefox 34
Version: 6.x-1.8 » 7.x-3.x-dev
Category: Support request » Bug report
Priority: Normal » Critical

I'm seeing the same thing since a couple of days ago. Happening on a fresh Drupal install.

Upping the version, since this happens on D7 too.

The only thing I can think of that's changed it my version of Firefox... :/

Yup! It's working fine on Chrome. Broken on D7 and D6 sites on Firefox.

roblog’s picture

Hi yes, I've just realised that its working for me in Chromium as well, but not in Firefox.

robinsf21’s picture

I can confirm that I'm having the same problem. The Admin_Menu level three menus are not expanding for me in Firefox but work perfectly in Chrome and IE. I'm developing on Aquia Drupal for Windows (Windows 7)

Firefox 34.0.5
Drupal 7.34
Administration Menu (admin_menu) 7.x-3.0-rc4

Chrome 39.0.2171.71

Internet Explorer 11.0.9600.17420

robinsf21’s picture

Additional Info:

The level 3 menus expand once enter the admin overlay. When I leave the admin overlay, they no longer expand.

Patrick Ryan’s picture

StatusFileSize
new643 bytes

It looks like a problem with the opacity. This patch removes the opacity from the 3rd level which fixes the problem on my sites.

Patrick Ryan’s picture

Status: Active » Needs review
Patrick Ryan’s picture

Status: Needs review » Closed (duplicate)
dd 85’s picture

The patch is successfully operating in: Firefox 34.0, Chrome 39.0, IE 11.0, Opera 26.0

robinsf21’s picture

Status: Closed (duplicate) » Fixed

Worked for me

thanks,

joachim’s picture

Status: Fixed » Closed (duplicate)

'Fixed' doesn't mean the patch works, it means a maintainer has committed it.

roblog’s picture

I finally fixed it .. only took me the whole day! Nothing to do with the admin_menu.css file in my case. Turned out to be a dodgy line in the html-reset.css file of the Zen subtheme:

ul,
ol {
margin-left: 0;
padding-left: 1.3em; /* LTR */
overflow:hidden;
}

Changed to:

ul,
ol {
margin-left: 0;
padding-left: 1.3em; /* LTR */
/* overflow:hidden;*/
}

BigMike’s picture

Thank you for all the help everyone. For my D6.34 and Admin Menu 6.x-1.8, it was the disabling of the opacity from line 27 of /admin_menu/admin_menu.css.

Regards,
BigMike