PluginProbe
Booking Calendar / 11.2
Booking Calendar v11.2
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 10.11.2 All 203 releases
booking / includes / page-form-builder / __css / bfb_divider.css

bfb_divider.css in Booking Calendar 11.2, at includes/page-form-builder/__css/bfb_divider.css

70 lines 3.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1
2
3 /* ================================================================================================================== */
4 /* === Divider ===================================================================================================== */
5 /* ================================================================================================================== */
6 /* Exception for Vertical Dividers: -- ------------------------------------------------------------------------------ */
7 .wpbc_bfb_form .wpbc_bfb__row .wpbc_bfb__column .wpbc_bfb__field[data-type="divider"][data-orientation="horizontal"]{
8 width:100%;
9 margin: 0;
10 min-width: 50px;
11 }
12 .wpbc_bfb_form .wpbc_bfb__row .wpbc_bfb__column .wpbc_bfb__field[data-type="divider"][data-orientation="vertical"],
13 .wpbc_bfb_form .wpbc_bfb__row .wpbc_bfb__column .wpbc_bfb__field[data-type=divider][data-orientation=vertical] .wpbc_bfb__noaction,
14 .wpbc_bfb_form .wpbc_bfb__row .wpbc_bfb__column .wpbc_bfb__field[data-type=divider][data-orientation=vertical] .wpbc_bfb__noaction * {
15 height: 100%;
16 min-height: 50px;
17 margin: 0;
18 box-sizing: border-box;
19 padding: 0;
20 justify-content: center;
21 align-items: center;
22 flex-flow: column nowrap;
23 }
24 .wpbc_bfb_form .wpbc_bfb__row .wpbc_bfb__column .wpbc_bfb__field[data-type=divider][data-orientation=vertical] .wpbc_bfb__field-preview{
25 position:relative;
26 }
27 /* === Exported Divider (Advanced Form) === ------------------------------------------------------------------------- */
28 div .wpbc_container .wpbc_bfb_form .wpbc__row .wpbc__field .bfb_element:has([data-orientation="vertical"]) {
29 flex: 0 1 auto;
30 }
31 div div .wpbc_bfb_form .wpbc__row .wpbc__field .bfb_element:has(.wpbc_bfb_divider_wrap[data-orientation="horizontal"]) {
32 flex: 0 1 auto;
33 width:100%;
34 }
35
36 .wpbc_bfb_form .wpbc__row .wpbc__field .bfb_element:has(.wpbc_bfb_divider_wrap[data-orientation="vertical"]){
37 height:100%;
38 }
39 .wpbc_bfb_form .wpbc__row .wpbc__field .bfb_element .wpbc_bfb_divider_wrap[data-orientation="horizontal"] {
40 width: 100%;
41 }
42 /* :AI: ------------------------------------------------------------------------- */
43 /* Horizontal divider inside a field block */
44 .wpbc_bfb_form .wpbc__row .wpbc__field .bfb_element .wpbc_bfb_divider--h {
45 display: block; /* ensures margins, width work predictably */
46 box-sizing: border-box;
47 }
48
49 /* Vertical divider wrapper: stretch within column rows; height resolves for child 100% */
50 .wpbc_bfb_form .wpbc__row .wpbc__field .bfb_element .wpbc_bfb_divider_wrap[data-orientation="vertical"] {
51 display: flex; /* supports height:100% on the inner line */
52 align-self: stretch; /* fill cross-size of the column row */
53 position: relative;
54 }
55
56 /* The vertical line itself draws via border-left; width comes from border */
57 .wpbc_bfb_form .wpbc__row .wpbc__field .bfb_element .wpbc_bfb_divider--v {
58 width: 0; /* border-left is the visible width */
59 box-sizing: content-box;
60 height: 100%; /* spans wrapper's height (see wrapper rule above) */
61 }
62
63 /* Optional: when a row uses custom column styles, keep divider flexible */
64 .wpbc_bfb_form [data-colstyles-active="1"] .bfb_element .wpbc_bfb_divider_wrap[data-orientation="vertical"] {
65 flex: 0 0 auto;
66 }
67 /* ================================================================================================================== */
68 .wpbc_bfb_form .wpbc__row .wpbc__field .bfb_element .wpbc_bfb_divider_wrap hr {
69 background: transparent;
70 }