When I have admin menu turned on and am logged in, it works fine in firefox, chrome, etc.
screenshot in firefox

But in IE11, all I see is a black screen on every page with the menu bar at the top.
ie 11 screenshot
viewing the code shows all items on the page are present but underneath the admin menu overlay.

I have to support users who use IE, so just going with another browser is not an option.
Any ideas/help is appreciated.

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

kwfinken’s picture

Issue summary: View changes
Mschudders’s picture

Status: Active » Patch (to be ported)
FileSize
249 bytes

Patch attached.

This fixes the issue.

kenorb’s picture

Status: Patch (to be ported) » Needs review
nightlife2008’s picture

This does not solve the problem as far as I can see in my project.

However, overriding the following CSS does work in IE11:

body.admin-menu #admin-menu .dropdown li {
  height: auto;
}
baekelandt’s picture

Status: Needs review » Reviewed & tested by the community

I've got the same issue on one of the sites I work on. Patch #2 works fine for me, thnx!

renatog’s picture

The patch works good.

Thank you very much for your help.

  • RenatoG committed 1a9faf4 on 7.x-3.x authored by Mschudders
    Issue #2492947 by Mschudders, kwfinken, nightlife2008, RenatoG,...
renatog’s picture

Committed to the dev branch.

Thank you all

renatog’s picture

Status: Reviewed & tested by the community » Fixed

Status: Fixed » Closed (fixed)

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

DD 85’s picture

Version: 7.x-3.0-rc5 » 7.x-3.0-rc6

This patch # 2 change breaks the appearance of the Admin Menu in all browsers if the Admin Menu is used without the Toolbar core module. Therefore, this change must be undone.
Add specific styles for IE11 should be using JS or special hacks for IE11.

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {  
   /* IE10+ specific styles go here */
}