Version Description
- Changes in all versions:
- Fix. Border cell issues at mobile devices
Download this release
Release Info
Developer | wpdevelop |
Plugin | Booking Calendar |
Version | 9.4.1 |
Comparing to | |
See all releases |
Code changes from version 9.4 to 9.4.1
- css/calendar.css +32 -6
- css/client.css +1 -0
- readme.txt +5 -1
- wpdev-booking.php +2 -2
css/calendar.css
CHANGED
@@ -792,12 +792,38 @@ div#datepick-div textarea {
|
|
792 |
* Fix border width issue in Chrome browser
|
793 |
* https://stackoverflow.com/questions/71674803/html-tables-has-a-weird-bold-horizontal-line-due-to-border-collapse-property/71703247#71703247
|
794 |
*/
|
795 |
-
div.datepick-inline table.datepick,
|
796 |
-
div.datepick-inline table.datepick th,
|
797 |
-
div.datepick-inline table.datepick td {
|
798 |
-
border-width: 0.01px;
|
799 |
-
}
|
800 |
div.datepick-inline table.datepick {
|
801 |
border-collapse: collapse;
|
802 |
border-spacing: 0;
|
803 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
792 |
* Fix border width issue in Chrome browser
|
793 |
* https://stackoverflow.com/questions/71674803/html-tables-has-a-weird-bold-horizontal-line-due-to-border-collapse-property/71703247#71703247
|
794 |
*/
|
|
|
|
|
|
|
|
|
|
|
795 |
div.datepick-inline table.datepick {
|
796 |
border-collapse: collapse;
|
797 |
border-spacing: 0;
|
798 |
+
}
|
799 |
+
/* Chrome, Safari, AND NOW ALSO the Edge Browser and Firefox - it's for mobile devices: */
|
800 |
+
@media screen and (-webkit-min-device-pixel-ratio:0) {
|
801 |
+
div.datepick-inline table.datepick,
|
802 |
+
div.datepick-inline table.datepick th,
|
803 |
+
div.datepick-inline table.datepick td {
|
804 |
+
border-width: 0.69px;
|
805 |
+
}
|
806 |
+
}
|
807 |
+
|
808 |
+
/* Chrome 29+ */
|
809 |
+
@media screen and (-webkit-min-device-pixel-ratio:0)
|
810 |
+
and (min-resolution:.001dpcm) {
|
811 |
+
div.datepick-inline table.datepick,
|
812 |
+
div.datepick-inline table.datepick th,
|
813 |
+
div.datepick-inline table.datepick td {
|
814 |
+
border-width: 0.01px;
|
815 |
+
}
|
816 |
+
}
|
817 |
+
/* Chrome 22-28 *
|
818 |
+
@media screen and(-webkit-min-device-pixel-ratio:0) {
|
819 |
+
div.datepick-inline table.datepick {-chrome-:only(;
|
820 |
+
border-width: 0.01px;
|
821 |
+
);}
|
822 |
+
div.datepick-inline table.datepick th {-chrome-:only(;
|
823 |
+
border-width: 0.01px;
|
824 |
+
);}
|
825 |
+
div.datepick-inline table.datepick td {-chrome-:only(;
|
826 |
+
border-width: 0.01px;
|
827 |
+
);}
|
828 |
+
}
|
829 |
+
*/
|
css/client.css
CHANGED
@@ -226,6 +226,7 @@ form.booking_form {
|
|
226 |
.booking_form_div img.captcha_img {
|
227 |
vertical-align: middle;
|
228 |
box-shadow: none;
|
|
|
229 |
}
|
230 |
.booking_form_div .captachinput {
|
231 |
width: 120px;
|
226 |
.booking_form_div img.captcha_img {
|
227 |
vertical-align: middle;
|
228 |
box-shadow: none;
|
229 |
+
margin-left: 1em;
|
230 |
}
|
231 |
.booking_form_div .captachinput {
|
232 |
width: 120px;
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: booking calendar, booking system, availability calendar, events calendar,
|
|
5 |
Requires at least: 4.0
|
6 |
Requires PHP: 5.6
|
7 |
Tested up to: 6.1
|
8 |
-
Stable tag: 9.4
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -232,6 +232,10 @@ Please see [Video Guides](https://wpbookingcalendar.com/help/).
|
|
232 |
|
233 |
|
234 |
== Changelog ==
|
|
|
|
|
|
|
|
|
235 |
= 9.4 =
|
236 |
- Changes in **all** versions:
|
237 |
* **New**. Update styles of calendar skins. More clear and modern look. Defined minimum width for calendars. Adding padding between months in multi months view modes. (9.3.1.4)
|
5 |
Requires at least: 4.0
|
6 |
Requires PHP: 5.6
|
7 |
Tested up to: 6.1
|
8 |
+
Stable tag: 9.4.1
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
232 |
|
233 |
|
234 |
== Changelog ==
|
235 |
+
= 9.4.1 =
|
236 |
+
- Changes in **all** versions:
|
237 |
+
* **Fix**. Border cell issues at mobile devices
|
238 |
+
|
239 |
= 9.4 =
|
240 |
- Changes in **all** versions:
|
241 |
* **New**. Update styles of calendar skins. More clear and modern look. Defined minimum width for calendars. Adding padding between months in multi months view modes. (9.3.1.4)
|
wpdev-booking.php
CHANGED
@@ -7,7 +7,7 @@ Author: wpdevelop, oplugins
|
|
7 |
Author URI: https://wpbookingcalendar.com/
|
8 |
Text Domain: booking
|
9 |
Domain Path: /languages/
|
10 |
-
Version: 9.4
|
11 |
*/
|
12 |
|
13 |
/* Copyright 2009 - 2022 www.wpbookingcalendar.com (email: info@wpbookingcalendar.com),
|
@@ -29,7 +29,7 @@ Version: 9.4
|
|
29 |
if ( ! defined( 'ABSPATH' ) ) die( '<h3>Direct access to this file do not allow!</h3>' ); // Exit if accessed directly
|
30 |
|
31 |
|
32 |
-
if ( ! defined( 'WP_BK_VERSION_NUM' ) ) { define( 'WP_BK_VERSION_NUM', '9.4' ); }
|
33 |
if ( ! defined( 'WP_BK_MINOR_UPDATE' ) ) { define( 'WP_BK_MINOR_UPDATE', ! true ); }
|
34 |
|
35 |
if ( ! defined( 'WPBC_EXIST_NEW_BOOKING_LISTING' ) ) { define( 'WPBC_EXIST_NEW_BOOKING_LISTING', true ); } //FixIn: 9.2.1
|
7 |
Author URI: https://wpbookingcalendar.com/
|
8 |
Text Domain: booking
|
9 |
Domain Path: /languages/
|
10 |
+
Version: 9.4.1
|
11 |
*/
|
12 |
|
13 |
/* Copyright 2009 - 2022 www.wpbookingcalendar.com (email: info@wpbookingcalendar.com),
|
29 |
if ( ! defined( 'ABSPATH' ) ) die( '<h3>Direct access to this file do not allow!</h3>' ); // Exit if accessed directly
|
30 |
|
31 |
|
32 |
+
if ( ! defined( 'WP_BK_VERSION_NUM' ) ) { define( 'WP_BK_VERSION_NUM', '9.4.1' ); }
|
33 |
if ( ! defined( 'WP_BK_MINOR_UPDATE' ) ) { define( 'WP_BK_MINOR_UPDATE', ! true ); }
|
34 |
|
35 |
if ( ! defined( 'WPBC_EXIST_NEW_BOOKING_LISTING' ) ) { define( 'WPBC_EXIST_NEW_BOOKING_LISTING', true ); } //FixIn: 9.2.1
|