Folder icons are broken under IE8 and IE7. The fix is easy. Just some CSS changes and everything goes right.
Add the following lines into the file media_browser_plus.admin.css

#folder li {
  list-style-type: none;
  margin: 2px 2px 2px 0px;
  margin-top: 4px;
+ width: 98%;
}

#folder li.folder > div.icon { 
  background-image: url(../images/icons/folder.png);
  float: left;
  margin-right: 6px;
  width: 24px;
+ height: 24px;
+ display: block;
}

Comments

boychev’s picture

And here is the patch.

boychev’s picture

Status: Active » Needs review

Please review the patch from the above comment. Thanks!

das-peter’s picture

Thank you very much for the patch, I guess you tested the behavior with the changes in "non-stupid" browsers as well?
However, may I ask you to you give MBP 3.0 beta1 a try? I tested it only with IE10 and there it works quite well.
My goal is to discontinue the support for version 2.x as soon as possible.

boychev’s picture

Yes, I have tested it in chrome and firefox as well.

das-peter’s picture

Status: Needs review » Fixed

I had some trouble to apply the patch so I had to do it manually. However, changes applied, committed and pushed: http://drupalcode.org/project/media_browser_plus.git/commit/7c50f12
Congrats on your first attributed git commit :)

Status: Fixed » Closed (fixed)

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