Forked from MindyPostoff/woocommerce-bookings-styles.css
Last active
April 9, 2022 13:09
-
-
Save mikeyarce/518ddc84a846a11e57406850bfffd4ca to your computer and use it in GitHub Desktop.
Bookings Datepicker Color Styles
This file contains 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
/* | |
Modify the color styles of the WooCommerce Bookings datepicker calendar. | |
Add any/all of these styles to your theme's custom CSS, but be sure to change | |
the color hex codes to your choice. They're all black here. | |
*/ | |
/* Month header background color */ | |
#wc-bookings-booking-form .wc-bookings-date-picker .ui-datepicker-header { | |
background-color: #000000; | |
} | |
/* Previous/Next month arrow background color */ | |
#wc-bookings-booking-form .wc-bookings-date-picker .ui-datepicker .ui-datepicker-next, | |
#wc-bookings-booking-form .wc-bookings-date-picker .ui-datepicker .ui-datepicker-prev { | |
background-color: #000000; | |
} | |
/* Previous/Next month arrows if not allowed, and calendar dates that are not available */ | |
.ui-state-disabled, | |
.ui-widget-content .ui-state-disabled, | |
.ui-widget-header .ui-state-disabled { | |
opacity: 0.35; | |
} | |
/* Days of the week header background color */ | |
.ui-datepicker-calendar thead { | |
background-color: #000000; | |
} | |
/* Days of the week header font color */ | |
#wc-bookings-booking-form .wc-bookings-date-picker .ui-datepicker th { | |
color: #000000; | |
} | |
/* Past calendar days background color (not available) */ | |
.ui-datepicker-calendar tbody { | |
background-color: #000000; | |
} | |
/* Available calendar days background color */ | |
#wc-bookings-booking-form .wc-bookings-date-picker .ui-datepicker td.bookable a { | |
background-color: #000000 !important; | |
} | |
/* Available calendar day hover background color */ | |
#wc-bookings-booking-form .wc-bookings-date-picker .ui-datepicker td.bookable a:hover { | |
background-color: #000000 !important; | |
} | |
/* Fully booked calendar days */ | |
.wc-bookings-date-picker .ui-datepicker td.fully_booked a, | |
.wc-bookings-date-picker .ui-datepicker td.fully_booked span { | |
background-color: #000000 !important; | |
} | |
/* Days not bookable based on the availability rules */ | |
.wc-bookings-date-picker .ui-datepicker td.not_bookable { | |
background-color: #FFFFFF !important; | |
} | |
/* Today's date on calendar background color */ | |
#wc-bookings-booking-form .wc-bookings-date-picker .ui-datepicker td.ui-datepicker-today a { | |
background-color: #000000 !important; | |
} | |
/* Partially Booked Red Triangle */ | |
.wc-bookings-date-picker .ui-datepicker td.partial_booked a:before { | |
border-top: none; /* This style removes the red triangle */ | |
} | |
/* Time Blocks */ | |
#wc-bookings-booking-form .block-picker li a { | |
background-color: #FFFFFF !important; | |
} | |
/* Time Blocks Hover */ | |
#wc-bookings-booking-form .block-picker li a:hover { | |
background-color: #000000 !important; | |
} | |
/* Selected Date*/ | |
#wc-bookings-booking-form .wc-bookings-date-picker .ui-datepicker td.ui-datepicker-current-day a { | |
background-color: #000000 !important; | |
} |
I'm using Barcodes for bookings, is there any way of changing the wp-admin/bookings/calendar booking colour when an booking is 'checked in'?
How to Customize color calendar booking by status order.
For example :
order status : On Hold : Color Blue
Order status : Proccesing : Color Orange
Order status : Complete : Color Green.
I Hope u understand that i want. please help me
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you very much for all the info. I was wondering..How can the color of the selected block be changed. I don't see it listed on the document. Also, how do you change the color of the background of the price that appears once a date and block is selected???