Skip to content

Instantly share code, notes, and snippets.

@andreasvirkus
Created May 3, 2016 08:01
Show Gist options
  • Save andreasvirkus/5cc412c83982990c49646cd6d98822a2 to your computer and use it in GitHub Desktop.
Save andreasvirkus/5cc412c83982990c49646cd6d98822a2 to your computer and use it in GitHub Desktop.
// Add inline styles to WP admin
add_action('admin_head', 'colorpicker_styles');
function colorpicker_styles() {
echo '<style>
.wp-picker-container .iris-picker {
height: 50px !important;
padding-top: 15px;
}
.iris-picker .iris-palette {
width: 25px !important;
height: 25px !important;
margin: 0 5px 5px 0 !important;
}
.wp-picker-input-wrap .cmb2-text-small,
.iris-picker-inner,
.my-color-field {
display: none !important;
}
</style>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment