Created
May 3, 2016 08:01
-
-
Save andreasvirkus/5cc412c83982990c49646cd6d98822a2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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