Admin CSS Action

Add a bit of css or other code to admin section using this action.

Code Markup
add_action('admin_head', 'admin_styles');

function admin_styles() {
  echo '
  .some-admin-style {
  position: absolute;
  top: -39px;
  right: 32px;
  margin: 0;
  padding: 0;
}
  ';
}