This is a CSS file you include with WordPress plugins or themes to make the jQuery UI Datepicker widget match WordPress color schemes. It's goal is to make the jQuery UI Datepicker widget look as natural as possible inside of the WordPress dashboard.
As new color schemes are introduced and old ones are updated, this file will be maintained to match.
It is updated for changes to WordPress 5.7 colors.
It is used by the Sugar Calendar plugin for WordPress, if you'd like an example.
The following screenshots show off what this CSS file looks like in the Sugar Calendar plugin.
No, it's just a CSS file.
You'll want to include this in your plugin & enqueue it however you feel is best.
Probably something like:
/**
* Enqueue calendar styles
*
* @since 0.1.0
*/
function enqueue_my_calendar_styles() {
// Enqueue the datepicker JS
wp_enqueue_script( 'jquery-ui-datepicker' );
// Enqueue the datepicker CSS
wp_enqueue_style( 'my-jquery-ui-datepicker', dirname( __FILE__ ) . '/datepicker.css' );
}
add_action( 'admin_head', 'enqueue_my_calendar_styles' );
But you'll want to basically rename all of this to fit your needs, and if you're reading this, chances are you already know how to do this bit.
- All WordPress color schemes (including Modern)
- Both bbPress color schemes (Evergreen, Mint)
- Current day (light yellow)
- Selected day (green)
- Hover days (matched to scheme)
- Disabled days (opacity 50%)
- Adjacent month days (opacity 30%)
- Naturally responsive (this could be improved)
https://github.com/stuttter/wp-datepicker-styling/discussions
Yes, please!