Dumb Details
Here’s a thing—or two—that just had to be fixed. (I know, I’m terrible.)


Oh, and the actual fix:
<?php
/**
* WP Admin CSS tweaks.
*/
add_action( 'admin_head', function() {
?>
<style rel="stylesheet" type="text/css" media="all">
#post_name {
/* Widens the Edit Post screen's "Slug" field. */
width: calc(100% - 2px);
}
#post-type-display {
/* Post Type Switcher, for consistency. */
font-weight: 600;
}
</style>
<?php
}, 99 );
… liked this!
Via diggingthedigital.com, in reply to .