PluginProbe
Booking Calendar / 11.8.4
Booking Calendar v11.8.4
11.8.4 11.8.3 11.8.2 11.8.1 11.8 11.7 11.6.1 11.6 11.5 11.4.3 11.4.2 11.4.1 11.4 11.3 11.2.1 11.2 11.1 11.0 10.15.7 10.15.6 10.1.3 10.10 10.10.1 10.10.2 10.11 All 204 releases
← All changes | includes/page-form-builder/__css/bfb_divider.css +16 -3 11.511.8.4 View file →
@@ -1,4 +1,4 @@
1 1
2 2
3 3 /* ================================================================================================================== */
4 4 /* === Divider ===================================================================================================== */
@@ -64,7 +64,20 @@
64 64 .wpbc_bfb_form [data-colstyles-active="1"] .bfb_element .wpbc_bfb_divider_wrap[data-orientation="vertical"] {
65 65 flex: 0 0 auto;
66 66 }
67 67 /* ================================================================================================================== */
68 -.wpbc_bfb_form .wpbc__row .wpbc__field .bfb_element .wpbc_bfb_divider_wrap hr {
69 - background: transparent;
70 -}
68 +.wpbc_bfb_form .wpbc__row .wpbc__field .bfb_element .wpbc_bfb_divider_wrap hr {
69 + background: transparent;
70 +}
71 +
72 +/*
73 + * The two-column Full-Day and Time-Slots templates use desktop-only center
74 + * separators. Remove their columns when the surrounding form stacks.
75 + */
76 +@media (max-width: 782px) {
77 + .wpbc_bfb_form .wpbc__row.wpbc_bfb_full_day_split_form > .wpbc__field:has(.wpbc_bfb_divider_wrap[data-orientation="vertical"]),
78 + .wpbc_bfb_form .wpbc_bfb__section.wpbc_bfb_full_day_split_form .wpbc_bfb__field[data-type="divider"][data-orientation="vertical"],
79 + .wpbc_bfb_form .wpbc__row.wpbc_bfb_time_slots_split_form > .wpbc__field:has(.wpbc_bfb_divider_wrap[data-orientation="vertical"]),
80 + .wpbc_bfb_form .wpbc_bfb__section.wpbc_bfb_time_slots_split_form .wpbc_bfb__field[data-type="divider"][data-orientation="vertical"] {
81 + display: none;
82 + }
83 +}