Replies: 0
Version 1.0.17 seems to have introduced a major conflict with WP dashboard. The plugin seems to insert a few divs with the following classes that cover the dashboard elements:
.media-frame-title
.media-frame-router
.media-frame-content
.media-frame-toolbar
<div class=’media-frame-content”></div> has the following CSS that creates a nearly screen-wide white blank div over the content of the dashboard (Pages, Media, etc) and makes the underlying dashboard elements invisible.
.media-frame-content {
top: 84px;
bottom: 61px;
width: auto;
margin: 0;
overflow: auto;
background: #fff;
border-top: 1px solid #ddd;
}
.media-frame-content, .media-frame-toolbar {
left: 200px;
height: auto;
position: absolute;
right: 0;
}