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.
| Comment | File | Size | Author |
|---|---|---|---|
| #6 | admin_menu-remove-opacity-2387761-0.patch | 643 bytes | Patrick Ryan |
Comments
Comment #1
roblogJust 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.
Comment #2
joachim commentedI'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.
Comment #3
roblogHi yes, I've just realised that its working for me in Chromium as well, but not in Firefox.
Comment #4
robinsf21 commentedI 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
Comment #5
robinsf21 commentedAdditional Info:
The level 3 menus expand once enter the admin overlay. When I leave the admin overlay, they no longer expand.
Comment #6
Patrick Ryan commentedIt looks like a problem with the opacity. This patch removes the opacity from the 3rd level which fixes the problem on my sites.
Comment #7
Patrick Ryan commentedComment #8
Patrick Ryan commentedDuplicate of https://www.drupal.org/node/2360249
Comment #9
dd 85 commentedThe patch is successfully operating in: Firefox 34.0, Chrome 39.0, IE 11.0, Opera 26.0
Comment #10
robinsf21 commentedWorked for me
thanks,
Comment #11
joachim commented'Fixed' doesn't mean the patch works, it means a maintainer has committed it.
Comment #12
roblogI 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;*/
}
Comment #13
BigMike commentedThank 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