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

CommentFileSizeAuthor
#1 insecure-content-2030773-1.patch732 bytesrealityloop

Comments

realityloop’s picture

Status: Active » Needs review
StatusFileSize
new732 bytes

Attached patch should fix this

realityloop’s picture

Status: Needs review » Fixed

Status: Fixed » Closed (fixed)

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