All Projects → stuttter → wp-datepicker-styling

stuttter / wp-datepicker-styling

Licence: GPL-2.0 License
jQuery UI Datepicker styling to match WordPress color schemes

Programming Languages

SCSS
7915 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to wp-datepicker-styling

react-picky-date-time
A react component for date time picker. Online demo examples
Stars: ✭ 41 (-47.44%)
Mutual labels:  datepicker
vue-persian-datepicker
A datepicker component for select Persian date
Stars: ✭ 23 (-70.51%)
Mutual labels:  datepicker
ng-sq-ui
Flexible and easily customizable UI-kit for Angular 11+
Stars: ✭ 99 (+26.92%)
Mutual labels:  datepicker
nepali date picker
Material Style Date Picker with Bikram Sambat(Nepali) Calendar Support. Supports both Android and ios.
Stars: ✭ 30 (-61.54%)
Mutual labels:  datepicker
pr-title-checker
An action to automatically check if pull request titles conform to Contribution Guidelines
Stars: ✭ 38 (-51.28%)
Mutual labels:  styling
ember-cli-daterangepicker
Just a simple component to use bootstrap-daterangepicker.
Stars: ✭ 32 (-58.97%)
Mutual labels:  datepicker
vue3-datepicker
Simple datepicker component for Vue 3
Stars: ✭ 93 (+19.23%)
Mutual labels:  datepicker
date-time-picker
Angular Date Time Picker (Responsive Design)
Stars: ✭ 98 (+25.64%)
Mutual labels:  datepicker
material-datepicker
Material Datepicker
Stars: ✭ 29 (-62.82%)
Mutual labels:  datepicker
react-native-infinite-calendar
WIP: React native port of react-infinite-calendar
Stars: ✭ 43 (-44.87%)
Mutual labels:  datepicker
DatePicker
html价格日历控件
Stars: ✭ 21 (-73.08%)
Mutual labels:  datepicker
PagerDatePicker
PagerDatePicker for Android
Stars: ✭ 82 (+5.13%)
Mutual labels:  datepicker
ak-vue3
组件库包含了 AutoForm 自动表单、BackTop 返回顶部、Breadcrumb 面包屑、 Button 按钮、Cascader 级联选择器、Checkbox 多选框、Collapse 折叠面板、ColorPicker 颜色选择器、DataPicker 时间选择器、Dialog 弹层对话框、Alert 弹框、Echarts 图形图表、Form 表单、Input 输入框、Lazy 图片延时加载、Loading 加载等待、Menu 菜单、Pagination 分页、Progress 进度条、Radio 单选框、Select 选择器、Steps 步骤条、Swiper 图片轮播、Switch 开关、Table 表格、Tabs 标签页、Textarea 文本框、Tooltip 提示、Tr…
Stars: ✭ 24 (-69.23%)
Mutual labels:  datepicker
ionic4-date-picker
Calendar date picker for Ionic4 apps
Stars: ✭ 24 (-69.23%)
Mutual labels:  datepicker
inquirer-datepicker-prompt
Datepicker prompt for inquirer.js
Stars: ✭ 24 (-69.23%)
Mutual labels:  datepicker
vue-pikaday
VueJS wrapper component for Pikaday datepicker
Stars: ✭ 37 (-52.56%)
Mutual labels:  datepicker
awesome-web-styling
Awesome Web Styling with CSS Animation Effects ⭐️
Stars: ✭ 109 (+39.74%)
Mutual labels:  styling
ra-compact-ui
Enhanced components for popular framework react-admin. Helps reducing the styling boilerplate code and eases layout customizations.
Stars: ✭ 77 (-1.28%)
Mutual labels:  styling
chakra-dayzed-datepicker
Chakra UI + Dayzed = datepicker
Stars: ✭ 44 (-43.59%)
Mutual labels:  datepicker
vuejs3-datepicker
vue 3 datepicker. supports disabling, highlighting of dates and programmatic access of date.
Stars: ✭ 23 (-70.51%)
Mutual labels:  datepicker

jQuery UI Datepicker CSS for WordPress

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.

Screenshots

The following screenshots show off what this CSS file looks like in the Sugar Calendar plugin.

Fresh

Fresh

Light

Light

Modern

Modern

Blue

Blue

Coffee

Coffee

Ectoplasm

Ectoplasm

Midnight

Midnight

Ocean

Ocean

Sunrise

Sunrise

Evergreen

Evergreen

Mint

Mint

FAQ

Is this a WordPress plugin?

No, it's just a CSS file.

You'll want to include this in your plugin & enqueue it however you feel is best.

How will I use it, then?

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.

What exactly is supported?

  • 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)

Where can I get support?

https://github.com/stuttter/wp-datepicker-styling/discussions

Can I contribute?

Yes, please!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].