Skip to content

Instantly share code, notes, and snippets.

@digisavvy
Last active March 10, 2023 22:40
Show Gist options
  • Save digisavvy/c890438eda23d4435f74586c274f86cc to your computer and use it in GitHub Desktop.
Save digisavvy/c890438eda23d4435f74586c274f86cc to your computer and use it in GitHub Desktop.
// Restyle admin menu separators
function dgs_separators() {
echo '<style type="text/css">#adminmenu li.wp-menu-separator {margin: 0; background: #444;}</style>';
echo '<style type="text/css">.editor-styles-wrapper .icon-bullet .wp-block-group__inner-container { display: inherit !important; }</style>';
}
add_action( 'admin_head', 'dgs_separators' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment