btw, you can mark this resolved if you like.
It is quite possible the issue is being caused by my theme, or the peculiar screen resolution of the laptop I am using, however, if anyone else stumbles upon this thread with the same question, then the way I have made it look prettier is by adding a bit of Admin side CSS to the functions.php of my child theme, like this:
function my_custom_admin_styles() {
echo '<style>
/*Add a bit of space beneath the Conditional Widgets Title Bar*/
.widget.open .widget-content { margin-bottom: 10px; }
/*Change the overflow scroll to Resize instead and make the height auto*/
.widget.open .widget-content #cets-conditional-widget .conditional-widgets-checkbox-wrapper { height: auto; resize: both; overflow: hidden; }
</style>';
}
add_action('admin_head', 'my_custom_admin_styles');
Also just a note of thanks for making the plugin available to the community, it seems to work very well!
Yeah, tweaking up the Admin look has been on the ‘someday’ list. The Dashboard has gotten a few facelifts and I haven’t been able to keep up.
Cheers