@ William
Ok, I see this is happening in the admin add/edit form… the reason is because another plugin is messing with core admin styles. Which one, I can not be certain because of the way it is being done.
I was able to force the display to be correct by adding a style override to the cn-admin.min.css file:
div.widget-inside {
display: block;
}
The thing is, next Connections update you will lose this change and it’ll have to be re-added.
The better solution would be to toggle plugins off/on until you can find the plugin that is overriding a core WP admin style. Once it is identified, you’d have to ask that plugins support to fix their plugin so it does not override core WP styles globally in the admin. My guess it is the same plugin that causes that blue/black flicker on every admin page load too.
Hope that helps!
