﻿id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc
23240,#post-body-content gap with one custom metabox,soulseekah,helen,"Gap before metabox when post type does not support title and editor, the #post-body-content div is empty but has a 20px margin which makes any next metabox unaligned. Probably shouldn't be displayed at all.

{{{
add_action( 'init', function() { register_post_type( 'test', array( 'supports' => array( 'nothing' ), 'public' => true ) ); } );
add_action( 'add_meta_boxes', function() {
add_meta_box(
	'edit-ui', 'Test UI', function() {
		echo '<p>Feeling a bit too heavy...</p>';
	}, 'test', 'normal', 'core' );
} );
}}}

Attached image shows it all, highlighting parts in yellow.",defect (bug),closed,normal,3.6,Administration,3.5,minor,fixed,ui-focus,kovshenin mdhansen@… eric@… israel@… Ken@…
