| 1 |
/** TOOLBAR ***********************************************************************************************************/ |
| 2 |
/* Override default settings of main toolbar: ../includes/_toolbar_ui/_src/toolbar_ui.css */ |
| 3 |
#toolbar_booking_availability.wpbc_ajx_toolbar { |
| 4 |
margin: 0; |
| 5 |
/* margin: 0 0 10px 50px; */ |
| 6 |
} |
| 7 |
|
| 8 |
/** CONTENT ***********************************************************************************************************/ |
| 9 |
/* Main container */ |
| 10 |
.wpbc_ajx_avy__container { |
| 11 |
display: -ms-flexbox; |
| 12 |
display: flex; |
| 13 |
-ms-flex-flow: row nowrap; |
| 14 |
flex-flow: row nowrap; |
| 15 |
-ms-flex-pack: start; |
| 16 |
justify-content: flex-start; |
| 17 |
-ms-flex-align: start; |
| 18 |
align-items: flex-start; |
| 19 |
margin: 20px 0 0; |
| 20 |
} |
| 21 |
|
| 22 |
/* LEFT section */ |
| 23 |
.wpbc_ajx_avy__container .wpbc_ajx_avy__section_left { |
| 24 |
-ms-flex: 1 1 auto; |
| 25 |
flex: 1 1 auto; |
| 26 |
display: -ms-flexbox; |
| 27 |
display: flex; |
| 28 |
-ms-flex-flow: row wrap; |
| 29 |
flex-flow: row wrap; |
| 30 |
-ms-flex-pack: start; |
| 31 |
justify-content: flex-start; |
| 32 |
-ms-flex-align: start; |
| 33 |
align-items: flex-start; |
| 34 |
} |
| 35 |
|
| 36 |
/* Calendar in right section */ |
| 37 |
.wpbc_ajx_avy__calendar { |
| 38 |
width: 100%; |
| 39 |
max-width: 100%; |
| 40 |
margin: 0; |
| 41 |
} |
| 42 |
|
| 43 |
/* RIGHT section */ |
| 44 |
.wpbc_ajx_avy__container .wpbc_ajx_avy__section_right { |
| 45 |
-ms-flex: 0 1 auto; |
| 46 |
flex: 0 1 auto; |
| 47 |
margin: 0 0 0 30px; |
| 48 |
display: -ms-flexbox; |
| 49 |
display: flex; |
| 50 |
-ms-flex-flow: column wrap; |
| 51 |
flex-flow: column wrap; |
| 52 |
-ms-flex-pack: start; |
| 53 |
justify-content: flex-start; |
| 54 |
-ms-flex-align: start; |
| 55 |
align-items: flex-start; |
| 56 |
} |
| 57 |
|
| 58 |
/** WIDGETS ***********************************************************************************************************/ |
| 59 |
/* Widgets Section - Define width of widget here */ |
| 60 |
.wpbc_widgets { |
| 61 |
width: 200px; |
| 62 |
/* WIDTH of WIDGETs*/ |
| 63 |
display: -ms-flexbox; |
| 64 |
display: flex; |
| 65 |
-ms-flex-flow: column wrap; |
| 66 |
flex-flow: column wrap; |
| 67 |
-ms-flex-pack: start; |
| 68 |
justify-content: flex-start; |
| 69 |
-ms-flex-align: start; |
| 70 |
align-items: flex-start; |
| 71 |
} |
| 72 |
|
| 73 |
/* Widget */ |
| 74 |
.wpbc_widgets .wpbc_widget { |
| 75 |
margin: 0 0 20px; |
| 76 |
width: 100%; |
| 77 |
-ms-flex: 1 1 100%; |
| 78 |
flex: 1 1 100%; |
| 79 |
} |
| 80 |
|
| 81 |
/* Widget Header */ |
| 82 |
.wpbc_widget .wpbc_widget_header { |
| 83 |
width: 100%; |
| 84 |
height: 44px; |
| 85 |
border: 1px solid #ccc; |
| 86 |
background: #fff; |
| 87 |
font-weight: 600; |
| 88 |
text-shadow: none; |
| 89 |
display: -ms-flexbox; |
| 90 |
display: flex; |
| 91 |
-ms-flex-flow: row nowrap; |
| 92 |
flex-flow: row nowrap; |
| 93 |
-ms-flex-pack: start; |
| 94 |
justify-content: flex-start; |
| 95 |
-ms-flex-align: center; |
| 96 |
align-items: center; |
| 97 |
} |
| 98 |
|
| 99 |
/* Widget Header text */ |
| 100 |
.wpbc_widget .wpbc_widget_header .wpbc_widget_header_text { |
| 101 |
-ms-flex: 1 1 auto; |
| 102 |
flex: 1 1 auto; |
| 103 |
padding: 0 15px; |
| 104 |
} |
| 105 |
|
| 106 |
/* Settings Link in right side of header */ |
| 107 |
.wpbc_widget .wpbc_widget_header .wpbc_widget_header_settings_link { |
| 108 |
-ms-flex: 0 0 auto; |
| 109 |
flex: 0 0 auto; |
| 110 |
margin-left: auto; |
| 111 |
border-left: 1px solid #ccc; |
| 112 |
padding: 5px 10px; |
| 113 |
color: #0e70b7; |
| 114 |
display: none; |
| 115 |
} |
| 116 |
|
| 117 |
/** MOBILE ***********************************************************************************************************/ |
| 118 |
@media (max-width: 470px) { |
| 119 |
.wpbc_ajx_avy__container { |
| 120 |
-ms-flex-flow: row wrap; |
| 121 |
flex-flow: row wrap; |
| 122 |
} |
| 123 |
div.wpbc_ajx_avy__container .wpbc_ajx_avy__section_right { |
| 124 |
margin: 30px 0; |
| 125 |
} |
| 126 |
div.wpbc_widgets { |
| 127 |
width: 100%; |
| 128 |
} |
| 129 |
div.wpbc_widgets .wpbc_widget.wpbc_widget_available_unavailable { |
| 130 |
position: fixed; |
| 131 |
top: 100%; |
| 132 |
z-index: 9999; |
| 133 |
padding: 0px 2px; |
| 134 |
left: 0px; |
| 135 |
margin: -105px 0 0; |
| 136 |
} |
| 137 |
} |
| 138 |
|
| 139 |
/** Toolbar Dates Hints **********************************************************************************************/ |
| 140 |
#wpbc_hidden_template__select_booking_resource { |
| 141 |
-ms-flex: 0 1 auto; |
| 142 |
flex: 0 1 auto; |
| 143 |
} |
| 144 |
|
| 145 |
#wpbc_toolbar_dates_hint { |
| 146 |
-ms-flex: 1 1 auto; |
| 147 |
flex: 1 1 auto; |
| 148 |
-ms-flex-pack: start; |
| 149 |
justify-content: flex-start; |
| 150 |
margin-left: 0; |
| 151 |
} |
| 152 |
|
| 153 |
#wpbc_toolbar_dates_hint .ui_element .wpbc_help_text { |
| 154 |
font-size: 1.1em; |
| 155 |
line-height: 1.8em; |
| 156 |
height: auto; |
| 157 |
} |
| 158 |
|
| 159 |
#wpbc_toolbar_dates_hint .ui_element .wpbc_help_text * { |
| 160 |
font-size: 1em; |
| 161 |
} |
| 162 |
|
| 163 |
/* Dates hints */ |
| 164 |
.wpbc_ajx_toolbar .wpbc_help_text .wpbc_toolbar_dates_hints { |
| 165 |
font-size: 1.05em; |
| 166 |
display: block; |
| 167 |
/*flex-flow: row wrap;*/ |
| 168 |
/*width: 100%;*/ |
| 169 |
/*justify-content: flex-start;*/ |
| 170 |
/*align-items: first baseline;*/ |
| 171 |
} |
| 172 |
|
| 173 |
.wpbc_ajx_toolbar .wpbc_help_text .wpbc_toolbar_dates_hints span { |
| 174 |
/*flex: 1 1 auto;*/ |
| 175 |
padding: 0 0.2em; |
| 176 |
} |
| 177 |
|
| 178 |
.wpbc_ajx_toolbar .wpbc_help_text .wpbc_toolbar_dates_hints span.wpbc_big_text, |
| 179 |
.wpbc_ajx_toolbar .wpbc_help_text .wpbc_toolbar_dates_hints span.wpbc_big_date { |
| 180 |
font-size: 1.05em; |
| 181 |
font-weight: 600; |
| 182 |
padding: 0 0.3em; |
| 183 |
} |
| 184 |
|