I noticed in the admin_menu_adminimal.css file there's the following lines:
/* Import the Open Sans webfont from Google CDN */
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300&subset=latin,greek,cyrillic,vietnamese);
On an SSL site, this is being called and causing an SSL error, i.e. this page has insecure content. Now, the page displays for for modern browsers, but IE won't work right with this error unless using compatibility mode, and it still gives an insecure content message.
How about change this @import css to the following:
/* Import the Open Sans webfont from Google CDN */
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300&subset=latin,greek,cyrillic,vietnamese);
Similar issue with the Adminimal Theme --> https://drupal.org/node/2030769
Comments
Comment #1
realityloop commentedAttached patch should fix this
Comment #2
realityloop commented