| 1 |
/*! ------------------------------------------------------------------------------------------------------------------ !*/ |
| 2 |
/*! :: Parameters :: !*/ |
| 3 |
/*! ------------------------------------------------------------------------------------------------------------------ !*/ |
| 4 |
.wpbc_navigation_menu_left { |
| 5 |
--wpbc_settings__nav_menu_left__background_color: #fff; |
| 6 |
--wpbc_settings__nav_menu_left__border_color: #ccc; |
| 7 |
--wpbc_settings__nav_menu_left__hover_border_width: 4px; |
| 8 |
--wpbc_settings__nav_menu_left__hover_border_color: #d54e21; |
| 9 |
--wpbc_settings__nav_menu_left__active_border_color: var(--wpbc_admin-theme-color, #1e7bc7); |
| 10 |
display: -ms-flexbox; |
| 11 |
display: flex; |
| 12 |
-ms-flex-flow: column wrap; |
| 13 |
flex-flow: column wrap; |
| 14 |
-ms-flex-pack: start; |
| 15 |
justify-content: flex-start; |
| 16 |
-ms-flex-align: stretch; |
| 17 |
align-items: stretch; |
| 18 |
padding: 0; |
| 19 |
background: var(--wpbc_settings__nav_menu_left__background_color); |
| 20 |
border: 1px solid var(--wpbc_settings__nav_menu_left__border_color); |
| 21 |
min-width: max(190px,100%) |
| 22 |
} |
| 23 |
/*! ------------------------------------------------------------------------------------------------------------------ !*/ |
| 24 |
/*! == Left Navigation Items == !*/ |
| 25 |
/*! ------------------------------------------------------------------------------------------------------------------ !*/ |
| 26 |
.wpbc_navigation_menu_left_item { |
| 27 |
display: -ms-flexbox; |
| 28 |
display: flex; |
| 29 |
-ms-flex-flow: column wrap; |
| 30 |
flex-flow: column wrap; |
| 31 |
-ms-flex-pack: center; |
| 32 |
justify-content: center; |
| 33 |
-ms-flex-align: stretch; |
| 34 |
align-items: stretch |
| 35 |
} |
| 36 |
.wpbc_navigation_menu_left_item_container { |
| 37 |
display: -ms-flexbox; |
| 38 |
display: flex; |
| 39 |
-ms-flex-flow: row nowrap; |
| 40 |
flex-flow: row nowrap; |
| 41 |
-ms-flex-pack: start; |
| 42 |
justify-content: flex-start; |
| 43 |
-ms-flex-align: center; |
| 44 |
align-items: center |
| 45 |
} |
| 46 |
.wpbc_navigation_menu_left_item_a { |
| 47 |
-ms-flex: 1 1 100%; |
| 48 |
flex: 1 1 100%; |
| 49 |
margin: 0; |
| 50 |
padding: 10px 1em; |
| 51 |
border: none; |
| 52 |
border-left: var(--wpbc_settings__nav_menu_left__hover_border_width) solid transparent; |
| 53 |
text-shadow: none; |
| 54 |
color: #555; |
| 55 |
font-size: 13px; |
| 56 |
font-weight: 600; |
| 57 |
text-transform: capitalize; |
| 58 |
text-decoration: none; |
| 59 |
outline: 0; |
| 60 |
display: -ms-flexbox; |
| 61 |
display: flex; |
| 62 |
-ms-flex-flow: row nowrap; |
| 63 |
flex-flow: row nowrap; |
| 64 |
-ms-flex-align: center; |
| 65 |
align-items: center; |
| 66 |
-ms-flex-pack: start; |
| 67 |
justify-content: flex-start; |
| 68 |
box-shadow: none |
| 69 |
} |
| 70 |
.wpbc_navigation_menu_left_item_a:focus, |
| 71 |
.wpbc_navigation_menu_left_item_a:hover { |
| 72 |
color: var(--wpbc_settings__nav_menu_left__hover_border_color); |
| 73 |
border-left: var(--wpbc_settings__nav_menu_left__hover_border_width) solid var(--wpbc_settings__nav_menu_left__hover_border_color); |
| 74 |
box-shadow: none; |
| 75 |
outline: 0 |
| 76 |
} |
| 77 |
.wpbc_active .wpbc_navigation_menu_left_item_a { |
| 78 |
border-left: var(--wpbc_settings__nav_menu_left__hover_border_width) solid var(--wpbc_settings__nav_menu_left__active_border_color) |
| 79 |
} |
| 80 |
.wpbc_sub_option .wpbc_navigation_menu_left_item_a .wpbc_navigation_menu_left_item_text { |
| 81 |
font-size: .9em; |
| 82 |
font-weight: 400; |
| 83 |
padding-left: 2em |
| 84 |
} |
| 85 |
.wpbc_top_border .wpbc_navigation_menu_left_item_container { |
| 86 |
border-top: 1px solid #dcdcdc; |
| 87 |
margin-top: 5px |
| 88 |
} |
| 89 |
.wpbc_navigation_menu_left_item_icon { |
| 90 |
margin: 0 10px 0 0 |
| 91 |
} |
| 92 |
.wpbc_navigation_menu_left_item_text { |
| 93 |
padding: 0 2px; |
| 94 |
line-height: 1.5em; |
| 95 |
text-decoration: none |
| 96 |
} |
| 97 |
.wpbc_navigation_menu_left_item_icon_right, |
| 98 |
.wpbc_navigation_menu_left_item_icon_right:active, |
| 99 |
.wpbc_navigation_menu_left_item_icon_right:focus, |
| 100 |
.wpbc_navigation_menu_left_item_icon_right:hover, |
| 101 |
.wpbc_navigation_menu_left_item_text_right { |
| 102 |
margin-left: auto; |
| 103 |
margin-right: 10px; |
| 104 |
color: #555; |
| 105 |
text-decoration: none |
| 106 |
} |
| 107 |
.wpbc_navigation_menu_left_small_text_right { |
| 108 |
font-size: 9px; |
| 109 |
font-weight: 700; |
| 110 |
color: #b3b3b3 |
| 111 |
} |
| 112 |
/*! ------------------------------------------------------------------------------------------------------------------ !*/ |
| 113 |
/*! == Full Screen Setup == !*/ |
| 114 |
/*! ------------------------------------------------------------------------------------------------------------------ !*/ |
| 115 |
.wpbc_admin_full_screen { |
| 116 |
background: #f6f7f7; |
| 117 |
color: #50575e; |
| 118 |
font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif |
| 119 |
} |
| 120 |
.wpbc_admin_full_screen #wpwrap { |
| 121 |
top: 0 |
| 122 |
} |
| 123 |
.wpbc_admin_full_screen #wpbody-content { |
| 124 |
min-height: 100vh!important; |
| 125 |
padding: 0!important |
| 126 |
} |
| 127 |
.wpbc_admin_full_screen #adminmenumain, |
| 128 |
.wpbc_admin_full_screen #wpcontent > *, |
| 129 |
.wpbc_admin_full_screen .error:not(.wpbc-settings-notice,.wpbc_inner_message), |
| 130 |
.wpbc_admin_full_screen .notice:not(.wpbc-settings-notice,.wpbc_inner_message), |
| 131 |
.wpbc_admin_full_screen .update-nag:not(.wpbc-settings-notice,.wpbc_inner_message), |
| 132 |
.wpbc_admin_full_screen .updated:not(.wpbc-settings-notice,.wpbc_inner_message) { |
| 133 |
display: none |
| 134 |
} |
| 135 |
.wpbc_admin_full_screen #wpcontent { |
| 136 |
margin-left: 0!important |
| 137 |
} |
| 138 |
.wpbc_admin_full_screen #wpcontent > #wpbody { |
| 139 |
display: block; |
| 140 |
margin-top: 0!important |
| 141 |
} |
| 142 |
.wpbc_admin_full_screen #wpadminbar, |
| 143 |
.wpbc_admin_full_screen #wpfooter, |
| 144 |
.wpbc_admin_full_screen .components-modal__screen-overlay { |
| 145 |
display: none |
| 146 |
} |
| 147 |
.wpbc_admin_full_screen .wpbc_header_news { |
| 148 |
display: none!important |
| 149 |
} |
| 150 |
.wpbc_admin_full_screen #ajax_working > [id^=wpbc_notice_] { |
| 151 |
top: 0 |
| 152 |
} |
| 153 |
.wpbc_admin_full_screen .wpbc_page div.wpbc_inner_message { |
| 154 |
top: 0; |
| 155 |
margin-top: 4px |
| 156 |
} |
| 157 |
.wpbc_ui_radio_section { |
| 158 |
-ms-flex: 1 1 100%; |
| 159 |
flex: 1 1 100%; |
| 160 |
display: -ms-flexbox; |
| 161 |
display: flex; |
| 162 |
-ms-flex-flow: column nowrap; |
| 163 |
flex-flow: column nowrap; |
| 164 |
-ms-flex-align: center; |
| 165 |
align-items: center; |
| 166 |
-ms-flex-pack: center; |
| 167 |
justify-content: center |
| 168 |
} |
| 169 |
.wpbc_ui_radio_section.wpbc_ui_radio_section_as_row { |
| 170 |
-ms-flex-flow: row wrap; |
| 171 |
flex-flow: row wrap; |
| 172 |
-ms-flex-align: start; |
| 173 |
align-items: flex-start; |
| 174 |
-ms-flex-pack: center; |
| 175 |
justify-content: center |
| 176 |
} |
| 177 |
.wpbc_ui_radio_container { |
| 178 |
display: -ms-flexbox; |
| 179 |
display: flex; |
| 180 |
-ms-flex-direction: column; |
| 181 |
flex-direction: column; |
| 182 |
-ms-flex-align: stretch; |
| 183 |
align-items: stretch; |
| 184 |
-ms-flex-pack: start; |
| 185 |
justify-content: flex-start; |
| 186 |
padding: 0; |
| 187 |
border: 0 solid #e0e0e0; |
| 188 |
box-shadow: 0 0 1px 1px rgba(204,204,204,.4705882353); |
| 189 |
border-radius: 2px; |
| 190 |
width: 100%; |
| 191 |
cursor: pointer; |
| 192 |
background: #fff; |
| 193 |
max-width: 420px; |
| 194 |
margin: 10px 1em 10px 0 |
| 195 |
} |
| 196 |
.wpbc_ui_radio_container[data-selected] { |
| 197 |
border: 0 solid var(--wp-admin-theme-color,#007cba); |
| 198 |
box-shadow: 0 0 0 2px var(--wp-admin-theme-color,#007cba); |
| 199 |
border-radius: 4px |
| 200 |
} |
| 201 |
.wpbc_ui_radio_container.disabled { |
| 202 |
cursor: default |
| 203 |
} |
| 204 |
.wpbc_ui_radio_container.disabled a { |
| 205 |
cursor: pointer |
| 206 |
} |
| 207 |
.wpbc_ui_radio_container.disabled input.wpbc_ui_radio_choice_input { |
| 208 |
pointer-events: none; |
| 209 |
cursor: default!important |
| 210 |
} |
| 211 |
.wpbc_ui_radio_container.disabled label.wpbc_ui_radio_choice_title { |
| 212 |
color: #aaa; |
| 213 |
cursor: default!important |
| 214 |
} |
| 215 |
div.wpbc_ui_radio_choice { |
| 216 |
padding: 16px |
| 217 |
} |
| 218 |
.wpbc_ui_radio_text_right { |
| 219 |
float: right; |
| 220 |
position: relative; |
| 221 |
margin: 3px 0 0; |
| 222 |
color: #529933 |
| 223 |
} |
| 224 |
div.wpbc_ui_radio_footer { |
| 225 |
padding: 0 16px; |
| 226 |
border-top: 1px solid #e8e8e8 |
| 227 |
} |
| 228 |
div.wpbc_ui_radio_footer p.wpbc_ui_radio_choice_description { |
| 229 |
padding: 0 0 6px; |
| 230 |
font-size: 13px |
| 231 |
} |
| 232 |
.wpbc_ui_settings__flex_container { |
| 233 |
--wpbc_ui_settings__panel_background_color: #fff; |
| 234 |
--wpbc_ui_settings__panel_text_color: #141b38; |
| 235 |
--wpbc_ui_settings__panel_border: 1px solid #c3c4c787; |
| 236 |
--wpbc_ui_settings__panel_shadow: 0 1px 1px rgba(0, 0, 0, 0.04); |
| 237 |
--wpbc_ui_settings__panel_padding: 0; |
| 238 |
--wpbc_ui_settings__panel_border_radius: 4px; |
| 239 |
--wpbc_ui_settings__card_width: calc( 15% - 40px - 2px ); |
| 240 |
--wpbc_ui_settings__text_color__black: #000; |
| 241 |
--wpbc_ui_settings__text_color__black2: #141b38; |
| 242 |
--wpbc_ui_settings__text_color__blue: #337ab7; |
| 243 |
--wpbc_ui_settings__text_color__blue2: #1ca4e7; |
| 244 |
--wpbc_ui_settings__text_color__red: #fd2c2c; |
| 245 |
--wpbc_ui_settings__text_color__red2: #df2a4a; |
| 246 |
--wpbc_ui_settings__text_color__green: #098409; |
| 247 |
--wpbc_ui_settings__text_color__green2: #00aa63; |
| 248 |
--wpbc_ui_settings__text_color__orange: #E66F00; |
| 249 |
--wpbc_ui_settings__text_color__orange2: #e4a000; |
| 250 |
--wpbc_ui_settings__text_color__purple: #7812bd; |
| 251 |
--wpbc_ui_settings__text_color__purple2: #6134dc; |
| 252 |
display: -ms-flexbox; |
| 253 |
display: flex; |
| 254 |
-ms-flex-flow: row wrap; |
| 255 |
flex-flow: row wrap; |
| 256 |
-ms-flex-pack: start; |
| 257 |
justify-content: flex-start; |
| 258 |
-ms-flex-align: start; |
| 259 |
align-items: flex-start |
| 260 |
} |
| 261 |
.wpbc_ui_settings__text_color__black { |
| 262 |
color: var(--wpbc_ui_settings__text_color__black)!important |
| 263 |
} |
| 264 |
.wpbc_ui_settings__text_color__black2 { |
| 265 |
color: var(--wpbc_ui_settings__text_color__black2)!important |
| 266 |
} |
| 267 |
.wpbc_ui_settings__text_color__blue { |
| 268 |
color: var(--wpbc_ui_settings__text_color__blue)!important |
| 269 |
} |
| 270 |
.wpbc_ui_settings__text_color__blue2 { |
| 271 |
color: var(--wpbc_ui_settings__text_color__blue2)!important |
| 272 |
} |
| 273 |
.wpbc_ui_settings__text_color__red { |
| 274 |
color: var(--wpbc_ui_settings__text_color__red)!important |
| 275 |
} |
| 276 |
.wpbc_ui_settings__text_color__red2 { |
| 277 |
color: var(--wpbc_ui_settings__text_color__red2)!important |
| 278 |
} |
| 279 |
.wpbc_ui_settings__text_color__green { |
| 280 |
color: var(--wpbc_ui_settings__text_color__green)!important |
| 281 |
} |
| 282 |
.wpbc_ui_settings__text_color__green2 { |
| 283 |
color: var(--wpbc_ui_settings__text_color__green2)!important |
| 284 |
} |
| 285 |
.wpbc_ui_settings__text_color__orange { |
| 286 |
color: var(--wpbc_ui_settings__text_color__orange)!important |
| 287 |
} |
| 288 |
.wpbc_ui_settings__text_color__orange2 { |
| 289 |
color: var(--wpbc_ui_settings__text_color__orange2)!important |
| 290 |
} |
| 291 |
.wpbc_ui_settings__text_color__purple { |
| 292 |
color: var(--wpbc_ui_settings__text_color__purple)!important |
| 293 |
} |
| 294 |
.wpbc_ui_settings__text_color__purple2 { |
| 295 |
color: var(--wpbc_ui_settings__text_color__purple2)!important |
| 296 |
} |
| 297 |
.wpbc_ui_settings__col, |
| 298 |
.wpbc_ui_settings__row { |
| 299 |
display: -ms-flexbox; |
| 300 |
display: flex; |
| 301 |
-ms-flex-flow: row wrap; |
| 302 |
flex-flow: row wrap; |
| 303 |
-ms-flex-pack: start; |
| 304 |
justify-content: flex-start; |
| 305 |
-ms-flex-align: start; |
| 306 |
align-items: flex-start; |
| 307 |
-ms-flex: 1 1 100%; |
| 308 |
flex: 1 1 100%; |
| 309 |
margin: 0 0 20px |
| 310 |
} |
| 311 |
.wpbc_ui_settings__col { |
| 312 |
margin: 0 20px 20px 0; |
| 313 |
-ms-flex: 0 1 auto; |
| 314 |
flex: 0 1 auto |
| 315 |
} |
| 316 |
.wpbc_ui_settings__panel { |
| 317 |
-ms-flex: 1 1 100%; |
| 318 |
flex: 1 1 100%; |
| 319 |
position: relative; |
| 320 |
background: var(--wpbc_ui_settings__panel_background_color); |
| 321 |
color: var(--wpbc_ui_settings__panel_text_color); |
| 322 |
border-radius: var(--wpbc_ui_settings__panel_border_radius); |
| 323 |
border: var(--wpbc_ui_settings__panel_border); |
| 324 |
box-shadow: var(--wpbc_ui_settings__panel_shadow); |
| 325 |
padding: var(--wpbc_ui_settings__panel_padding); |
| 326 |
display: -ms-flexbox; |
| 327 |
display: flex; |
| 328 |
-ms-flex-flow: row wrap; |
| 329 |
flex-flow: row wrap; |
| 330 |
-ms-flex-pack: start; |
| 331 |
justify-content: flex-start; |
| 332 |
-ms-flex-align: stretch; |
| 333 |
align-items: stretch |
| 334 |
} |
| 335 |
.wpbc_ui_settings__col .wpbc_ui_settings__panel { |
| 336 |
-ms-flex-flow: column wrap; |
| 337 |
flex-flow: column wrap; |
| 338 |
-ms-flex: 0 1 220px; |
| 339 |
flex: 0 1 220px; |
| 340 |
padding: 0 20px |
| 341 |
} |
| 342 |
.wpbc_ui_settings__col .wpbc_ui_settings__card_divider_right { |
| 343 |
border-right: 0; |
| 344 |
border-bottom: 2px solid rgba(220,221,225,.4705882353); |
| 345 |
padding: 20px 0; |
| 346 |
margin: 0 |
| 347 |
} |
| 348 |
.wpbc_ui_settings__card { |
| 349 |
-ms-flex: 1 1 var(--wpbc_ui_settings__card_width); |
| 350 |
flex: 1 1 var(--wpbc_ui_settings__card_width); |
| 351 |
min-width: 150px; |
| 352 |
min-width: 200px; |
| 353 |
padding: 0 20px; |
| 354 |
margin: 15px 0; |
| 355 |
display: -ms-flexbox; |
| 356 |
display: flex; |
| 357 |
-ms-flex-flow: column wrap; |
| 358 |
flex-flow: column wrap; |
| 359 |
-ms-flex-pack: start; |
| 360 |
justify-content: flex-start; |
| 361 |
-ms-flex-align: start; |
| 362 |
align-items: flex-start |
| 363 |
} |
| 364 |
.wpbc_ui_settings__card_divider_right { |
| 365 |
border-right: 2px solid rgba(220,221,225,.4705882353) |
| 366 |
} |
| 367 |
.wpbc_ui_settings__card_divider_right:last-child { |
| 368 |
border-right: 0; |
| 369 |
border-bottom: 0 |
| 370 |
} |
| 371 |
@media (max-width:600px) { |
| 372 |
.wpbc_ui_settings__card_divider_right { |
| 373 |
border-right: 0; |
| 374 |
border-bottom: 0 |
| 375 |
} |
| 376 |
} |
| 377 |
.wpbc_ui_settings__text_row { |
| 378 |
display: -ms-flexbox; |
| 379 |
display: flex; |
| 380 |
-ms-flex-flow: row nowrap; |
| 381 |
flex-flow: row nowrap; |
| 382 |
-ms-flex-pack: start; |
| 383 |
justify-content: flex-start; |
| 384 |
-ms-flex-align: first baseline; |
| 385 |
align-items: first baseline; |
| 386 |
width: 100%; |
| 387 |
line-height: 2 |
| 388 |
} |
| 389 |
.wpbc_ui_settings__center { |
| 390 |
display: -ms-flexbox; |
| 391 |
display: flex; |
| 392 |
-ms-flex-flow: column nowrap; |
| 393 |
flex-flow: column nowrap; |
| 394 |
-ms-flex-pack: center; |
| 395 |
justify-content: center; |
| 396 |
-ms-flex-align: center; |
| 397 |
align-items: center; |
| 398 |
-ms-flex: 1 1 100%; |
| 399 |
flex: 1 1 100%; |
| 400 |
margin: auto |
| 401 |
} |
| 402 |
.wpbc_ui_settings__panel h1 { |
| 403 |
font-size: 32px; |
| 404 |
line-height: 32px; |
| 405 |
font-weight: 600; |
| 406 |
padding: 0 0 4px |
| 407 |
} |
| 408 |
.wpbc_ui_settings__panel .menu_icon { |
| 409 |
margin-right: 10px |
| 410 |
} |
| 411 |
.wpbc_ui_settings__panel .menu_icon::before { |
| 412 |
font-size: 24px; |
| 413 |
line-height: 1; |
| 414 |
padding: 0 |
| 415 |
} |
| 416 |
.wpbc_ui_settings__panel h1 a, |
| 417 |
.wpbc_ui_settings__text_row a { |
| 418 |
text-decoration: none; |
| 419 |
outline: 0 |
| 420 |
} |
| 421 |
.wpbc_ui_settings__card_text_small { |
| 422 |
min-width: 220px; |
| 423 |
min-width: 240px; |
| 424 |
border-left: 4px solid transparent |
| 425 |
} |
| 426 |
.wpbc_ui_settings__card_text_small:hover { |
| 427 |
border-left: 4px solid var(--wpbc_admin-theme-color,#1e7bc7) |
| 428 |
} |
| 429 |
.wpbc_ui_settings__card_text_small h1 { |
| 430 |
font-size: 18px |
| 431 |
} |
| 432 |
.wpbc_ui_settings__card_text_small .menu_icon::before { |
| 433 |
font-size: 18px; |
| 434 |
line-height: 1 |
| 435 |
} |
| 436 |
.wpbc_ui_settings__card_text_small [class*=" wpbc-bi-"]::before { |
| 437 |
padding: 3px 0 0 |
| 438 |
} |
| 439 |
.wpbc_ui_settings__card_text_small .wpbc_ui_settings__text_row a { |
| 440 |
line-height: 1.7 |
| 441 |
} |
| 442 |
.wpbc_ui_settings__text_right { |
| 443 |
margin-left: auto; |
| 444 |
float: right |
| 445 |
} |
| 446 |
.wpbc_ui_settings__text_pro { |
| 447 |
color: #529933; |
| 448 |
font-weight: 600; |
| 449 |
font-size: 14px |
| 450 |
} |
| 451 |
a.wpbc_ui_settings__text_pro, |
| 452 |
a.wpbc_ui_settings__text_pro:hover { |
| 453 |
text-decoration: underline; |
| 454 |
text-decoration-style: dashed; |
| 455 |
text-underline-offset: 3px |
| 456 |
} |
| 457 |
.wpbc_ui_settings__panel__up_header { |
| 458 |
-ms-flex: 1 1 100%; |
| 459 |
flex: 1 1 100%; |
| 460 |
margin: 8px 2px; |
| 461 |
font-size: 15px; |
| 462 |
font-weight: 400; |
| 463 |
letter-spacing: 0; |
| 464 |
text-shadow: none; |
| 465 |
color: #a2a2a2 |
| 466 |
} |
| 467 |
.wpbc_settings_path { |
| 468 |
display: -ms-flexbox; |
| 469 |
display: flex; |
| 470 |
-ms-flex-flow: row wrap; |
| 471 |
flex-flow: row wrap; |
| 472 |
-ms-flex-pack: start; |
| 473 |
justify-content: flex-start; |
| 474 |
-ms-flex-align: center; |
| 475 |
align-items: center; |
| 476 |
margin: 10px 2px |
| 477 |
} |
| 478 |
.wpbc_settings_path_el { |
| 479 |
margin: 0 5px 0 0; |
| 480 |
font-size: 13px; |
| 481 |
height: 22px; |
| 482 |
display: -ms-flexbox; |
| 483 |
display: flex; |
| 484 |
-ms-flex-flow: column nowrap; |
| 485 |
flex-flow: column nowrap; |
| 486 |
-ms-flex-align: center; |
| 487 |
align-items: center; |
| 488 |
-ms-flex-pack: center; |
| 489 |
justify-content: center |
| 490 |
} |
| 491 |
.wpbc_settings_path a { |
| 492 |
text-decoration: none |
| 493 |
} |
| 494 |
.wpbc_settings_path a:active, |
| 495 |
.wpbc_settings_path a:focus, |
| 496 |
.wpbc_settings_path a:hover { |
| 497 |
text-decoration: underline; |
| 498 |
box-shadow: none; |
| 499 |
outline: 0 |
| 500 |
} |
| 501 |
.wpbc_page_tab__general.wpbc_page .wpbc_admin_page .wpbc_header_margin { |
| 502 |
height: 0 |
| 503 |
} |
| 504 |
.wpbc_dismiss_x__in_panel { |
| 505 |
display: -ms-flexbox; |
| 506 |
display: flex; |
| 507 |
-ms-flex-flow: row nowrap; |
| 508 |
flex-flow: row nowrap; |
| 509 |
-ms-flex-pack: justify; |
| 510 |
justify-content: space-between; |
| 511 |
-ms-flex-align: center; |
| 512 |
align-items: center |
| 513 |
} |
| 514 |
.wpbc_dismiss_x__in_panel .wpbc_dismiss_x__in_panel_card { |
| 515 |
margin: 0 |
| 516 |
} |
| 517 |
.wpbc_dismiss_x__in_panel_card { |
| 518 |
padding: 0 0 0 10px; |
| 519 |
-ms-flex: 0 0 auto; |
| 520 |
flex: 0 0 auto; |
| 521 |
margin-top: -25px; |
| 522 |
-ms-flex-item-align: center; |
| 523 |
align-self: center; |
| 524 |
margin-right: -10px |
| 525 |
} |
| 526 |
.wpbc_dismiss_x__in_panel .wpbc_x_dismiss_btn { |
| 527 |
position: relative; |
| 528 |
z-index: 999 |
| 529 |
} |
| 530 |
.wp-core-ui .wpbc_page .wpbc_settings_flex_container_right { |
| 531 |
--wpbc_form-button-light-size-height: 43px; |
| 532 |
--wpbc_form-button-background-color: var(--wpbc_admin-theme-color, #066aab ) |
| 533 |
} |
| 534 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container .wpbc_button_light, |
| 535 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container .wpbc_button_light:focus, |
| 536 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container .wpbc_button_light:hover, |
| 537 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container input.wpbc_button_light, |
| 538 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container input.wpbc_button_light:focus, |
| 539 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container input.wpbc_button_light:hover { |
| 540 |
font-size: 1.18em; |
| 541 |
font-weight: 600; |
| 542 |
border: 2px solid rgba(238,238,238,.7098039216); |
| 543 |
box-shadow: 0 2px 10px 2px rgba(255,255,255,.3294117647); |
| 544 |
background: #fdfdfd; |
| 545 |
color: rgba(68,68,68,.8784313725); |
| 546 |
border-radius: .375em; |
| 547 |
padding: 0 2.2em; |
| 548 |
line-height: 1; |
| 549 |
text-decoration: none; |
| 550 |
cursor: pointer; |
| 551 |
outline: 0; |
| 552 |
display: -ms-flexbox; |
| 553 |
display: flex; |
| 554 |
-ms-flex-flow: row wrap; |
| 555 |
flex-flow: row wrap; |
| 556 |
-ms-flex-pack: center; |
| 557 |
justify-content: center; |
| 558 |
-ms-flex-align: center; |
| 559 |
align-items: center; |
| 560 |
margin: 0; |
| 561 |
height: var(--wpbc_form-button-light-size-height); |
| 562 |
box-sizing: border-box; |
| 563 |
text-shadow: none; |
| 564 |
transition: .2s |
| 565 |
} |
| 566 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container .wpbc_button_light:focus, |
| 567 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container .wpbc_button_light:hover, |
| 568 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container input.wpbc_button_light:focus, |
| 569 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container input.wpbc_button_light:hover { |
| 570 |
border: 2px solid #4d91cd |
| 571 |
} |
| 572 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container .wpbc_button_light.button-primary { |
| 573 |
background: var(--wpbc_form-button-background-color,#06ab09); |
| 574 |
color: #fff |
| 575 |
} |
| 576 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container .wpbc_button_light.button-primary:focus, |
| 577 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container .wpbc_button_light.button-primary:hover { |
| 578 |
background: var(--wpbc_form-button-background-color,#066aab); |
| 579 |
color: #fff; |
| 580 |
border-color: #fff; |
| 581 |
box-shadow: 0 0 0 2px var(--wpbc_form-button-background-color,#066aab) |
| 582 |
} |
| 583 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container .wpbc_button_light:active, |
| 584 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container .wpbc_button_light:disabled, |
| 585 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container .wpbc_button_light:disabled:focus, |
| 586 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container .wpbc_button_light:disabled:hover { |
| 587 |
color: #ccc; |
| 588 |
border: 2px solid rgba(238,238,238,.7098039216); |
| 589 |
cursor: not-allowed |
| 590 |
} |
| 591 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container .wpbc_button_light.wpbc_button_danger { |
| 592 |
background: #de605c; |
| 593 |
border-color: #de605c; |
| 594 |
color: #f7f7f7; |
| 595 |
text-shadow: 0 0 #ba5956 |
| 596 |
} |
| 597 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container .wpbc_button_light.wpbc_button_danger:focus, |
| 598 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container .wpbc_button_light.wpbc_button_danger:hover { |
| 599 |
background: #e65d59; |
| 600 |
color: #fff; |
| 601 |
border-color: #fff; |
| 602 |
box-shadow: 0 0 0 2px #de605c |
| 603 |
} |
| 604 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container .wpbc_button_light.wpbc_button_green, |
| 605 |
.wpbc_button_light.wpbc_button_green { |
| 606 |
background: #27b400; |
| 607 |
border-color: rgba(255,255,255,.0901960784); |
| 608 |
color: #fff; |
| 609 |
text-shadow: none; |
| 610 |
box-shadow: 0 0 0 2px rgba(3,159,6,.1882352941) |
| 611 |
} |
| 612 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container .wpbc_button_light.wpbc_button_green:focus, |
| 613 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container .wpbc_button_light.wpbc_button_green:hover, |
| 614 |
.wpbc_button_light.wpbc_button_green:focus, |
| 615 |
.wpbc_button_light.wpbc_button_green:hover { |
| 616 |
background: #00b703; |
| 617 |
color: #fff; |
| 618 |
border-color: #fff; |
| 619 |
box-shadow: 0 0 0 2px #00b703 |
| 620 |
} |
| 621 |
.wpbc_bfb__form_setting_save.is-hidden { |
| 622 |
display: none!important |
| 623 |
} |
| 624 |
.inspector__row label:has(input[type=radio]) { |
| 625 |
cursor: pointer |
| 626 |
} |
| 627 |
/*! = General Vars for Admin = */ |
| 628 |
.wpbc_admin { |
| 629 |
--wpbc_admin-theme-color: var(--wp-admin-theme-color, #6b96ce); |
| 630 |
--wpbc_admin-default_label-color: #486892; |
| 631 |
--wpbc_admin-a-color: var(--wpbc_admin-theme-color); |
| 632 |
--wpbc_admin-theme-opacity: 80%; |
| 633 |
--wpbc_admin-active-tab-color: #707980; |
| 634 |
--wpbc_admin-resource-badge-color: #556e91; |
| 635 |
--wpbc_ui__gen__screen_width_small: 960px; |
| 636 |
--wpbc_ui__gen__screen_width_mini: 782px; |
| 637 |
--wpbc_ui__gen__screen_width_micro: 600px; |
| 638 |
--wpbc_ui__gen__panel_background-color: #fff; |
| 639 |
--wpbc_ui__gen__panel_box-shadow: 0 1px 3px rgba(17,24,39,.09); |
| 640 |
--wpbc_ui__gen__active-background-color: #465160; |
| 641 |
--wpbc_ui__gen__active-text-color: #fff; |
| 642 |
--wpbc_ui__gen__hover-color: #d63638; |
| 643 |
--wpbc_ui__gen__text-color: #555; |
| 644 |
--wpbc_ui__gen__font-size: 13px; |
| 645 |
--wpbc_ui__gen__border-radius: 4px; |
| 646 |
--wpbc_ui_dropdown__ul-background-color: var(--wpbc_ui__gen__panel_background-color); |
| 647 |
--wpbc_ui_dropdown__ul-font-size: var(--wpbc_ui__gen__font-size); |
| 648 |
--wpbc_ui_dropdown__ul-border-radius: var(--wpbc_ui__gen__border-radius); |
| 649 |
--wpbc_ui_dropdown__ul-padding: 6px; |
| 650 |
--wpbc_ui_dropdown__a-color: var(--wpbc_ui__gen__text-color); |
| 651 |
--wpbc_ui_dropdown__a-font-size: var(--wpbc_ui_dropdown__ul-font-size); |
| 652 |
--wpbc_ui_dropdown__a-padding: 5px 15px; |
| 653 |
--wpbc_ui_dropdown__active-a-border-radius: var(--wpbc_ui__gen__border-radius); |
| 654 |
--wpbc_ui_dropdown__active-a-background: var(--wpbc_ui__gen__active-background-color); |
| 655 |
--wpbc_ui_dropdown__active-a-color: var(--wpbc_ui__gen__active-text-color); |
| 656 |
--wpbc_ui_a__a-color: var(--wpbc_ui__gen__text-color); |
| 657 |
--wpbc_ui_a__a-font-size: var(--wpbc_ui_a__ul-font-size); |
| 658 |
--wpbc_ui_a__a-padding: 5px 15px; |
| 659 |
--wpbc_ui_a__active-a-border-radius: var(--wpbc_ui__gen__border-radius); |
| 660 |
--wpbc_ui_a__active-a-background: var(--wpbc_ui__gen__active-background-color); |
| 661 |
--wpbc_ui_a__active-a-color: var(--wpbc_ui__gen__active-text-color); |
| 662 |
--wpbc_ui_top_nav__background-color: var(--wpbc_ui__gen__panel_background-color); |
| 663 |
--wpbc_ui_top_nav__font-size: 17px; |
| 664 |
--wpbc_ui_top_nav__height: 48px; |
| 665 |
--wpbc_ui_top_nav__a_color: var(--wpbc_ui__gen__text-color); |
| 666 |
--wpbc_ui_top_nav__a_hover_border_width: 3px; |
| 667 |
--wpbc_ui_top_nav__a_hover_border_color: var(--wpbc_ui__gen__hover-color); |
| 668 |
--wpbc_ui_top_nav__wp_left_menu_width: 160px; |
| 669 |
--wpbc_ui_top_nav__wp_top_menu_height: 32px; |
| 670 |
--wpbc_ui_left_vert_nav__width_min: 0; |
| 671 |
--wpbc_ui_left_vert_nav__width_compact: 48px; |
| 672 |
--wpbc_ui_left_vert_nav__width_compact: 90px; |
| 673 |
--wpbc_ui_left_vert_nav__width_max: 250px; |
| 674 |
--wpbc_ui_left_vert_nav__margin: 0; |
| 675 |
--wpbc_ui_left_vert_nav__background-color: var(--wpbc_ui__gen__panel_background-color); |
| 676 |
--wpbc_ui_left_vert_nav__font-size: var(--wpbc_ui__gen__font-size); |
| 677 |
--wpbc_ui_left_vert_nav__a_color: var(--wpbc_ui__gen__text-color); |
| 678 |
--wpbc_ui_left_vert_nav__active_color: var(--wpbc_ui__gen__active-text-color); |
| 679 |
--wpbc_ui_left_vert_nav__active_background-color: var(--wpbc_ui__gen__active-background-color); |
| 680 |
--wpbc_ui_left_vert_nav__hover_background-color: #4651601c; |
| 681 |
--wpbc_ui_vert_left_bar__footer_height: 55px; |
| 682 |
--wpbc_ui_horis_top_nav__font-size: 16px; |
| 683 |
--wpbc_ui_horis_top_nav__margin: 10px 0 20px; |
| 684 |
--wpbc_ui_horis_top_nav__background-color: transparent; |
| 685 |
--wpbc_ui_horis_top_nav__a_color: var(--wpbc_ui__gen__text-color); |
| 686 |
--wpbc_ui_horis_top_nav__border-width: 2px; |
| 687 |
--wpbc_ui_horis_top_nav__normal_color: #ccc; |
| 688 |
--wpbc_ui_horis_top_nav__hover_color: #d54e21; |
| 689 |
--wpbc_ui_horis_top_nav__active_color: #64aa45; |
| 690 |
--wpbc_ui_toolbar__font-size: 14px; |
| 691 |
--wpbc_ui_listing__back_color: #fff; |
| 692 |
--wpbc_ui_listing__back_alt_color: #fbfbfc; |
| 693 |
--wpbc_ui_listing__table_border_color: #d6d6d6; |
| 694 |
--wpbc_ui_listing__row_border_color: #e4e4e4; |
| 695 |
--wpbc_ui_listing__border_radius: var(--wpbc_ui__gen__border-radius); |
| 696 |
--wpbc_ui_listing__header_height: 44px; |
| 697 |
--wpbc_ui_listing__pending_color: #ed9f0a; |
| 698 |
--wpbc_ui_listing__approved_color: #64AA45; |
| 699 |
--wpbc_ui_listing__trash_color: #d94a48; |
| 700 |
--wpbc_ui_listing__restore_color: #1e9220; |
| 701 |
--wpbc_ui_listing__resource_color: var(--wpbc_admin-theme-color, #6b96ce); |
| 702 |
--wpbc_ui_listing__selected_row_color: var(--wpbc_admin-theme-color, #08a ); |
| 703 |
--wpbc_ui_listing__colapsed_height: 80px |
| 704 |
} |
| 705 |
.wpbc_admin.admin-color-fresh[class*=" branch-6-"], |
| 706 |
.wpbc_admin.admin-color-fresh[class*=" branch-6-"] .wpbc_admin, |
| 707 |
.wpbc_admin.admin-color-fresh[class^=branch-6-], |
| 708 |
.wpbc_admin.admin-color-fresh[class^=branch-6-] .wpbc_admin { |
| 709 |
--wpbc_admin-theme-color: #2271b1 |
| 710 |
} |
| 711 |
/*! = Drop Down Menu = */ |
| 712 |
.wpbc_ui_el__dropdown { |
| 713 |
position: relative; |
| 714 |
display: -ms-flexbox; |
| 715 |
display: flex; |
| 716 |
-ms-flex-flow: row nowrap; |
| 717 |
flex-flow: row nowrap; |
| 718 |
-ms-flex-align: center; |
| 719 |
align-items: center; |
| 720 |
-ms-flex-pack: start; |
| 721 |
justify-content: flex-start |
| 722 |
} |
| 723 |
.wpbc_ui_el__dropdown.open > .ul_dropdown_menu { |
| 724 |
display: block |
| 725 |
} |
| 726 |
.wpbc_ui_el__dropdown.open > a { |
| 727 |
outline: 0 |
| 728 |
} |
| 729 |
.wpbc_ui_el_container.wpbc_ui_el__dropdown .ul_dropdown_menu_toggle, |
| 730 |
.wpbc_ui_el_container.wpbc_ui_el__dropdown .ul_dropdown_menu_toggle:active, |
| 731 |
.wpbc_ui_el_container.wpbc_ui_el__dropdown .ul_dropdown_menu_toggle:focus, |
| 732 |
.wpbc_ui_el_container.wpbc_ui_el__dropdown .ul_dropdown_menu_toggle:hover { |
| 733 |
cursor: pointer; |
| 734 |
vertical-align: middle; |
| 735 |
text-decoration: none; |
| 736 |
outline: 0; |
| 737 |
display: -ms-flexbox; |
| 738 |
display: flex; |
| 739 |
-ms-flex-flow: row nowrap; |
| 740 |
flex-flow: row nowrap; |
| 741 |
-ms-flex-pack: start; |
| 742 |
justify-content: flex-start; |
| 743 |
-ms-flex-align: center; |
| 744 |
align-items: center; |
| 745 |
-ms-flex-item-align: stretch; |
| 746 |
align-self: stretch |
| 747 |
} |
| 748 |
.wpbc_ui_el_container.wpbc_ui_el__dropdown .ul_dropdown_menu_toggle.has_down_arrow, |
| 749 |
.wpbc_ui_el_container.wpbc_ui_el__dropdown .ul_dropdown_menu_toggle.has_down_arrow:active, |
| 750 |
.wpbc_ui_el_container.wpbc_ui_el__dropdown .ul_dropdown_menu_toggle.has_down_arrow:focus, |
| 751 |
.wpbc_ui_el_container.wpbc_ui_el__dropdown .ul_dropdown_menu_toggle.has_down_arrow:hover { |
| 752 |
background: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E") right 5px top 53% no-repeat; |
| 753 |
padding-right: min(2.2em,30px); |
| 754 |
background-size: min(1em,16px) min(1em,16px) |
| 755 |
} |
| 756 |
.wpbc_ui_el_container.wpbc_ui_el__dropdown.open .ul_dropdown_menu_toggle:focus { |
| 757 |
box-shadow: none |
| 758 |
} |
| 759 |
.wpbc_ui_el_container.wpbc_ui_el__dropdown .ul_dropdown_menu_toggle.has_border { |
| 760 |
border: 1px solid rgba(0,0,0,.1882352941); |
| 761 |
border-radius: 3px; |
| 762 |
padding-left: .7em; |
| 763 |
display: -ms-flexbox; |
| 764 |
display: flex; |
| 765 |
-ms-flex-flow: row nowrap; |
| 766 |
flex-flow: row nowrap; |
| 767 |
-ms-flex-align: center; |
| 768 |
align-items: center; |
| 769 |
-ms-flex-pack: center; |
| 770 |
justify-content: center |
| 771 |
} |
| 772 |
.wpbc_ui_el_container.wpbc_ui_el__dropdown .ul_dropdown_menu_toggle .menu_icon + .nav-tab-text { |
| 773 |
padding: 0 0 0 .7em |
| 774 |
} |
| 775 |
.wpbc_ui_el__dropdown .ul_dropdown_menu { |
| 776 |
position: absolute; |
| 777 |
top: 100%; |
| 778 |
left: 0; |
| 779 |
z-index: 99998; |
| 780 |
display: none; |
| 781 |
float: left; |
| 782 |
min-width: 160px; |
| 783 |
padding: 5px 0; |
| 784 |
padding: var(--wpbc_ui_dropdown__ul-padding); |
| 785 |
margin: 0; |
| 786 |
list-style: none; |
| 787 |
font-size: var(--wpbc_ui_dropdown__ul-font-size); |
| 788 |
text-align: left; |
| 789 |
background-color: var(--wpbc_ui_dropdown__ul-background-color); |
| 790 |
border: 1px solid rgba(0,0,0,.1); |
| 791 |
border-radius: var(--wpbc_ui_dropdown__ul-border-radius); |
| 792 |
box-shadow: 0 2px 4px rgba(0,0,0,.2); |
| 793 |
box-shadow: 0 8px 16px rgba(0,0,0,.15); |
| 794 |
background-clip: padding-box; |
| 795 |
max-height: calc(-8em + 100vh); |
| 796 |
overflow-y: auto; |
| 797 |
max-width: calc(-2em + 100vw); |
| 798 |
overflow-x: auto; |
| 799 |
scrollbar-width: thin; |
| 800 |
box-sizing: content-box; |
| 801 |
animation: .2s ease-in-out forwards wpbc_ui_el__dropdown_menu__anim__grow_down; |
| 802 |
-ms-transform-origin: top center; |
| 803 |
transform-origin: top center |
| 804 |
} |
| 805 |
.wpbc_ui_el__dropdown .ul_dropdown_menu .divider { |
| 806 |
height: 0; |
| 807 |
margin: 9px 0; |
| 808 |
overflow: hidden; |
| 809 |
background-color: #e5e5e5; |
| 810 |
border: 0; |
| 811 |
border-top: 1px solid #dcdcde; |
| 812 |
border-bottom: 1px solid #f6f7f7 |
| 813 |
} |
| 814 |
.wpbc_ui_el__dropdown .ul_dropdown_menu > li > a { |
| 815 |
color: var(--wpbc_ui_dropdown__a-color); |
| 816 |
clear: both; |
| 817 |
display: block; |
| 818 |
font-weight: 400; |
| 819 |
padding: var(--wpbc_ui_dropdown__a-padding); |
| 820 |
white-space: nowrap; |
| 821 |
font-size: var(--wpbc_ui_dropdown__a-font-size); |
| 822 |
line-height: 1.7; |
| 823 |
text-decoration: none |
| 824 |
} |
| 825 |
.wpbc_ui_el__dropdown .ul_dropdown_menu > li > a:focus, |
| 826 |
.wpbc_ui_el__dropdown .ul_dropdown_menu > li > a:hover { |
| 827 |
text-decoration: none; |
| 828 |
background: var(--wpbc_ui_dropdown__active-a-background); |
| 829 |
color: var(--wpbc_ui_dropdown__active-a-color); |
| 830 |
text-decoration-line: none; |
| 831 |
text-decoration-style: solid; |
| 832 |
outline: 0; |
| 833 |
box-shadow: none; |
| 834 |
border-radius: var(--wpbc_ui_dropdown__active-a-border-radius) |
| 835 |
} |
| 836 |
.wpbc_ui_el__dropdown .ul_dropdown_menu > li > a:focus *, |
| 837 |
.wpbc_ui_el__dropdown .ul_dropdown_menu > li > a:hover * { |
| 838 |
color: var(--wpbc_ui_dropdown__active-a-color) |
| 839 |
} |
| 840 |
.wpbc_ui_el__dropdown .ul_dropdown_menu > .disabled > a, |
| 841 |
.wpbc_ui_el__dropdown .ul_dropdown_menu > .disabled > a:focus, |
| 842 |
.wpbc_ui_el__dropdown .ul_dropdown_menu > .disabled > a:hover { |
| 843 |
text-decoration: none; |
| 844 |
background-color: transparent; |
| 845 |
background-image: none; |
| 846 |
cursor: not-allowed; |
| 847 |
color: #ccc |
| 848 |
} |
| 849 |
.wpbc_ui_el__dropdown .dropdown-header { |
| 850 |
display: block; |
| 851 |
padding: 3px 20px; |
| 852 |
font-size: 12px; |
| 853 |
line-height: 1.42857143; |
| 854 |
color: #777; |
| 855 |
white-space: nowrap |
| 856 |
} |
| 857 |
.wpbc_ui_el__dropdown .dropdown-backdrop { |
| 858 |
position: fixed; |
| 859 |
left: 0; |
| 860 |
right: 0; |
| 861 |
bottom: 0; |
| 862 |
top: 0; |
| 863 |
z-index: 990 |
| 864 |
} |
| 865 |
.wpbc_ui_el__dropdown .ul_dropdown_menu-right { |
| 866 |
left: auto; |
| 867 |
right: 0 |
| 868 |
} |
| 869 |
.wpbc_ui_el__dropdown .ul_dropdown_menu-left { |
| 870 |
left: 0; |
| 871 |
right: auto |
| 872 |
} |
| 873 |
.wpbc_ui_el__dropdown .pull-right>.ul_dropdown_menu, |
| 874 |
.wpbc_ui_el__dropdown .ul_dropdown_menu.pull-right { |
| 875 |
right: 0; |
| 876 |
left: auto |
| 877 |
} |
| 878 |
.wpbc_ui_el__dropdown .nav-tabs .ul_dropdown_menu { |
| 879 |
margin-top: -1px; |
| 880 |
border-top-right-radius: 0; |
| 881 |
border-top-left-radius: 0 |
| 882 |
} |
| 883 |
.wpbc_ui_el__dropdown .ul_dropdown_menu li { |
| 884 |
padding: 0; |
| 885 |
margin: 0 |
| 886 |
} |
| 887 |
.wpbc_ui_el__dropdown .ul_dropdown_menu li.dropdown-header { |
| 888 |
padding: 4px 10px; |
| 889 |
color: #aaa; |
| 890 |
font-size: .7em; |
| 891 |
font-style: italic; |
| 892 |
font-weight: 600 |
| 893 |
} |
| 894 |
.wpbc_ui_el__dropdown .ul_dropdown_menu > li > a.ul_dropdown_menu_li_action { |
| 895 |
display: -ms-flexbox; |
| 896 |
display: flex; |
| 897 |
-ms-flex-flow: row wrap; |
| 898 |
flex-flow: row wrap; |
| 899 |
-ms-flex-pack: start; |
| 900 |
justify-content: flex-start; |
| 901 |
-ms-flex-align: center; |
| 902 |
align-items: center |
| 903 |
} |
| 904 |
.wpbc_ui_el__dropdown .ul_dropdown_menu > li > a.ul_dropdown_menu_li_action > .menu_icon:last-child { |
| 905 |
margin-left: auto; |
| 906 |
padding-left: 1em |
| 907 |
} |
| 908 |
@keyframes wpbc_ui_el__dropdown_menu__anim__grow_down { |
| 909 |
0% { |
| 910 |
transform: scaleY(0) |
| 911 |
} |
| 912 |
50% { |
| 913 |
transform: scaleY(.9) |
| 914 |
} |
| 915 |
100% { |
| 916 |
transform: scaleY(1) |
| 917 |
} |
| 918 |
} |
| 919 |
@keyframes wpbc_ui_el__slide_to_left { |
| 920 |
0% { |
| 921 |
transform: translateX(-100%) |
| 922 |
} |
| 923 |
50% { |
| 924 |
transform: translateX(-50%) |
| 925 |
} |
| 926 |
100% { |
| 927 |
transform: translateX(0) |
| 928 |
} |
| 929 |
} |
| 930 |
@keyframes wpbc_ui_el__dropdown_menu__anim__pop_up_animation { |
| 931 |
0% { |
| 932 |
transform: scale(0) |
| 933 |
} |
| 934 |
50% { |
| 935 |
transform: scale(1.1) |
| 936 |
} |
| 937 |
100% { |
| 938 |
transform: scale(1) |
| 939 |
} |
| 940 |
} |
| 941 |
@keyframes wpbc_ui_el__dropdown_menu__anim__fade_in { |
| 942 |
0% { |
| 943 |
opacity: 0 |
| 944 |
} |
| 945 |
33% { |
| 946 |
opacity: .1 |
| 947 |
} |
| 948 |
66% { |
| 949 |
opacity: .2 |
| 950 |
} |
| 951 |
100% { |
| 952 |
opacity: 1 |
| 953 |
} |
| 954 |
} |
| 955 |
.wpbc__list__table .wpbc__list__head .ul_dropdown_menu_toggle.has_border { |
| 956 |
height: 30px |
| 957 |
} |
| 958 |
/*! = Drop Down Menu = */ |
| 959 |
.wpbc_ui_el__a { |
| 960 |
position: relative; |
| 961 |
display: -ms-flexbox; |
| 962 |
display: flex; |
| 963 |
-ms-flex-flow: row nowrap; |
| 964 |
flex-flow: row nowrap; |
| 965 |
-ms-flex-align: center; |
| 966 |
align-items: center; |
| 967 |
-ms-flex-pack: start; |
| 968 |
justify-content: flex-start |
| 969 |
} |
| 970 |
.wpbc_ui_el__a .menu_icon + .nav-tab-text { |
| 971 |
padding: 0 0 0 .7em |
| 972 |
} |
| 973 |
@media (max-width:782px) { |
| 974 |
.wpbc_admin_full_screen .wpbc_page div.wpbc_inner_message { |
| 975 |
margin: 5px 0 25px 10px; |
| 976 |
top: 0 |
| 977 |
} |
| 978 |
.wpbc_ui_el__a .menu_icon+.nav-tab-text, |
| 979 |
.wpbc_ui_el_container.wpbc_ui_el__dropdown .ul_dropdown_menu_toggle .menu_icon+.nav-tab-text, |
| 980 |
.wpbc_ui_el_container.wpbc_ui_el__dropdown .ul_dropdown_menu_toggle .nav-tab-text.hide_in_mobile { |
| 981 |
display: none |
| 982 |
} |
| 983 |
} |
| 984 |
.wpbc_ui_el__flex_right { |
| 985 |
margin-left: auto!important |
| 986 |
} |
| 987 |
.wpbc_ui__hide { |
| 988 |
display: none!important |
| 989 |
} |
| 990 |
.wpbc_ui__nowrap { |
| 991 |
-ms-flex-wrap: nowrap!important; |
| 992 |
flex-wrap: nowrap!important |
| 993 |
} |
| 994 |
.wpbc_ui_el__divider { |
| 995 |
display: -ms-flexbox; |
| 996 |
display: flex; |
| 997 |
-ms-flex-flow: row nowrap; |
| 998 |
flex-flow: row nowrap; |
| 999 |
-ms-flex-align: stretch; |
| 1000 |
align-items: stretch; |
| 1001 |
-ms-flex-pack: start; |
| 1002 |
justify-content: flex-start; |
| 1003 |
-ms-flex-item-align: stretch; |
| 1004 |
align-self: stretch |
| 1005 |
} |
| 1006 |
.wpbc_ui_el__divider .wpbc_ui_el__vertical_space { |
| 1007 |
width: 10px; |
| 1008 |
margin: 0 |
| 1009 |
} |
| 1010 |
.wpbc_ui_el__divider .wpbc_ui_el__horisontal_space { |
| 1011 |
height: 10px; |
| 1012 |
margin: 0 |
| 1013 |
} |
| 1014 |
.wpbc_ui_el__divider .wpbc_ui_el__vertical_line { |
| 1015 |
border: none; |
| 1016 |
width: 1px; |
| 1017 |
background: rgba(0,0,0,.1019607843); |
| 1018 |
margin: 0 5px |
| 1019 |
} |
| 1020 |
.wpbc_ui_el__divider .wpbc_ui_el__horisontal_line { |
| 1021 |
border: none; |
| 1022 |
height: 1px; |
| 1023 |
background: 0 0; |
| 1024 |
margin: 5px 0; |
| 1025 |
-ms-flex: 1 1 100%; |
| 1026 |
flex: 1 1 100%; |
| 1027 |
border-bottom: 1px solid rgba(0,0,0,.1098039216) |
| 1028 |
} |
| 1029 |
.wpbc_ui_el__divider:has(.wpbc_ui_el__horisontal_line) { |
| 1030 |
clear: both; |
| 1031 |
width: 100%; |
| 1032 |
min-width: 100%; |
| 1033 |
max-width: 100% |
| 1034 |
} |
| 1035 |
.wpbc_ui_el__level__folder.expanded .wpbc_ui_el__divider:has(.wpbc_ui_el__horisontal_line) { |
| 1036 |
margin-left: 40px |
| 1037 |
} |
| 1038 |
.wpbc_settings_page_wrapper.compact .wpbc_ui_el__level__folder.expanded .wpbc_ui_el__divider:has(.wpbc_ui_el__horisontal_line) { |
| 1039 |
margin-left: 15px |
| 1040 |
} |
| 1041 |
.wpbc_ui_el__row100 { |
| 1042 |
display: -ms-flexbox; |
| 1043 |
display: flex; |
| 1044 |
-ms-flex-flow: row wrap; |
| 1045 |
flex-flow: row wrap; |
| 1046 |
-ms-flex-pack: start; |
| 1047 |
justify-content: flex-start; |
| 1048 |
-ms-flex-align: center; |
| 1049 |
align-items: center; |
| 1050 |
width: 100%; |
| 1051 |
min-width: 100%; |
| 1052 |
max-width: 100% |
| 1053 |
} |
| 1054 |
.wpbc_ui_el__vetical_line { |
| 1055 |
display: inline-block; |
| 1056 |
border-right: 1px solid #848484; |
| 1057 |
margin: 0 7px -1px; |
| 1058 |
width: 0; |
| 1059 |
background: #7b7b7b; |
| 1060 |
height: 1em; |
| 1061 |
box-sizing: border-box; |
| 1062 |
border-left: 1px solid #555; |
| 1063 |
padding: 0 |
| 1064 |
} |
| 1065 |
.wpbc_ui_el__make_space { |
| 1066 |
-ms-flex: 1; |
| 1067 |
flex: 1 |
| 1068 |
} |
| 1069 |
.wpbc_admin .wpbc_page div.wpbc_inner_message { |
| 1070 |
position: fixed; |
| 1071 |
top: calc(var(--wpbc_ui_top_nav__wp_top_menu_height) + 3px); |
| 1072 |
top: calc(var(--wpbc_ui_top_nav__wp_top_menu_height) + 55px); |
| 1073 |
right: 10px; |
| 1074 |
padding: 10px 12px; |
| 1075 |
word-break: break-all; |
| 1076 |
max-width: 50%; |
| 1077 |
z-index: 90001 |
| 1078 |
} |
| 1079 |
.wpbc_admin_full_screen .wpbc_admin .wpbc_page div.wpbc_inner_message { |
| 1080 |
top: calc(var(--wpbc_ui_top_nav__wp_top_menu_height) + 55px); |
| 1081 |
right: 5px |
| 1082 |
} |
| 1083 |
.wpbc_svg_icon_class { |
| 1084 |
display: inline-block; |
| 1085 |
background-position: 0 1px; |
| 1086 |
background-repeat: no-repeat; |
| 1087 |
background-size: 24px auto; |
| 1088 |
width: 24px; |
| 1089 |
height: 24px |
| 1090 |
} |
| 1091 |
.wpbc_ui_el__horis_top_bar__content .wpbc_ui__is_send_emails_toggle { |
| 1092 |
font-size: 13px; |
| 1093 |
line-height: 1.4; |
| 1094 |
border-left: 1px solid var(--wpbc_ui_horis_top_nav__normal_color); |
| 1095 |
padding-left: 15px; |
| 1096 |
margin-left: auto; |
| 1097 |
min-height: 30px; |
| 1098 |
-ms-flex-align: center; |
| 1099 |
align-items: center |
| 1100 |
} |
| 1101 |
#wpbc_settings_advancedcost_metabox tr { |
| 1102 |
display: -ms-flexbox; |
| 1103 |
display: flex; |
| 1104 |
-ms-flex-flow: column nowrap; |
| 1105 |
flex-flow: column nowrap; |
| 1106 |
-ms-flex-pack: center; |
| 1107 |
justify-content: center; |
| 1108 |
-ms-flex-align: start; |
| 1109 |
align-items: flex-start |
| 1110 |
} |
| 1111 |
#wpbc_settings_advancedcost_metabox tr th { |
| 1112 |
font-size: 1.2em; |
| 1113 |
padding: 10px 0 |
| 1114 |
} |
| 1115 |
#wpbc_settings_advancedcost_metabox tr td { |
| 1116 |
padding-left: 3em |
| 1117 |
} |
| 1118 |
.container_for_save_buttons { |
| 1119 |
display: -ms-flexbox; |
| 1120 |
display: flex; |
| 1121 |
-ms-flex-flow: row wrap; |
| 1122 |
flex-flow: row wrap; |
| 1123 |
-ms-flex-pack: start; |
| 1124 |
justify-content: flex-start; |
| 1125 |
-ms-flex-align: center; |
| 1126 |
align-items: center; |
| 1127 |
margin-top: 20px; |
| 1128 |
padding: 10px |
| 1129 |
} |
| 1130 |
.container_for_save_buttons .sub_right, |
| 1131 |
.container_for_save_buttons a:nth-child(2) { |
| 1132 |
margin-left: auto |
| 1133 |
} |
| 1134 |
.wpbc_page { |
| 1135 |
--wpbc_form-field-border-size: 1px; |
| 1136 |
--wpbc_form-button-background-color: var(--wpbc_admin-theme-color, #066aab ); |
| 1137 |
--wpbc_form-field-text-color: rgba(0, 0, 0, 0.7) |
| 1138 |
} |
| 1139 |
.wp-core-ui .wpbc_page input[type=checkbox]:focus, |
| 1140 |
.wp-core-ui .wpbc_page input[type=date]:focus, |
| 1141 |
.wp-core-ui .wpbc_page input[type=datetime-local]:focus, |
| 1142 |
.wp-core-ui .wpbc_page input[type=datetime]:focus, |
| 1143 |
.wp-core-ui .wpbc_page input[type=email]:focus, |
| 1144 |
.wp-core-ui .wpbc_page input[type=month]:focus, |
| 1145 |
.wp-core-ui .wpbc_page input[type=number]:focus, |
| 1146 |
.wp-core-ui .wpbc_page input[type=password]:focus, |
| 1147 |
.wp-core-ui .wpbc_page input[type=radio]:focus, |
| 1148 |
.wp-core-ui .wpbc_page input[type=range]:focus, |
| 1149 |
.wp-core-ui .wpbc_page input[type=search]:focus, |
| 1150 |
.wp-core-ui .wpbc_page input[type=tel]:focus, |
| 1151 |
.wp-core-ui .wpbc_page input[type=text]:focus, |
| 1152 |
.wp-core-ui .wpbc_page input[type=time]:focus, |
| 1153 |
.wp-core-ui .wpbc_page input[type=url]:focus, |
| 1154 |
.wp-core-ui .wpbc_page input[type=week]:focus, |
| 1155 |
.wp-core-ui .wpbc_page select:focus, |
| 1156 |
.wp-core-ui .wpbc_page textarea:focus { |
| 1157 |
border-width: var(--wpbc_form-field-border-size); |
| 1158 |
border-style: solid; |
| 1159 |
border-color: var(--wpbc_form-button-background-color); |
| 1160 |
box-shadow: 0 0 0 1.2px var(--wpbc_form-button-background-color),0 1px 2px rgba(0,0,0,.15); |
| 1161 |
outline: 0 |
| 1162 |
} |
| 1163 |
.chzn-container * { |
| 1164 |
box-sizing: border-box |
| 1165 |
} |
| 1166 |
.chzn-container .chzn-drop { |
| 1167 |
position: absolute; |
| 1168 |
top: 100%; |
| 1169 |
z-index: 1010; |
| 1170 |
width: 100%; |
| 1171 |
border: 1px solid rgba(0,0,0,.1882352941); |
| 1172 |
box-shadow: 0 4px 8px rgba(0,0,0,.09); |
| 1173 |
margin-top: 1px; |
| 1174 |
border-top: 0; |
| 1175 |
background: #fff; |
| 1176 |
clip: rect(0,0,0,0); |
| 1177 |
clip-path: inset(100% 100%) |
| 1178 |
} |
| 1179 |
.chzn-container.chzn-with-drop .chzn-drop { |
| 1180 |
clip: auto; |
| 1181 |
clip-path: none |
| 1182 |
} |
| 1183 |
.chzn-container a { |
| 1184 |
cursor: pointer |
| 1185 |
} |
| 1186 |
.chzn-container .chzn-single .group-name, |
| 1187 |
.chzn-container .search-choice .group-name { |
| 1188 |
margin-right: 4px; |
| 1189 |
overflow: hidden; |
| 1190 |
white-space: nowrap; |
| 1191 |
text-overflow: ellipsis; |
| 1192 |
font-weight: 400; |
| 1193 |
color: #999 |
| 1194 |
} |
| 1195 |
.chzn-container .chzn-single .group-name:after, |
| 1196 |
.chzn-container .search-choice .group-name:after { |
| 1197 |
content: ":"; |
| 1198 |
padding-left: 2px; |
| 1199 |
vertical-align: top |
| 1200 |
} |
| 1201 |
.chzn-container-single .chzn-single { |
| 1202 |
position: relative; |
| 1203 |
display: block; |
| 1204 |
overflow: hidden; |
| 1205 |
padding: 0 0 0 8px; |
| 1206 |
height: 25px; |
| 1207 |
border: 1px solid #aaa; |
| 1208 |
border-radius: 5px; |
| 1209 |
background-color: #fff; |
| 1210 |
background: linear-gradient(#fff 20%,#f6f6f6 50%,#eee 52%,#f4f4f4 100%); |
| 1211 |
background-clip: padding-box; |
| 1212 |
box-shadow: 0 0 3px #fff inset,0 1px 1px rgba(0,0,0,.1); |
| 1213 |
color: #444; |
| 1214 |
text-decoration: none; |
| 1215 |
white-space: nowrap; |
| 1216 |
line-height: 24px |
| 1217 |
} |
| 1218 |
.chzn-container-single .chzn-default { |
| 1219 |
color: #999 |
| 1220 |
} |
| 1221 |
.chzn-container-single .chzn-single span { |
| 1222 |
display: block; |
| 1223 |
overflow: hidden; |
| 1224 |
margin-right: 26px; |
| 1225 |
text-overflow: ellipsis; |
| 1226 |
white-space: nowrap |
| 1227 |
} |
| 1228 |
.chzn-container-single .chzn-single-with-deselect span { |
| 1229 |
margin-right: 38px |
| 1230 |
} |
| 1231 |
.chzn-container-single .chzn-single abbr { |
| 1232 |
position: absolute; |
| 1233 |
top: 6px; |
| 1234 |
right: 26px; |
| 1235 |
display: block; |
| 1236 |
width: 12px; |
| 1237 |
height: 12px; |
| 1238 |
font-size: 1px |
| 1239 |
} |
| 1240 |
.chzn-container-single .chzn-single abbr:hover, |
| 1241 |
.chzn-container-single.chzn-disabled .chzn-single abbr:hover { |
| 1242 |
background-position: -42px -10px |
| 1243 |
} |
| 1244 |
.chzn-container-single .chzn-single div { |
| 1245 |
position: absolute; |
| 1246 |
top: 0; |
| 1247 |
right: 0; |
| 1248 |
display: block; |
| 1249 |
width: 18px; |
| 1250 |
height: 100% |
| 1251 |
} |
| 1252 |
.chzn-container-single .chzn-single div b { |
| 1253 |
display: block; |
| 1254 |
width: 100%; |
| 1255 |
height: 100% |
| 1256 |
} |
| 1257 |
.chzn-container-single .chzn-search { |
| 1258 |
position: relative; |
| 1259 |
z-index: 1010; |
| 1260 |
margin: 0; |
| 1261 |
padding: 3px 4px; |
| 1262 |
white-space: nowrap |
| 1263 |
} |
| 1264 |
.chzn-container-single .chzn-search input[type=text] { |
| 1265 |
margin: 1px 0; |
| 1266 |
padding: 4px 20px 4px 5px; |
| 1267 |
width: 100%; |
| 1268 |
height: auto; |
| 1269 |
outline: 0; |
| 1270 |
border: 1px solid #aaa; |
| 1271 |
font-size: 1em; |
| 1272 |
font-family: sans-serif; |
| 1273 |
line-height: normal; |
| 1274 |
border-radius: 0 |
| 1275 |
} |
| 1276 |
.chzn-container-single .chzn-drop { |
| 1277 |
margin-top: -1px; |
| 1278 |
border-radius: 0 0 4px 4px; |
| 1279 |
background-clip: padding-box |
| 1280 |
} |
| 1281 |
.chzn-container-single.chzn-container-single-nosearch .chzn-search { |
| 1282 |
position: absolute; |
| 1283 |
clip: rect(0,0,0,0); |
| 1284 |
clip-path: inset(100% 100%) |
| 1285 |
} |
| 1286 |
.chzn-container .chzn-results { |
| 1287 |
color: #444; |
| 1288 |
position: relative; |
| 1289 |
overflow-x: hidden; |
| 1290 |
overflow-y: auto; |
| 1291 |
margin: 0 4px 4px 0; |
| 1292 |
padding: 0 0 0 4px; |
| 1293 |
max-height: 240px; |
| 1294 |
-webkit-overflow-scrolling: touch |
| 1295 |
} |
| 1296 |
.chzn-container .chzn-results li { |
| 1297 |
display: none; |
| 1298 |
margin: 0; |
| 1299 |
padding: 5px 6px; |
| 1300 |
list-style: none; |
| 1301 |
line-height: 1.5em; |
| 1302 |
word-wrap: break-word; |
| 1303 |
-webkit-touch-callout: none |
| 1304 |
} |
| 1305 |
.chzn-container .chzn-results li.active-result { |
| 1306 |
display: list-item; |
| 1307 |
cursor: pointer |
| 1308 |
} |
| 1309 |
.chzn-container .chzn-results li.disabled-result { |
| 1310 |
display: list-item; |
| 1311 |
color: #ccc; |
| 1312 |
cursor: default |
| 1313 |
} |
| 1314 |
.chzn-container .chzn-results li.no-results { |
| 1315 |
color: #777; |
| 1316 |
display: list-item; |
| 1317 |
background: #f4f4f4 |
| 1318 |
} |
| 1319 |
.chzn-container .chzn-results li.group-result { |
| 1320 |
display: list-item; |
| 1321 |
font-weight: 700; |
| 1322 |
cursor: default |
| 1323 |
} |
| 1324 |
.chzn-container .chzn-results li.group-option { |
| 1325 |
padding-left: 15px |
| 1326 |
} |
| 1327 |
.chzn-container .chzn-results li em { |
| 1328 |
font-style: normal; |
| 1329 |
text-decoration: underline |
| 1330 |
} |
| 1331 |
.chzn-container-multi .chzn-choices { |
| 1332 |
position: relative; |
| 1333 |
overflow: hidden; |
| 1334 |
margin: 0; |
| 1335 |
padding: 0 5px; |
| 1336 |
width: 100%; |
| 1337 |
height: auto; |
| 1338 |
border: 1px solid #aaa; |
| 1339 |
background-color: #fff; |
| 1340 |
background-image: linear-gradient(#eee 1%,#fff 15%); |
| 1341 |
cursor: text |
| 1342 |
} |
| 1343 |
.chzn-container-multi .chzn-choices li { |
| 1344 |
float: left; |
| 1345 |
list-style: none |
| 1346 |
} |
| 1347 |
.chzn-container-multi .chzn-choices li.search-field { |
| 1348 |
margin: 0; |
| 1349 |
padding: 0; |
| 1350 |
white-space: nowrap |
| 1351 |
} |
| 1352 |
.chzn-container-multi .chzn-choices li.search-field input[type=text] { |
| 1353 |
margin: 1px 0; |
| 1354 |
padding: 0; |
| 1355 |
height: 25px; |
| 1356 |
outline: 0; |
| 1357 |
border: 0!important; |
| 1358 |
background: 0 0!important; |
| 1359 |
box-shadow: none; |
| 1360 |
color: #999; |
| 1361 |
font-size: 100%; |
| 1362 |
font-family: sans-serif; |
| 1363 |
line-height: normal; |
| 1364 |
border-radius: 0; |
| 1365 |
width: 25px |
| 1366 |
} |
| 1367 |
.chzn-container-multi .chzn-choices li.search-choice { |
| 1368 |
position: relative; |
| 1369 |
margin: 3px 5px 3px 0; |
| 1370 |
padding: 3px 20px 3px 5px; |
| 1371 |
border: 1px solid #aaa; |
| 1372 |
max-width: 100%; |
| 1373 |
border-radius: 3px; |
| 1374 |
background-color: #eee; |
| 1375 |
background-image: linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%); |
| 1376 |
background-size: 100% 19px; |
| 1377 |
background-repeat: repeat-x; |
| 1378 |
background-clip: padding-box; |
| 1379 |
box-shadow: 0 0 2px #fff inset,0 1px 0 rgba(0,0,0,.05); |
| 1380 |
color: #333; |
| 1381 |
line-height: 13px; |
| 1382 |
cursor: default |
| 1383 |
} |
| 1384 |
.chzn-container-multi .chzn-choices li.search-choice span { |
| 1385 |
word-wrap: break-word; |
| 1386 |
text-overflow: ellipsis; |
| 1387 |
overflow: hidden |
| 1388 |
} |
| 1389 |
.chzn-container-multi .chzn-choices li.search-choice .search-choice-close { |
| 1390 |
margin: 0 0 0 11px; |
| 1391 |
position: relative; |
| 1392 |
color: #595959 |
| 1393 |
} |
| 1394 |
.chzn-container-multi .chzn-choices .search-choice a.search-choice-close:before { |
| 1395 |
font-family: wpbc-material-icons; |
| 1396 |
display: inline-block; |
| 1397 |
font-variant: normal; |
| 1398 |
font-weight: 400; |
| 1399 |
font-style: normal; |
| 1400 |
line-height: 1; |
| 1401 |
letter-spacing: normal; |
| 1402 |
text-transform: none; |
| 1403 |
white-space: nowrap; |
| 1404 |
word-wrap: normal; |
| 1405 |
direction: ltr; |
| 1406 |
vertical-align: -.20125em; |
| 1407 |
font-feature-settings: "liga"; |
| 1408 |
-moz-font-feature-settings: "liga"; |
| 1409 |
-webkit-font-smoothing: antialiased; |
| 1410 |
text-rendering: optimizeLegibility; |
| 1411 |
-moz-osx-font-smoothing: grayscale; |
| 1412 |
content: "\e5cd"; |
| 1413 |
font-size: 13px; |
| 1414 |
margin: 1px 0 0 |
| 1415 |
} |
| 1416 |
.chzn-container-multi .chzn-choices li.search-choice .search-choice-close:hover { |
| 1417 |
background-position: -42px -10px |
| 1418 |
} |
| 1419 |
.chzn-container-multi .chzn-choices li.search-choice-disabled { |
| 1420 |
padding-right: 5px; |
| 1421 |
border: 1px solid #ccc; |
| 1422 |
background-color: #e4e4e4; |
| 1423 |
background-image: linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%); |
| 1424 |
color: #666 |
| 1425 |
} |
| 1426 |
.chzn-container-multi .chzn-choices li.search-choice-focus { |
| 1427 |
background: #d4d4d4 |
| 1428 |
} |
| 1429 |
.chzn-container-multi .chzn-choices li.search-choice-focus .search-choice-close { |
| 1430 |
background-position: -42px -10px |
| 1431 |
} |
| 1432 |
.chzn-container-multi .chzn-results { |
| 1433 |
margin: 0; |
| 1434 |
padding: 0 |
| 1435 |
} |
| 1436 |
.chzn-container-multi .chzn-drop .result-selected { |
| 1437 |
display: list-item; |
| 1438 |
color: #ccc; |
| 1439 |
cursor: default |
| 1440 |
} |
| 1441 |
.chzn-container-active .chzn-single { |
| 1442 |
border: 1px solid #5897fb; |
| 1443 |
box-shadow: 0 0 5px rgba(0,0,0,.3) |
| 1444 |
} |
| 1445 |
.chzn-container-active.chzn-with-drop .chzn-single { |
| 1446 |
border: 1px solid #aaa; |
| 1447 |
border-bottom-right-radius: 0; |
| 1448 |
border-bottom-left-radius: 0; |
| 1449 |
background-image: linear-gradient(#eee 20%,#fff 80%); |
| 1450 |
box-shadow: 0 1px 0 #fff inset |
| 1451 |
} |
| 1452 |
.chzn-container-active.chzn-with-drop .chzn-single div { |
| 1453 |
border-left: none; |
| 1454 |
background: 0 0 |
| 1455 |
} |
| 1456 |
.chzn-container-active.chzn-with-drop .chzn-single div b { |
| 1457 |
background-position: -18px 2px |
| 1458 |
} |
| 1459 |
.chzn-container-active .chzn-choices li.search-field input[type=text] { |
| 1460 |
color: #222!important |
| 1461 |
} |
| 1462 |
.chzn-disabled { |
| 1463 |
opacity: .5!important; |
| 1464 |
cursor: default |
| 1465 |
} |
| 1466 |
.chzn-disabled .chzn-choices .search-choice .search-choice-close, |
| 1467 |
.chzn-disabled .chzn-single { |
| 1468 |
cursor: default |
| 1469 |
} |
| 1470 |
.chzn-rtl { |
| 1471 |
text-align: right |
| 1472 |
} |
| 1473 |
.chzn-rtl .chzn-single { |
| 1474 |
overflow: visible; |
| 1475 |
padding: 0 8px 0 0 |
| 1476 |
} |
| 1477 |
.chzn-rtl .chzn-single span { |
| 1478 |
margin-right: 0; |
| 1479 |
margin-left: 26px; |
| 1480 |
direction: rtl |
| 1481 |
} |
| 1482 |
.chzn-rtl .chzn-single-with-deselect span { |
| 1483 |
margin-left: 38px |
| 1484 |
} |
| 1485 |
.chzn-rtl .chzn-single div { |
| 1486 |
right: auto; |
| 1487 |
left: 3px |
| 1488 |
} |
| 1489 |
.chzn-rtl .chzn-single abbr { |
| 1490 |
right: auto; |
| 1491 |
left: 26px |
| 1492 |
} |
| 1493 |
.chzn-rtl .chzn-choices li { |
| 1494 |
float: right |
| 1495 |
} |
| 1496 |
.chzn-rtl .chzn-choices li.search-field input[type=text] { |
| 1497 |
direction: rtl |
| 1498 |
} |
| 1499 |
.chzn-rtl .chzn-choices li.search-choice { |
| 1500 |
margin: 3px 5px 3px 0; |
| 1501 |
padding: 3px 5px 3px 19px |
| 1502 |
} |
| 1503 |
.chzn-rtl .chzn-choices li.search-choice .search-choice-close { |
| 1504 |
right: auto; |
| 1505 |
left: 4px |
| 1506 |
} |
| 1507 |
.chzn-rtl.chzn-container-single .chzn-results { |
| 1508 |
margin: 0 0 4px 4px; |
| 1509 |
padding: 0 4px 0 0 |
| 1510 |
} |
| 1511 |
.chzn-rtl .chzn-results li.group-option { |
| 1512 |
padding-right: 15px; |
| 1513 |
padding-left: 0 |
| 1514 |
} |
| 1515 |
.chzn-rtl.chzn-container-active.chzn-with-drop .chzn-single div { |
| 1516 |
border-right: none |
| 1517 |
} |
| 1518 |
.chzn-rtl .chzn-search input[type=text] { |
| 1519 |
padding: 4px 5px 4px 20px; |
| 1520 |
direction: rtl |
| 1521 |
} |
| 1522 |
.chzn-rtl.chzn-container-single .chzn-single div b { |
| 1523 |
background-position: 6px 2px |
| 1524 |
} |
| 1525 |
.chzn-rtl.chzn-container-single.chzn-with-drop .chzn-single div b { |
| 1526 |
background-position: -12px 2px |
| 1527 |
} |
| 1528 |
@media only screen and (min-resolution:144dpi), |
| 1529 |
only screen and (min-resolution:1.5dppx) { |
| 1530 |
.chzn-container .chzn-results-scroll-down span, |
| 1531 |
.chzn-container .chzn-results-scroll-up span, |
| 1532 |
.chzn-container-multi .chzn-choices .search-choice .search-choice-close, |
| 1533 |
.chzn-container-single .chzn-search input[type=text], |
| 1534 |
.chzn-container-single .chzn-single abbr, |
| 1535 |
.chzn-container-single .chzn-single div b, |
| 1536 |
.chzn-rtl .chzn-search input[type=text] { |
| 1537 |
background-size: 52px 37px!important; |
| 1538 |
background-repeat: no-repeat!important |
| 1539 |
} |
| 1540 |
} |
| 1541 |
.wpbc_ui_el__choosen { |
| 1542 |
--wpbc_form-button-background-color: var(--wpbc_admin-theme-color, #066aab ); |
| 1543 |
display: -ms-flexbox; |
| 1544 |
display: flex; |
| 1545 |
-ms-flex-flow: row nowrap; |
| 1546 |
flex-flow: row nowrap; |
| 1547 |
-ms-flex-pack: start; |
| 1548 |
justify-content: flex-start; |
| 1549 |
-ms-flex-align: start; |
| 1550 |
align-items: flex-start; |
| 1551 |
margin: 0 |
| 1552 |
} |
| 1553 |
.chzn-container { |
| 1554 |
-webkit-user-select: none; |
| 1555 |
-ms-user-select: none; |
| 1556 |
user-select: none; |
| 1557 |
box-shadow: none; |
| 1558 |
border: 1px solid rgba(0,0,0,.1882352941); |
| 1559 |
box-sizing: border-box; |
| 1560 |
display: -ms-flexbox; |
| 1561 |
display: flex; |
| 1562 |
-ms-flex-flow: row wrap; |
| 1563 |
flex-flow: row wrap; |
| 1564 |
-ms-flex-pack: start; |
| 1565 |
justify-content: flex-start; |
| 1566 |
-ms-flex-align: start; |
| 1567 |
align-items: flex-start; |
| 1568 |
width: auto!important; |
| 1569 |
min-width: 100%; |
| 1570 |
margin: 0; |
| 1571 |
position: relative; |
| 1572 |
border-radius: 2px; |
| 1573 |
background: #fff |
| 1574 |
} |
| 1575 |
.wpbc_ui_el__choosen .chzn-container-multi .chzn-choices { |
| 1576 |
-ms-flex: 0 1 auto; |
| 1577 |
flex: 0 1 auto; |
| 1578 |
display: -ms-flexbox; |
| 1579 |
display: flex; |
| 1580 |
-ms-flex-flow: row wrap; |
| 1581 |
flex-flow: row wrap; |
| 1582 |
-ms-flex-pack: start; |
| 1583 |
justify-content: flex-start; |
| 1584 |
-ms-flex-align: start; |
| 1585 |
align-items: flex-start; |
| 1586 |
padding: 0 80px 0 0; |
| 1587 |
border: 0; |
| 1588 |
border-radius: 0; |
| 1589 |
background: 0 0 |
| 1590 |
} |
| 1591 |
.wpbc_ui_el__choosen .chzn-container-multi .chzn-choices li.search-choice { |
| 1592 |
margin: 5px; |
| 1593 |
border: 0; |
| 1594 |
box-shadow: none; |
| 1595 |
line-height: 1; |
| 1596 |
padding: 5px 6px 5px 8px; |
| 1597 |
font-size: 13px; |
| 1598 |
display: -ms-flexbox; |
| 1599 |
display: flex; |
| 1600 |
-ms-flex-flow: row nowrap; |
| 1601 |
flex-flow: row nowrap; |
| 1602 |
-ms-flex-pack: start; |
| 1603 |
justify-content: flex-start; |
| 1604 |
-ms-flex-align: first baseline; |
| 1605 |
align-items: first baseline; |
| 1606 |
width: auto; |
| 1607 |
box-sizing: content-box; |
| 1608 |
background: #6b96ce!important; |
| 1609 |
background: rgb(from var(--wpbc_admin-theme-color,#6b96ce) r g b/var(--wpbc_admin-theme-opacity,80%))!important; |
| 1610 |
background: var(--wpbc_admin-resource-badge-color,#556e91)!important; |
| 1611 |
color: #fff!important |
| 1612 |
} |
| 1613 |
.wpbc_ui_el__choosen .chzn-container-multi .chzn-choices .search-field { |
| 1614 |
-ms-flex: 1 1 1%; |
| 1615 |
flex: 1 1 1%; |
| 1616 |
-ms-flex-item-align: stretch; |
| 1617 |
align-self: stretch |
| 1618 |
} |
| 1619 |
.wpbc_ui_el__choosen .chzn-container-multi .chzn-choices li.search-field input[type=text] { |
| 1620 |
height: 35px; |
| 1621 |
padding: 0 10px; |
| 1622 |
font-size: 14px; |
| 1623 |
width: auto |
| 1624 |
} |
| 1625 |
.wpbc_ui_el__choosen .chzn-container-multi .chzn-choices .search-choice a.search-choice-close { |
| 1626 |
color: #fff!important |
| 1627 |
} |
| 1628 |
.wpbc_ui_el__choosen .chzn-container-multi .chzn-choices .search-choice a.search-choice-close::before { |
| 1629 |
font-size: 15px |
| 1630 |
} |
| 1631 |
.wpbc_ui_el__choosen .chzn-container-multi .chzn-results { |
| 1632 |
scrollbar-width: thin |
| 1633 |
} |
| 1634 |
.wpbc_ui_el__choosen .chzn-container-multi.chzn-container-active { |
| 1635 |
border-width: 1px; |
| 1636 |
border-style: solid; |
| 1637 |
border-color: var(--wpbc_form-button-background-color)!important; |
| 1638 |
box-shadow: 0 0 0 1.2px var(--wpbc_form-button-background-color),0 1px 2px rgba(0,0,0,.15)!important |
| 1639 |
} |
| 1640 |
.wpbc_ui_el__choosen .chzn-right-buttons { |
| 1641 |
float: left; |
| 1642 |
margin: 0 0 0 -100px |
| 1643 |
} |
| 1644 |
.wpbc_ui_el__choosen .wpbc_ui_el__choosen_reset_buttons { |
| 1645 |
z-index: 1; |
| 1646 |
padding: 0; |
| 1647 |
margin: 0 0 0 -72px; |
| 1648 |
-ms-flex-flow: row nowrap; |
| 1649 |
flex-flow: row nowrap; |
| 1650 |
-ms-flex-align: center; |
| 1651 |
align-items: center; |
| 1652 |
-ms-flex-pack: start; |
| 1653 |
justify-content: flex-start; |
| 1654 |
-ms-flex-item-align: center; |
| 1655 |
align-self: center; |
| 1656 |
display: none |
| 1657 |
} |
| 1658 |
.wpbc_ui_el__choosen .wpbc_ui_el__choosen_reset_buttons a { |
| 1659 |
padding: 0 9px; |
| 1660 |
cursor: pointer; |
| 1661 |
box-sizing: content-box |
| 1662 |
} |
| 1663 |
.wpbc_ui_el__choosen .wpbc_ui_el__choosen_reset_buttons a:last-child { |
| 1664 |
border-left: 1px solid #bebebe |
| 1665 |
} |
| 1666 |
.wpbc_ui_el__choosen .wpbc_ui_el__choosen_reset_buttons .wpbc_icn_close::before, |
| 1667 |
.wpbc_ui_el__choosen .wpbc_ui_el__choosen_reset_buttons .wpbc_icn_refresh::before { |
| 1668 |
font-size: 18px; |
| 1669 |
color: var(--wpbc_admin-theme-color,#036aab) |
| 1670 |
} |
| 1671 |
.wpbc_page_tab__vm_booking_listing .wpbc_ui_el__choosen .wpbc_ui_el__choosen_reset_buttons { |
| 1672 |
margin: 0 0 0 -38px |
| 1673 |
} |
| 1674 |
.wpbc_ui_el__choosen .chzn-container-multi .chzn-choices { |
| 1675 |
-ms-flex-item-align: center; |
| 1676 |
align-self: center |
| 1677 |
} |
| 1678 |
.wpbc_ui_el__choosen .chzn-container-multi .chzn-choices .search-field input { |
| 1679 |
height: 26px; |
| 1680 |
line-height: 14px; |
| 1681 |
font-size: 12px; |
| 1682 |
margin: 0; |
| 1683 |
padding: 0 0 0 10px |
| 1684 |
} |
| 1685 |
.wpbc_ui_el__choosen .chzn-container-multi .chzn-choices .search-choice { |
| 1686 |
white-space: nowrap; |
| 1687 |
background: #eee; |
| 1688 |
margin: 4px 0 0 5px; |
| 1689 |
padding: 2px 20px 0 5px |
| 1690 |
} |
| 1691 |
.wpbc_ui_el__choosen .chzn-container-multi .chzn-choices .search-choice a.search-choice-close0 { |
| 1692 |
background: 0 0; |
| 1693 |
display: inline-block; |
| 1694 |
font-family: "Glyphicons Halflings"; |
| 1695 |
font-style: normal; |
| 1696 |
font-weight: 400; |
| 1697 |
font-size: 9px; |
| 1698 |
line-height: 1; |
| 1699 |
position: relative; |
| 1700 |
top: 1px; |
| 1701 |
left: 12px; |
| 1702 |
color: #555; |
| 1703 |
text-decoration: none |
| 1704 |
} |
| 1705 |
.wpbc_ui_el__choosen .chzn-container-multi .chzn-choices .search-choice a.search-choice-close0:hover { |
| 1706 |
text-decoration: none |
| 1707 |
} |
| 1708 |
.wpbc_ui_el__choosen .chzn-container-multi .chzn-choices .search-choice a.search-choice-close0:before { |
| 1709 |
content: "\e014" |
| 1710 |
} |
| 1711 |
.wpbc_ui_el__choosen .chzn-container { |
| 1712 |
font-weight: 400; |
| 1713 |
font-size: 14px; |
| 1714 |
-ms-flex-item-align: stretch; |
| 1715 |
align-self: stretch |
| 1716 |
} |
| 1717 |
.wpbc_ui_el__choosen .chzn-container .chzn-results .highlighted { |
| 1718 |
background: rgb(from var(--wpbc_admin-theme-color,#6b96ce) r g b/var(--wpbc_admin-theme-opacity,80%)); |
| 1719 |
color: #fff |
| 1720 |
} |
| 1721 |
@media (max-width:782px) { |
| 1722 |
.wpbc_ui_el__choosen .chzn-container-multi .chzn-choices { |
| 1723 |
min-height: 34px!important; |
| 1724 |
display: -ms-flexbox; |
| 1725 |
display: flex; |
| 1726 |
-ms-flex-flow: row wrap; |
| 1727 |
flex-flow: row wrap; |
| 1728 |
-ms-flex-pack: start; |
| 1729 |
justify-content: flex-start; |
| 1730 |
-ms-flex-align: center; |
| 1731 |
align-items: center |
| 1732 |
} |
| 1733 |
.wpbc_ui_el__choosen .chzn-container-multi .chzn-choices .search-choice { |
| 1734 |
margin: 5px 0 1px 5px; |
| 1735 |
padding: 4px 20px 3px 5px |
| 1736 |
} |
| 1737 |
} |
| 1738 |
.bookingpage .wpdevelop .wpbc_ui_el__choosen a.chzn-single { |
| 1739 |
height: 23px; |
| 1740 |
margin-top: 2px |
| 1741 |
} |
| 1742 |
.wpbc_page_tab__vm_calendar .wpbc_ui_el__choosen { |
| 1743 |
margin: 0 0 20px |
| 1744 |
} |
| 1745 |
/*! = Settings Page Structure = */ |
| 1746 |
.wpbc_settings_page_wrapper { |
| 1747 |
display: -ms-flexbox; |
| 1748 |
display: flex; |
| 1749 |
-ms-flex-flow: row nowrap; |
| 1750 |
flex-flow: row nowrap; |
| 1751 |
-ms-flex-pack: start; |
| 1752 |
justify-content: flex-start; |
| 1753 |
-ms-flex-align: stretch; |
| 1754 |
align-items: stretch; |
| 1755 |
margin-top: calc(var(--wpbc_ui_top_nav__height) - 1px) |
| 1756 |
} |
| 1757 |
.wp-toolbar .wpbc_admin_full_screen .wpbc_settings_page_wrapper { |
| 1758 |
margin-top: calc(var(--wpbc_ui_top_nav__height) - 1px - 32px) |
| 1759 |
} |
| 1760 |
.wpbc_settings_page_content { |
| 1761 |
-ms-flex: 1 1 1%; |
| 1762 |
flex: 1 1 1%; |
| 1763 |
overflow: hidden |
| 1764 |
} |
| 1765 |
.wpbc_settings_flex_container_right { |
| 1766 |
max-width: 100% |
| 1767 |
} |
| 1768 |
.wpbc_settings_page_content .wpbc_settings_page_header_title { |
| 1769 |
font-size: 25px; |
| 1770 |
font-weight: 600; |
| 1771 |
margin: 0; |
| 1772 |
padding: 0; |
| 1773 |
line-height: 1.8; |
| 1774 |
min-width: 300px |
| 1775 |
} |
| 1776 |
.wpbc_settings_page_content .wpbc_settings_page_header_title_description { |
| 1777 |
font-size: 13px; |
| 1778 |
line-height: 1.5; |
| 1779 |
margin: 0 0 20px; |
| 1780 |
min-width: 300px |
| 1781 |
} |
| 1782 |
body[class*=page_wpbc] #wpcontent .wpbc_settings_page_content .wrap.wpbc_page { |
| 1783 |
padding: 0; |
| 1784 |
margin: 2px 20px 2px 25px |
| 1785 |
} |
| 1786 |
.wpbc_settings_page_content .wpbc_settings_path { |
| 1787 |
margin: 0 0 5px; |
| 1788 |
min-width: 300px |
| 1789 |
} |
| 1790 |
.wpbc_settings_page_content .wpbc_settings_path .wpbc_settings_path_el { |
| 1791 |
font-size: 11px |
| 1792 |
} |
| 1793 |
.wpbc_settings_page_content .wpbc_settings_path .wpbc_settings_path_el .wpbc_icn_navigate_next::before { |
| 1794 |
font-size: 13px |
| 1795 |
} |
| 1796 |
/*! = Top Navigation Menu = */ |
| 1797 |
body.folded .wpbc_admin { |
| 1798 |
--wpbc_ui_top_nav__wp_left_menu_width: 36px |
| 1799 |
} |
| 1800 |
@media only screen and (max-width:960px) { |
| 1801 |
div.wpbc_admin { |
| 1802 |
--wpbc_ui_top_nav__wp_left_menu_width: 36px |
| 1803 |
} |
| 1804 |
} |
| 1805 |
body.wpbc_admin_full_screen body.folded div.wpbc_admin, |
| 1806 |
body.wpbc_admin_full_screen div.wpbc_admin { |
| 1807 |
--wpbc_ui_top_nav__wp_left_menu_width: 0px |
| 1808 |
} |
| 1809 |
body.wpbc_admin_full_screen div.wpbc_admin { |
| 1810 |
--wpbc_ui_top_nav__wp_top_menu_height: 0px |
| 1811 |
} |
| 1812 |
.wpbc_ui_el__top_nav { |
| 1813 |
display: -ms-flexbox; |
| 1814 |
display: flex; |
| 1815 |
-ms-flex-flow: row nowrap; |
| 1816 |
flex-flow: row nowrap; |
| 1817 |
-ms-flex-pack: start; |
| 1818 |
justify-content: flex-start; |
| 1819 |
-ms-flex-align: stretch; |
| 1820 |
align-items: stretch; |
| 1821 |
font-size: var(--wpbc_ui_top_nav__font-size); |
| 1822 |
background: var(--wpbc_ui_top_nav__background-color); |
| 1823 |
border: 0; |
| 1824 |
box-shadow: var(--wpbc_ui__gen__panel_box-shadow); |
| 1825 |
margin: 0; |
| 1826 |
padding: 0 5px; |
| 1827 |
box-sizing: border-box; |
| 1828 |
min-height: var(--wpbc_ui_top_nav__height); |
| 1829 |
max-width: 100%; |
| 1830 |
width: calc(100% - var(--wpbc_ui_top_nav__wp_left_menu_width)); |
| 1831 |
position: fixed; |
| 1832 |
top: var(--wpbc_ui_top_nav__wp_top_menu_height); |
| 1833 |
z-index: 11001; |
| 1834 |
transition: margin .25s ease-out |
| 1835 |
} |
| 1836 |
.wpbc_ui_el__top_nav > * { |
| 1837 |
-ms-flex-align: stretch; |
| 1838 |
align-items: stretch; |
| 1839 |
margin: 0 |
| 1840 |
} |
| 1841 |
.wpbc_ui_el__top_nav > a, |
| 1842 |
.wpbc_ui_el__top_nav > div:has(a) { |
| 1843 |
border-top: var(--wpbc_ui_top_nav__a_hover_border_width) solid transparent; |
| 1844 |
border-bottom: var(--wpbc_ui_top_nav__a_hover_border_width) solid transparent; |
| 1845 |
padding: 0 10px |
| 1846 |
} |
| 1847 |
.wpbc_ui_el__top_nav > a:hover, |
| 1848 |
.wpbc_ui_el__top_nav > div.wpbc_ui_el_container:has(a:hover) { |
| 1849 |
border-bottom-color: var(--wpbc_ui_top_nav__a_hover_border_color); |
| 1850 |
color: var(--wpbc_ui_top_nav__a_hover_border_color) |
| 1851 |
} |
| 1852 |
.wpbc_ui_el__top_nav a:hover:not(.button) *, |
| 1853 |
.wpbc_ui_el__top_nav div.wpbc_ui_el_container:has(a:hover:not(.button)) { |
| 1854 |
color: var(--wpbc_ui_top_nav__a_hover_border_color) |
| 1855 |
} |
| 1856 |
.wpbc_ui_el__top_nav a { |
| 1857 |
color: var(--wpbc_ui_top_nav__a_color); |
| 1858 |
font-weight: 600; |
| 1859 |
text-decoration: none; |
| 1860 |
line-height: calc(var(--wpbc_ui_top_nav__height) - var(--wpbc_ui_top_nav__a_hover_border_width) - var(--wpbc_ui_top_nav__a_hover_border_width)) |
| 1861 |
} |
| 1862 |
.wpbc_ui_el__top_nav a:active { |
| 1863 |
box-shadow: none |
| 1864 |
} |
| 1865 |
.wpbc_ui_el__top_nav .wpbc_ui_el__dropdown:has(a.has_down_arrow) { |
| 1866 |
padding: 0 5px 0 15px |
| 1867 |
} |
| 1868 |
.wpbc_ui_el__top_nav .wpbc_icn_menu::before { |
| 1869 |
font-size: calc(1em + 5px) |
| 1870 |
} |
| 1871 |
.wpbc_ui_el__top_nav .wpbc_message_wrapper { |
| 1872 |
margin-left: auto!important |
| 1873 |
} |
| 1874 |
.wpbc_ui_el__top_nav .wpbc_message_wrapper .wpbc_header_news { |
| 1875 |
padding: 0 15px; |
| 1876 |
background: #fff; |
| 1877 |
position: absolute; |
| 1878 |
left: 50%; |
| 1879 |
-ms-transform: translate(-50%,0); |
| 1880 |
transform: translate(-50%,0) |
| 1881 |
} |
| 1882 |
.wpbc_ui_el__top_nav .wpbc_ui_el__buttons_group { |
| 1883 |
display: -ms-flexbox; |
| 1884 |
display: flex; |
| 1885 |
-ms-flex-flow: row nowrap; |
| 1886 |
flex-flow: row nowrap; |
| 1887 |
-ms-flex-pack: start; |
| 1888 |
justify-content: flex-start; |
| 1889 |
-ms-flex-align: center; |
| 1890 |
align-items: center; |
| 1891 |
gap: 10px |
| 1892 |
} |
| 1893 |
/*! = " == F U L L == " - Left Vertical Navigation Bar = */ |
| 1894 |
.wpbc_admin .wpbc_ui_el__vert_right_bar__wrapper { |
| 1895 |
--wpbc_ui_left_vert_nav__width_min: 0; |
| 1896 |
--wpbc_ui_left_vert_nav__width_compact: 48px; |
| 1897 |
--wpbc_ui_left_vert_nav__width_max: Min( 290px, 100% ) |
| 1898 |
} |
| 1899 |
.wpbc_ui_el__vert_left_bar__wrapper, |
| 1900 |
.wpbc_ui_el__vert_right_bar__wrapper { |
| 1901 |
display: -ms-flexbox; |
| 1902 |
display: flex; |
| 1903 |
-ms-flex-flow: column nowrap; |
| 1904 |
flex-flow: column nowrap; |
| 1905 |
-ms-flex-pack: stretch; |
| 1906 |
justify-content: stretch; |
| 1907 |
-ms-flex-align: stretch; |
| 1908 |
align-items: stretch; |
| 1909 |
width: 100%; |
| 1910 |
-ms-flex: 0 0 var(--wpbc_ui_left_vert_nav__width_max); |
| 1911 |
flex: 0 0 var(--wpbc_ui_left_vert_nav__width_max); |
| 1912 |
background: var(--wpbc_ui_left_vert_nav__background-color); |
| 1913 |
border: 0; |
| 1914 |
box-shadow: var(--wpbc_ui__gen__panel_box-shadow); |
| 1915 |
transition: .25s ease-in-out; |
| 1916 |
font-size: var(--wpbc_ui_left_vert_nav__font-size); |
| 1917 |
border-radius: 0 0 3px; |
| 1918 |
padding: 0; |
| 1919 |
margin: var(--wpbc_ui_left_vert_nav__margin); |
| 1920 |
overflow-y: auto; |
| 1921 |
scrollbar-width: thin; |
| 1922 |
overflow-x: hidden; |
| 1923 |
overflow: visible; |
| 1924 |
max-width: var(--wpbc_ui_left_vert_nav__width_min) |
| 1925 |
} |
| 1926 |
.wpbc_ui_el__vert_left_bar__content, |
| 1927 |
.wpbc_ui_el__vert_right_bar__content { |
| 1928 |
display: none; |
| 1929 |
position: sticky; |
| 1930 |
top: calc(var(--wpbc_ui_top_nav__wp_top_menu_height) + var(--wpbc_ui_top_nav__height)); |
| 1931 |
max-height: calc(100vh - var(--wpbc_ui_top_nav__wp_top_menu_height) - var(--wpbc_ui_top_nav__height) - 2px); |
| 1932 |
overflow-y: auto; |
| 1933 |
overflow-x: hidden; |
| 1934 |
scrollbar-width: none; |
| 1935 |
scrollbar-gutter: initial; |
| 1936 |
scrollbar-color: rgba(0,0,0,.15) transparent |
| 1937 |
} |
| 1938 |
@media screen and (min-width:782px) { |
| 1939 |
.wpbc_ui_el__vert_left_bar__wrapper, |
| 1940 |
.wpbc_ui_el__vert_right_bar__wrapper { |
| 1941 |
max-width: var(--wpbc_ui_left_vert_nav__width_max) |
| 1942 |
} |
| 1943 |
.wpbc_ui_el__vert_left_bar__content, |
| 1944 |
.wpbc_ui_el__vert_right_bar__content { |
| 1945 |
display: block |
| 1946 |
} |
| 1947 |
} |
| 1948 |
.wpbc_settings_page_wrapper.none .wpbc_ui_el__vert_left_bar__wrapper, |
| 1949 |
.wpbc_settings_page_wrapper.none_right .wpbc_ui_el__vert_right_bar__wrapper { |
| 1950 |
max-width: 0 |
| 1951 |
} |
| 1952 |
.wpbc_settings_page_wrapper.none .wpbc_ui_el__vert_left_bar__content, |
| 1953 |
.wpbc_settings_page_wrapper.none_right .wpbc_ui_el__vert_right_bar__content, |
| 1954 |
.wpbc_settings_page_wrapper:not(.compact) .hide_in_max_mode, |
| 1955 |
.wpbc_settings_page_wrapper:not(.compact_right) .hide_in_max_mode_right, |
| 1956 |
div.wpbc_settings_page_wrapper.none .hide_in_compact_mode { |
| 1957 |
display: none |
| 1958 |
} |
| 1959 |
.wpbc_settings_page_wrapper.min .wpbc_ui_el__vert_left_bar__wrapper, |
| 1960 |
.wpbc_settings_page_wrapper.min_right .wpbc_ui_el__vert_right_bar__wrapper { |
| 1961 |
max-width: var(--wpbc_ui_left_vert_nav__width_min) |
| 1962 |
} |
| 1963 |
.wpbc_settings_page_wrapper.min .wpbc_ui_el__vert_left_bar__content, |
| 1964 |
.wpbc_settings_page_wrapper.min_right .wpbc_ui_el__vert_right_bar__content, |
| 1965 |
div.wpbc_settings_page_wrapper.min .hide_in_compact_mode { |
| 1966 |
display: none |
| 1967 |
} |
| 1968 |
.wpbc_settings_page_wrapper.compact .wpbc_ui_el__vert_left_bar__wrapper, |
| 1969 |
.wpbc_settings_page_wrapper.compact_right .wpbc_ui_el__vert_right_bar__wrapper { |
| 1970 |
max-width: var(--wpbc_ui_left_vert_nav__width_compact) |
| 1971 |
} |
| 1972 |
.wpbc_settings_page_wrapper.compact .wpbc_ui_el__vert_left_bar__content, |
| 1973 |
.wpbc_settings_page_wrapper.compact_right .wpbc_ui_el__vert_right_bar__content { |
| 1974 |
display: block; |
| 1975 |
scrollbar-width: none |
| 1976 |
} |
| 1977 |
div.wpbc_settings_page_wrapper.compact .hide_in_compact_mode { |
| 1978 |
display: none |
| 1979 |
} |
| 1980 |
div.wpbc_settings_page_wrapper.compact .hide_in_max_mode, |
| 1981 |
div.wpbc_settings_page_wrapper.compact_right .hide_in_max_mode_right { |
| 1982 |
display: block |
| 1983 |
} |
| 1984 |
.wpbc_settings_page_wrapper.max .wpbc_ui_el__vert_left_bar__wrapper, |
| 1985 |
.wpbc_settings_page_wrapper.max_right .wpbc_ui_el__vert_right_bar__wrapper { |
| 1986 |
max-width: var(--wpbc_ui_left_vert_nav__width_max) |
| 1987 |
} |
| 1988 |
.wpbc_settings_page_wrapper.max .hide_in_compact_mode, |
| 1989 |
.wpbc_settings_page_wrapper.max .wpbc_ui_el__vert_left_bar__content, |
| 1990 |
.wpbc_settings_page_wrapper.max_right .wpbc_ui_el__vert_right_bar__content { |
| 1991 |
display: block |
| 1992 |
} |
| 1993 |
.wpbc_settings_page_wrapper.min .wpbc_ui_el__vert_left_bar__wrapper000:hover, |
| 1994 |
.wpbc_settings_page_wrapper.min_right .wpbc_ui_el__vert_right_bar__wrapper000:hover { |
| 1995 |
max-width: calc(var(--wpbc_ui_left_vert_nav__width_min) + 15px) |
| 1996 |
} |
| 1997 |
.wpbc_ui_el__vert_left_bar__content:hover, |
| 1998 |
.wpbc_ui_el__vert_right_bar__content:hover { |
| 1999 |
scrollbar-width: thin |
| 2000 |
} |
| 2001 |
@media screen and (max-width:960px) { |
| 2002 |
.wpbc_ui_el__vert_left_bar__content, |
| 2003 |
.wpbc_ui_el__vert_right_bar__content { |
| 2004 |
scrollbar-width: thin; |
| 2005 |
scrollbar-gutter: stable |
| 2006 |
} |
| 2007 |
} |
| 2008 |
[data-simplebar].wpbc_ui_el__vert_left_bar__content, |
| 2009 |
[data-simplebar].wpbc_ui_el__vert_right_bar__content { |
| 2010 |
position: sticky; |
| 2011 |
top: calc(var(--wpbc_ui_top_nav__wp_top_menu_height) + var(--wpbc_ui_top_nav__height)); |
| 2012 |
height: calc(100vh - var(--wpbc_ui_top_nav__wp_top_menu_height) - var(--wpbc_ui_top_nav__height) - 4px - var(--wpbc_ui_vert_left_bar__footer_height)) |
| 2013 |
} |
| 2014 |
.wpbc_ui_el__vert_left_bar__footer_compensator, |
| 2015 |
.wpbc_ui_el__vert_right_bar__footer_compensator { |
| 2016 |
height: 65px; |
| 2017 |
background: 0 0 |
| 2018 |
} |
| 2019 |
[data-simplebar].wpbc_ui_el__vert_left_bar__content .simplebar-scrollbar::before, |
| 2020 |
[data-simplebar].wpbc_ui_el__vert_right_bar__content .simplebar-scrollbar::before { |
| 2021 |
background-color: #a7b1bf |
| 2022 |
} |
| 2023 |
[data-simplebar].wpbc_ui_el__vert_left_bar__content.simplebar-scrollable-y, |
| 2024 |
[data-simplebar].wpbc_ui_el__vert_right_bar__content.simplebar-scrollable-y { |
| 2025 |
padding-inline-end: 11px |
| 2026 |
} |
| 2027 |
.wpbc_settings_page_wrapper.compact .wpbc_ui_el__vert_left_bar__content.simplebar-scrollable-y .simplebar-track.simplebar-vertical, |
| 2028 |
.wpbc_settings_page_wrapper.compact_right .wpbc_ui_el__vert_right_bar__content.simplebar-scrollable-y .simplebar-track.simplebar-vertical { |
| 2029 |
width: 7px |
| 2030 |
} |
| 2031 |
.wpbc_settings_page_wrapper.compact [data-simplebar].wpbc_ui_el__vert_left_bar__content.simplebar-scrollable-y, |
| 2032 |
.wpbc_settings_page_wrapper.compact_right [data-simplebar].wpbc_ui_el__vert_right_bar__content.simplebar-scrollable-y { |
| 2033 |
padding-inline-end: 7px |
| 2034 |
} |
| 2035 |
@media screen and (max-width:600px) { |
| 2036 |
.wpbc_admin_full_screen #wpbody { |
| 2037 |
padding-top: 0 |
| 2038 |
} |
| 2039 |
div.wpbc_ui_el__top_nav { |
| 2040 |
position: absolute |
| 2041 |
} |
| 2042 |
.wpbc_ui_el__vert_left_bar__content0, |
| 2043 |
.wpbc_ui_el__vert_right_bar__content0 { |
| 2044 |
position: static; |
| 2045 |
max-height: 100% |
| 2046 |
} |
| 2047 |
.wpbc_admin { |
| 2048 |
--wpbc_ui_left_vert_nav__width_min: 0px |
| 2049 |
} |
| 2050 |
[data-simplebar].wpbc_ui_el__vert_left_bar__content, |
| 2051 |
[data-simplebar].wpbc_ui_el__vert_right_bar__content { |
| 2052 |
top: 0; |
| 2053 |
height: calc(100vh - 0px - var(--wpbc_ui_top_nav__height) - 4px - var(--wpbc_ui_vert_left_bar__footer_height)) |
| 2054 |
} |
| 2055 |
.wpbc_settings_page_wrapper.max .wpbc_ui_el__vert_left_bar__wrapper, |
| 2056 |
.wpbc_settings_page_wrapper.max_right .wpbc_ui_el__vert_right_bar__wrapper { |
| 2057 |
max-width: calc(100% - 25px); |
| 2058 |
-ms-flex: 1 1 100%; |
| 2059 |
flex: 1 1 100% |
| 2060 |
} |
| 2061 |
.wpbc_settings_page_wrapper.max .wpbc_settings_page_content .wpbc_page { |
| 2062 |
display: none |
| 2063 |
} |
| 2064 |
.wpbc_settings_page_wrapper.max .wpbc_settings_page_content { |
| 2065 |
height: 100vh |
| 2066 |
} |
| 2067 |
#wpbody-content:has(.wpbc_settings_page_wrapper.max) { |
| 2068 |
padding-bottom: 0 |
| 2069 |
} |
| 2070 |
} |
| 2071 |
.wpbc_ui_el__vert_left_bar__footer_section, |
| 2072 |
.wpbc_ui_el__vert_right_bar__footer_section { |
| 2073 |
height: var(--wpbc_ui_vert_left_bar__footer_height,75px); |
| 2074 |
position: sticky; |
| 2075 |
bottom: 0; |
| 2076 |
width: 100%; |
| 2077 |
top: calc(100% - var(--wpbc_ui_vert_left_bar__footer_height)); |
| 2078 |
overflow: hidden; |
| 2079 |
display: -ms-flexbox; |
| 2080 |
display: flex; |
| 2081 |
-ms-flex-flow: row wrap; |
| 2082 |
flex-flow: row wrap; |
| 2083 |
-ms-flex-pack: distribute; |
| 2084 |
justify-content: space-around; |
| 2085 |
-ms-flex-align: center; |
| 2086 |
align-items: center; |
| 2087 |
font-size: 14px; |
| 2088 |
font-weight: 600; |
| 2089 |
border-top: 2px solid #f1f1f1; |
| 2090 |
background: var(--wpbc_ui_left_vert_nav__background-color) |
| 2091 |
} |
| 2092 |
.wpbc_ui_el_upgrade_button { |
| 2093 |
font-weight: 600; |
| 2094 |
background-color: #0a0; |
| 2095 |
color: #fff; |
| 2096 |
padding: 8px 25px; |
| 2097 |
display: block; |
| 2098 |
text-align: center; |
| 2099 |
border-radius: 3px; |
| 2100 |
transition: .3s; |
| 2101 |
box-shadow: 0 5px 10px #dfdfdf; |
| 2102 |
cursor: pointer; |
| 2103 |
border: 2px solid rgba(238,238,238,.7098039216); |
| 2104 |
line-height: 1; |
| 2105 |
text-decoration: none; |
| 2106 |
outline: 0 |
| 2107 |
} |
| 2108 |
.wpbc_settings_page_wrapper.compact .wpbc_ui_el_upgrade_button { |
| 2109 |
padding: 8px |
| 2110 |
} |
| 2111 |
.wpbc_ui_el__vert_nav_item a, |
| 2112 |
.wpbc_ui_el__vert_nav_item button { |
| 2113 |
-ms-flex: 1 1 100%; |
| 2114 |
flex: 1 1 100%; |
| 2115 |
margin: 0 0 0 3px; |
| 2116 |
padding: 8px 5px 8px 12px; |
| 2117 |
border: none; |
| 2118 |
border-radius: var(--wpbc_ui__gen__border-radius) 0 0 var(--wpbc_ui__gen__border-radius); |
| 2119 |
text-shadow: none; |
| 2120 |
font-size: var(--wpbc_ui_left_vert_nav__font-size); |
| 2121 |
text-transform: capitalize; |
| 2122 |
text-decoration: none; |
| 2123 |
outline: 0; |
| 2124 |
color: var(--wpbc_ui_left_vert_nav__a_color); |
| 2125 |
display: -ms-flexbox; |
| 2126 |
display: flex; |
| 2127 |
-ms-flex-flow: row; |
| 2128 |
flex-flow: row; |
| 2129 |
-ms-flex-pack: start; |
| 2130 |
justify-content: flex-start; |
| 2131 |
-ms-flex-align: center; |
| 2132 |
align-items: center; |
| 2133 |
font-weight: 500; |
| 2134 |
font-size: 13px; |
| 2135 |
letter-spacing: .1px; |
| 2136 |
cursor: pointer |
| 2137 |
} |
| 2138 |
.wpbc_ui_el__vert_nav_item button:not(:hover) { |
| 2139 |
background-color: transparent |
| 2140 |
} |
| 2141 |
.wpbc_ui_el__vert_nav_item_sub.wpbc_ui_el__vert_nav_item a, |
| 2142 |
.wpbc_ui_el__vert_nav_item_sub.wpbc_ui_el__vert_nav_item button { |
| 2143 |
margin: 0 -.2px 0 20px; |
| 2144 |
padding: 7px 7px 7px 10px; |
| 2145 |
border-left: 1px solid #ccc; |
| 2146 |
border-radius: 0 |
| 2147 |
} |
| 2148 |
.wpbc_ui_el__vert_nav_item_sub.wpbc_ui_el__vert_nav_item.sub_right a { |
| 2149 |
margin-left: 50px |
| 2150 |
} |
| 2151 |
.wpbc_ui_el__vert_nav_item_sub.wpbc_ui_el__vert_nav_item.sub_bold .wpbc_ui_el__vert_nav_title, |
| 2152 |
.wpbc_ui_el__vert_nav_item_sub.wpbc_ui_el__vert_nav_item.sub_bold a { |
| 2153 |
font-weight: 600 |
| 2154 |
} |
| 2155 |
.wpbc_settings_page_wrapper.compact .wpbc_ui_el__vert_nav_item_sub.wpbc_ui_el__vert_nav_item a, |
| 2156 |
.wpbc_settings_page_wrapper.compact .wpbc_ui_el__vert_nav_item_sub.wpbc_ui_el__vert_nav_item button { |
| 2157 |
margin: 2px 0 2px 7px |
| 2158 |
} |
| 2159 |
.wpbc_ui_el__vert_nav_item a:focus, |
| 2160 |
.wpbc_ui_el__vert_nav_item a:hover, |
| 2161 |
.wpbc_ui_el__vert_nav_item button:focus, |
| 2162 |
.wpbc_ui_el__vert_nav_item button:hover, |
| 2163 |
.wpbc_ui_el__vert_nav_item button[aria-selected=true] { |
| 2164 |
background-color: var(--wpbc_ui_left_vert_nav__hover_background-color); |
| 2165 |
box-shadow: none; |
| 2166 |
outline: 0 |
| 2167 |
} |
| 2168 |
.wpbc_ui_el__vert_nav_item.active a, |
| 2169 |
.wpbc_ui_el__vert_nav_item.active a:hover { |
| 2170 |
color: var(--wpbc_ui_left_vert_nav__active_color); |
| 2171 |
background-color: var(--wpbc_ui_left_vert_nav__active_background-color); |
| 2172 |
box-shadow: none; |
| 2173 |
outline: 0 |
| 2174 |
} |
| 2175 |
.wpbc_ui_el__vert_nav_item a .wpbc_ui_el__vert_nav_icon, |
| 2176 |
.wpbc_ui_el__vert_nav_item button .wpbc_ui_el__vert_nav_icon { |
| 2177 |
margin: 0 |
| 2178 |
} |
| 2179 |
.wpbc_settings_page_wrapper .wpbc_ui_el__vert_left_bar__wrapper .wpbc_ui_el__vert_nav_item a .wpbc_ui_el__vert_nav_icon, |
| 2180 |
.wpbc_settings_page_wrapper .wpbc_ui_el__vert_left_bar__wrapper .wpbc_ui_el__vert_nav_item button .wpbc_ui_el__vert_nav_icon { |
| 2181 |
margin: 0 10px 0 0 |
| 2182 |
} |
| 2183 |
.wpbc_page_wrapper_left_compact .wpbc_ui_el__top_nav .wpbc_ui__top_nav__btn_show_left_vertical_nav:first-child { |
| 2184 |
width: 80px; |
| 2185 |
display: -ms-flexbox; |
| 2186 |
display: flex; |
| 2187 |
-ms-flex-flow: row nowrap; |
| 2188 |
flex-flow: row nowrap; |
| 2189 |
-ms-flex-pack: stretch; |
| 2190 |
justify-content: stretch; |
| 2191 |
-ms-flex-align: center; |
| 2192 |
align-items: center; |
| 2193 |
padding: 0!important |
| 2194 |
} |
| 2195 |
.wpbc_page_wrapper_left_compact .wpbc_ui_el__top_nav .wpbc_ui__top_nav__btn_show_left_vertical_nav:first-child a { |
| 2196 |
-ms-flex: 1 1 100%; |
| 2197 |
flex: 1 1 100%; |
| 2198 |
text-align: center |
| 2199 |
} |
| 2200 |
.wpbc_settings_page_wrapper.compact .wpbc_ui_el__vert_left_bar__wrapper .wpbc_ui_el__vert_nav_item a { |
| 2201 |
display: -ms-flexbox; |
| 2202 |
display: flex; |
| 2203 |
-ms-flex-flow: column nowrap; |
| 2204 |
flex-flow: column nowrap; |
| 2205 |
-ms-flex-pack: center; |
| 2206 |
justify-content: center; |
| 2207 |
-ms-flex-align: center; |
| 2208 |
align-items: center; |
| 2209 |
padding: 10px 5px; |
| 2210 |
margin: 0; |
| 2211 |
border-radius: 0; |
| 2212 |
min-height: 40px |
| 2213 |
} |
| 2214 |
.wpbc_settings_page_wrapper.compact .wpbc_ui_el__vert_left_bar__wrapper .wpbc_ui_el__vert_nav_item a .wpbc_ui_el__vert_nav_icon, |
| 2215 |
.wpbc_settings_page_wrapper.compact .wpbc_ui_el__vert_left_bar__wrapper .wpbc_ui_el__vert_nav_item button .wpbc_ui_el__vert_nav_icon { |
| 2216 |
margin: 0 |
| 2217 |
} |
| 2218 |
.wpbc_settings_page_wrapper.compact .wpbc_ui_el__vert_left_bar__wrapper .wpbc_ui_el__vert_nav_item a .wpbc_ui_el__vert_nav_icon::before, |
| 2219 |
.wpbc_settings_page_wrapper.compact .wpbc_ui_el__vert_left_bar__wrapper .wpbc_ui_el__vert_nav_item button .wpbc_ui_el__vert_nav_icon::before { |
| 2220 |
font-size: 17px; |
| 2221 |
line-height: 1.4 |
| 2222 |
} |
| 2223 |
.wpbc_ui_el__vert_nav_item a .wpbc_ui_el__vert_nav_icon::before, |
| 2224 |
.wpbc_ui_el__vert_nav_item button .wpbc_ui_el__vert_nav_icon::before { |
| 2225 |
font-size: 16px; |
| 2226 |
line-height: 20px |
| 2227 |
} |
| 2228 |
.wpbc_ui_el__vert_nav_item.wpbc_ui_el__vert_nav_item_sub a .wpbc_ui_el__vert_nav_icon::before { |
| 2229 |
font-size: 12px |
| 2230 |
} |
| 2231 |
.wpbc_settings_page_wrapper.compact .wpbc_ui_el__level__folder.expanded .wpbc_ui_el__vert_nav_item:not(.wpbc_ui_el__vert_nav_item_sub) a { |
| 2232 |
border-bottom: 1px solid rgba(0,0,0,.1098039216) |
| 2233 |
} |
| 2234 |
.wpbc_settings_page_wrapper.compact .wpbc_ui_el__level__folder.expanded .wpbc_ui_el__vert_nav_item_sub { |
| 2235 |
margin-left: 5px |
| 2236 |
} |
| 2237 |
.wpbc_settings_page_wrapper.compact .wpbc_ui_el__level__folder.expanded .wpbc_ui_el__vert_nav_item_sub .wpbc_ui_el__vert_nav_icon::before { |
| 2238 |
font-size: 11px |
| 2239 |
} |
| 2240 |
.wpbc_settings_page_wrapper.compact .wpbc_ui_el__vert_left_bar__wrapper .wpbc_ui_el__level__folder.expanded .wpbc_ui_el__vert_nav_item_sub .wpbc_ui_el__vert_nav_icon::before { |
| 2241 |
font-size: 16px; |
| 2242 |
line-height: 1.4 |
| 2243 |
} |
| 2244 |
.wpbc_settings_page_wrapper.compact .wpbc_ui_el__vert_left_bar__wrapper .wpbc_ui_el__vert_nav_title.hide_in_compact_mode { |
| 2245 |
display: block; |
| 2246 |
font-size: 10px; |
| 2247 |
text-align: center; |
| 2248 |
line-height: 1.4; |
| 2249 |
font-weight: 400; |
| 2250 |
white-space: pre-wrap; |
| 2251 |
word-break: normal |
| 2252 |
} |
| 2253 |
.wpbc_settings_page_wrapper.compact .wpbc_ui_el__vert_left_bar__wrapper .wpbc_ui_el__vert_left_bar__section { |
| 2254 |
gap: 0 |
| 2255 |
} |
| 2256 |
.wpbc_settings_page_wrapper.compact .wpbc_ui_el__vert_left_bar__wrapper .wpbc_ui_el__root_section_header_a { |
| 2257 |
visibility: visible!important; |
| 2258 |
padding: 0 5px; |
| 2259 |
display: -ms-flexbox; |
| 2260 |
display: flex |
| 2261 |
} |
| 2262 |
.wpbc_settings_page_wrapper.compact .wpbc_ui_el__vert_left_bar__wrapper .wpbc_ui_el__section_header.hide_in_compact_mode { |
| 2263 |
letter-spacing: 0; |
| 2264 |
padding: 0 10px 0 0; |
| 2265 |
text-overflow: ellipsis; |
| 2266 |
overflow: hidden; |
| 2267 |
overflow-wrap: normal; |
| 2268 |
-ms-hyphens: auto; |
| 2269 |
hyphens: auto; |
| 2270 |
white-space: nowrap; |
| 2271 |
display: block; |
| 2272 |
text-transform: uppercase; |
| 2273 |
font-weight: 600; |
| 2274 |
line-height: 2.2; |
| 2275 |
margin: 0; |
| 2276 |
font-size: 10px; |
| 2277 |
font-weight: 650; |
| 2278 |
letter-spacing: 0 |
| 2279 |
} |
| 2280 |
.wpbc_settings_page_wrapper.compact .wpbc_ui_el__vert_left_bar__wrapper .wpbc_ui_el__vert_left_bar__content .wpbc_ui_el__expand_colapse_btns { |
| 2281 |
margin: 10px 0 0 |
| 2282 |
} |
| 2283 |
.wpbc_settings_page_wrapper.compact .wpbc_ui_el__vert_left_bar__wrapper .wpbc_ui_el__level__folder.expanded .wpbc_ui_el__vert_nav_item_sub { |
| 2284 |
border-left: 2px solid #465160; |
| 2285 |
margin-left: 5px |
| 2286 |
} |
| 2287 |
.wpbc_settings_page_wrapper.compact .wpbc_ui_el__vert_left_bar__wrapper .wpbc_ui_el__level__folder .wpbc_ui_el__vert_nav_item__folder { |
| 2288 |
position: relative |
| 2289 |
} |
| 2290 |
.wpbc_settings_page_wrapper.compact .wpbc_ui_el__vert_left_bar__wrapper .wpbc_ui_el__level__folder .wpbc_ui_el__vert_nav_item__folder:after { |
| 2291 |
content: "+"; |
| 2292 |
position: absolute; |
| 2293 |
top: 4px; |
| 2294 |
right: 4px; |
| 2295 |
font-size: 16px; |
| 2296 |
font-weight: 700 |
| 2297 |
} |
| 2298 |
.wpbc_settings_page_wrapper.compact .wpbc_ui_el__vert_left_bar__wrapper .wpbc_ui_el__level__folder.expanded .wpbc_ui_el__vert_nav_item__folder:after { |
| 2299 |
content: "-" |
| 2300 |
} |
| 2301 |
.wpbc_settings_page_wrapper .wpbc_ui_el__vert_left_bar__wrapper .wpbc_ui_el__vert_nav_item_root a .wpbc_ui_el__vert_nav_icon.wpbc_ui_el__vert_nav_icon_arrow { |
| 2302 |
margin: 0 0 0 auto |
| 2303 |
} |
| 2304 |
.wpbc_ui_el__vert_left_bar__root_sections_container { |
| 2305 |
display: -ms-flexbox; |
| 2306 |
display: flex; |
| 2307 |
-ms-flex-flow: column nowrap; |
| 2308 |
flex-flow: column nowrap; |
| 2309 |
-ms-flex-pack: start; |
| 2310 |
justify-content: flex-start; |
| 2311 |
-ms-flex-align: stretch; |
| 2312 |
align-items: stretch; |
| 2313 |
gap: 0 |
| 2314 |
} |
| 2315 |
.wpbc_ui_el__vert_left_bar__root_sections_container .wpbc_ui_el__vert_left_bar__section { |
| 2316 |
margin-block-end: 9px |
| 2317 |
} |
| 2318 |
.wpbc_ui_el__vert_left_bar__root_sections_container .wpbc_ui_el__vert_left_bar__root_section_element { |
| 2319 |
padding-inline-start: 8px; |
| 2320 |
padding-block-start: 8px; |
| 2321 |
padding-block-end: 8px; |
| 2322 |
display: -ms-flexbox; |
| 2323 |
display: flex; |
| 2324 |
-ms-flex-flow: column nowrap; |
| 2325 |
flex-flow: column nowrap; |
| 2326 |
-ms-flex-pack: start; |
| 2327 |
justify-content: flex-start; |
| 2328 |
-ms-flex-align: stretch; |
| 2329 |
align-items: stretch; |
| 2330 |
gap: 5px |
| 2331 |
} |
| 2332 |
.wpbc_settings_page_wrapper.compact .wpbc_ui_el__vert_left_bar__root_section_element { |
| 2333 |
padding-inline-start: 0 |
| 2334 |
} |
| 2335 |
.wpbc_settings_page_wrapper.compact .wpbc_ui_el__root_section_header_a { |
| 2336 |
display: none |
| 2337 |
} |
| 2338 |
.wpbc_ui_el__root_section_header_a, |
| 2339 |
.wpbc_ui_el__root_section_header_a:focus, |
| 2340 |
.wpbc_ui_el__root_section_header_a:hover, |
| 2341 |
.wpbc_ui_el__root_section_header_a:not(:hover) .wpbc_ui_el__section_header { |
| 2342 |
text-decoration: none; |
| 2343 |
outline: 0; |
| 2344 |
color: var(--wpbc_ui_left_vert_nav__a_color); |
| 2345 |
box-shadow: none |
| 2346 |
} |
| 2347 |
.wpbc_ui_el__root_section_header_a { |
| 2348 |
-ms-flex-flow: row nowrap; |
| 2349 |
flex-flow: row nowrap; |
| 2350 |
-ms-flex-align: center; |
| 2351 |
align-items: center; |
| 2352 |
gap: 8px |
| 2353 |
} |
| 2354 |
.wpbc_ui_el__root_section_header_a .wpbc_ui_el__vert_menu_root_section_icon { |
| 2355 |
margin: 0; |
| 2356 |
-ms-flex: 0 0 auto; |
| 2357 |
flex: 0 0 auto |
| 2358 |
} |
| 2359 |
.wpbc_ui_el__root_section_header_a .wpbc_ui_el__vert_menu_root_section_icon::before { |
| 2360 |
font-size: 9px; |
| 2361 |
font-weight: 600!important; |
| 2362 |
vertical-align: 0; |
| 2363 |
line-height: 2; |
| 2364 |
transition: .4s ease-in-out |
| 2365 |
} |
| 2366 |
.wpbc_ui_el__vert_left_bar__root_section_element:not(.section_expanded) .wpbc_ui_el__vert_left_bar__section { |
| 2367 |
display: none |
| 2368 |
} |
| 2369 |
.wpbc_ui_el__vert_left_bar__root_section_element:not(.section_expanded) .wpbc_ui_el__root_section_header_a .wpbc_ui_el__vert_menu_root_section_icon::before { |
| 2370 |
-ms-transform: rotate(0); |
| 2371 |
transform: rotateZ(0) |
| 2372 |
} |
| 2373 |
.wpbc_ui_el__vert_left_bar__root_section_element.section_expanded .wpbc_ui_el__root_section_header_a .wpbc_ui_el__vert_menu_root_section_icon::before { |
| 2374 |
-ms-transform: rotate(90deg); |
| 2375 |
transform: rotateZ(90deg) |
| 2376 |
} |
| 2377 |
.wpbc_ui_el__root_section_header_a .wpbc_ui_el__section_header { |
| 2378 |
font-weight: 600; |
| 2379 |
line-height: 2.2; |
| 2380 |
letter-spacing: 0; |
| 2381 |
margin: 0; |
| 2382 |
font-size: 14px; |
| 2383 |
color: #575757!important |
| 2384 |
} |
| 2385 |
.wpbc_ui_el__root_section_header_a:not(:hover) h2.wpbc_ui_el__section_header { |
| 2386 |
color: #707070 |
| 2387 |
} |
| 2388 |
.wpbc_ui_el__section_header { |
| 2389 |
font-size: 13px; |
| 2390 |
font-weight: 600; |
| 2391 |
color: var(--wpbc_ui__gen__text-color); |
| 2392 |
letter-spacing: 0; |
| 2393 |
margin: 0 0 0 15px |
| 2394 |
} |
| 2395 |
a > .wpbc_ui_el__section_header { |
| 2396 |
color: var(--wpbc_admin-theme-color,#2271b1); |
| 2397 |
font-size: 12px; |
| 2398 |
font-weight: 400; |
| 2399 |
letter-spacing: 0; |
| 2400 |
margin: 0 0 0 5px; |
| 2401 |
text-transform: none; |
| 2402 |
letter-spacing: 0 |
| 2403 |
} |
| 2404 |
.wpbc_settings_page_wrapper .wpbc_ui_el__vert_left_bar__content .wpbc_ui_el__go_back { |
| 2405 |
width: auto; |
| 2406 |
display: -ms-flexbox; |
| 2407 |
display: flex; |
| 2408 |
-ms-flex-flow: row nowrap; |
| 2409 |
flex-flow: row nowrap; |
| 2410 |
-ms-flex-pack: start; |
| 2411 |
justify-content: flex-start; |
| 2412 |
-ms-flex-align: center; |
| 2413 |
align-items: center; |
| 2414 |
margin: 0 0 0 10px; |
| 2415 |
text-decoration: none |
| 2416 |
} |
| 2417 |
.wpbc_settings_page_wrapper.compact .wpbc_ui_el__vert_left_bar__content .wpbc_ui_el__go_back { |
| 2418 |
margin: 0 |
| 2419 |
} |
| 2420 |
.wpbc_settings_page_wrapper.compact .wpbc_ui_el__vert_left_bar__content .wpbc_ui_el__go_back .wpbc_icn_navigate_before::before { |
| 2421 |
font-size: 22px; |
| 2422 |
line-height: 16px |
| 2423 |
} |
| 2424 |
.wpbc_ui_el__vert_left_bar__section { |
| 2425 |
animation: .2s ease-in-out forwards wpbc_ui_el__dropdown_menu__anim__grow_down; |
| 2426 |
-ms-transform-origin: top center; |
| 2427 |
transform-origin: top center; |
| 2428 |
display: -ms-flexbox; |
| 2429 |
display: flex; |
| 2430 |
-ms-flex-flow: column nowrap; |
| 2431 |
flex-flow: column nowrap; |
| 2432 |
-ms-flex-align: stretch; |
| 2433 |
align-items: stretch; |
| 2434 |
-ms-flex-pack: start; |
| 2435 |
justify-content: flex-start; |
| 2436 |
gap: 5px |
| 2437 |
} |
| 2438 |
.wpbc_ui_el__level__folder, |
| 2439 |
.wpbc_ui_el__level__folder .wpbc_ui_el__vert_nav_item, |
| 2440 |
.wpbc_ui_el__level__folder .wpbc_ui_el__vert_nav_item_sub { |
| 2441 |
-ms-flex-order: 100; |
| 2442 |
order: 100 |
| 2443 |
} |
| 2444 |
.wpbc_ui_el__level__folder { |
| 2445 |
display: -ms-flexbox; |
| 2446 |
display: flex; |
| 2447 |
-ms-flex-flow: column nowrap; |
| 2448 |
flex-flow: column nowrap; |
| 2449 |
-ms-flex-pack: start; |
| 2450 |
justify-content: flex-start; |
| 2451 |
-ms-flex-align: stretch; |
| 2452 |
align-items: stretch; |
| 2453 |
gap: 1px |
| 2454 |
} |
| 2455 |
.wpbc_settings_page_wrapper.compact .wpbc_ui_el__level__folder { |
| 2456 |
gap: 0 |
| 2457 |
} |
| 2458 |
.wpbc_ui_el__level__folder.expanded .wpbc_ui_el__vert_nav_icon_collapsed, |
| 2459 |
.wpbc_ui_el__level__folder:not(.expanded) .wpbc_ui_el__vert_nav_icon_expanded { |
| 2460 |
display: none |
| 2461 |
} |
| 2462 |
.wpbc_ui_el__level__folder.expanded .wpbc_ui_el__vert_nav_item_sub { |
| 2463 |
display: block; |
| 2464 |
height: auto; |
| 2465 |
animation: .4s ease-in-out forwards wpbc_ui_el__dropdown_menu__anim__grow_down; |
| 2466 |
-ms-transform-origin: top center; |
| 2467 |
transform-origin: top center |
| 2468 |
} |
| 2469 |
.wpbc_ui_el__level__folder:not(.expanded) .wpbc_ui_el__vert_nav_item_sub { |
| 2470 |
display: none; |
| 2471 |
height: 0; |
| 2472 |
animation: .4s ease-in-out forwards wpbc_ui_el__dropdown_menu__anim__grow_down; |
| 2473 |
-ms-transform-origin: top center; |
| 2474 |
transform-origin: top center |
| 2475 |
} |
| 2476 |
.wpbc_ui_el__vert_nav_item__a * { |
| 2477 |
-ms-flex: 0 1 auto; |
| 2478 |
flex: 0 1 auto |
| 2479 |
} |
| 2480 |
.wpbc_ui_el__vert_nav_item .wpbc_ui_el__vert_nav_item__a .wpbc_ui_el__vert_nav_title { |
| 2481 |
-ms-flex: 1 1 100%; |
| 2482 |
flex: 1 1 100%; |
| 2483 |
display: -ms-flexbox; |
| 2484 |
display: flex; |
| 2485 |
-ms-flex-flow: row wrap; |
| 2486 |
flex-flow: row wrap; |
| 2487 |
-ms-flex-pack: start; |
| 2488 |
justify-content: flex-start; |
| 2489 |
-ms-flex-align: center; |
| 2490 |
align-items: center |
| 2491 |
} |
| 2492 |
.wpbc_settings_page_wrapper .wpbc_ui_el__vert_nav_item_sub .wpbc_ui_el__vert_nav_title { |
| 2493 |
font-weight: 400; |
| 2494 |
font-size: 12px; |
| 2495 |
line-height: 1.5; |
| 2496 |
-ms-flex: 1 1 100%; |
| 2497 |
flex: 1 1 100%; |
| 2498 |
display: -ms-flexbox; |
| 2499 |
display: flex; |
| 2500 |
-ms-flex-flow: row wrap; |
| 2501 |
flex-flow: row wrap; |
| 2502 |
-ms-flex-pack: start; |
| 2503 |
justify-content: flex-start; |
| 2504 |
-ms-flex-align: center; |
| 2505 |
align-items: center |
| 2506 |
} |
| 2507 |
.wpbc_ui_el__vert_nav_item__a .wpbc_ui_el__vert_nav_icon_right { |
| 2508 |
margin-left: auto |
| 2509 |
} |
| 2510 |
.wpbc_ui_el__vert_nav_item.active .wpbc_ui_el__vert_nav_icon_right.wpbc-bi-toggle2-on { |
| 2511 |
color: var(--wpbc_ui_left_vert_nav__active_color)!important |
| 2512 |
} |
| 2513 |
.wpbc_ui_el__vert_nav_item.active .wpbc_ui_el__vert_nav_icon_right.wpbc-bi-toggle2-off { |
| 2514 |
color: #b4b4b4!important |
| 2515 |
} |
| 2516 |
.wpbc_ui_el__vert_nav_item__single .wpbc-bi-toggle2-off::before, |
| 2517 |
.wpbc_ui_el__vert_nav_item__single .wpbc-bi-toggle2-on::before { |
| 2518 |
font-size: 95% |
| 2519 |
} |
| 2520 |
.wpbc_ui_el__vert_left_bar__wrapper .wpbc_ui_el__vert_left_bar__root_sections_container { |
| 2521 |
margin-top: 8px |
| 2522 |
} |
| 2523 |
.wpbc_ui_el__expand_colapse_btns { |
| 2524 |
padding: 0; |
| 2525 |
margin: 16px 0 -38px |
| 2526 |
} |
| 2527 |
.wpbc_settings_page_wrapper.compact .wpbc_ui_el__expand_colapse_btns { |
| 2528 |
margin-bottom: -22px |
| 2529 |
} |
| 2530 |
.wpbc_settings_page_wrapper.compact .wpbc_ui_el__vert_left_bar__root_section_element:first-child > a:first-child { |
| 2531 |
display: -ms-flexbox; |
| 2532 |
display: flex; |
| 2533 |
visibility: hidden |
| 2534 |
} |
| 2535 |
.wpbc_ui_el__expand_colapse_btns a, |
| 2536 |
.wpbc_ui_el__expand_colapse_btns a:focus, |
| 2537 |
.wpbc_ui_el__expand_colapse_btns a:hover { |
| 2538 |
box-shadow: none; |
| 2539 |
outline: 0 |
| 2540 |
} |
| 2541 |
.wpbc_ui_el__vert_left_bar__content .wpbc_ui_el__expand_colapse_btns .wpbc_ui_el__a { |
| 2542 |
margin-left: auto; |
| 2543 |
padding: 0 8px |
| 2544 |
} |
| 2545 |
.wpbc_settings_page_wrapper.compact .wpbc_ui_el__vert_left_bar__content .wpbc_ui_el__expand_colapse_btns { |
| 2546 |
-ms-flex-pack: center; |
| 2547 |
justify-content: center |
| 2548 |
} |
| 2549 |
.wpbc_settings_page_wrapper.compact .wpbc_ui_el__vert_left_bar__content .wpbc_ui_el__expand_colapse_btns .wpbc_ui_el__a { |
| 2550 |
margin-left: 0; |
| 2551 |
padding: 0 |
| 2552 |
} |
| 2553 |
.wpbc_ui_el__vert_right_bar__content .wpbc_ui_el__expand_colapse_btns .wpbc_ui_el__a { |
| 2554 |
margin-left: auto; |
| 2555 |
padding: 0 8px |
| 2556 |
} |
| 2557 |
.wpbc_settings_page_wrapper.compact_right .wpbc_ui_el__vert_right_bar__content .wpbc_ui_el__expand_colapse_btns { |
| 2558 |
-ms-flex-pack: center; |
| 2559 |
justify-content: center |
| 2560 |
} |
| 2561 |
.wpbc_settings_page_wrapper.compact_right .wpbc_ui_el__vert_right_bar__content .wpbc_ui_el__expand_colapse_btns .wpbc_ui_el__a { |
| 2562 |
margin-left: 0; |
| 2563 |
padding: 0 |
| 2564 |
} |
| 2565 |
.wpbc_ui_el__vert_left_bar__wrapper .wpbc_ui__left_sidebar__side_button, |
| 2566 |
.wpbc_ui_el__vert_right_bar__wrapper .wpbc_ui__right_sidebar__side_button { |
| 2567 |
width: 22px; |
| 2568 |
height: 41px; |
| 2569 |
background: rgba(255,255,255,.6509803922); |
| 2570 |
position: sticky; |
| 2571 |
border-style: solid; |
| 2572 |
border-width: 1px 1px 1px 0; |
| 2573 |
border-color: rgba(0,0,0,.0784313725); |
| 2574 |
border-radius: 0 3px 3px 0; |
| 2575 |
z-index: 1; |
| 2576 |
cursor: pointer; |
| 2577 |
transition: .3s ease-in-out; |
| 2578 |
-ms-flex-item-align: end; |
| 2579 |
align-self: flex-end; |
| 2580 |
box-shadow: 0 0 2px rgba(0,0,0,.0509803922); |
| 2581 |
margin-top: auto; |
| 2582 |
margin-bottom: 15px; |
| 2583 |
-ms-flex-order: 1; |
| 2584 |
order: 1; |
| 2585 |
bottom: 25%; |
| 2586 |
box-shadow: var(--wpbc_ui__gen__panel_box-shadow); |
| 2587 |
box-shadow: 1px 1px 3px rgba(17,24,39,.09); |
| 2588 |
margin-right: -22px |
| 2589 |
} |
| 2590 |
.wpbc_ui_el__vert_left_bar__wrapper .wpbc_ui__left_sidebar__side_button svg, |
| 2591 |
.wpbc_ui_el__vert_right_bar__wrapper .wpbc_ui__right_sidebar__side_button svg { |
| 2592 |
width: 12px; |
| 2593 |
height: 12px; |
| 2594 |
display: block; |
| 2595 |
position: relative; |
| 2596 |
left: -2px; |
| 2597 |
transition: .3s ease-in-out |
| 2598 |
} |
| 2599 |
.wpbc_ui_el__vert_left_bar__wrapper .wpbc_ui__left_sidebar__side_button:hover svg, |
| 2600 |
.wpbc_ui_el__vert_right_bar__wrapper .wpbc_ui__right_sidebar__side_button:hover svg { |
| 2601 |
left: -4px |
| 2602 |
} |
| 2603 |
.wpbc_ui_el__vert_left_bar__wrapper .wpbc_ui__left_sidebar__side_button.wpbc_ui__top_nav__btn_open_left_vertical_nav svg, |
| 2604 |
.wpbc_ui_el__vert_right_bar__wrapper .wpbc_ui__right_sidebar__side_button.wpbc_ui__top_nav__btn_open_right_vertical_nav svg { |
| 2605 |
-ms-transform: rotate(180deg); |
| 2606 |
transform: rotate(180deg); |
| 2607 |
left: -1px; |
| 2608 |
width: 14px; |
| 2609 |
height: 14px |
| 2610 |
} |
| 2611 |
.wpbc_ui_el__vert_left_bar__wrapper .wpbc_ui__left_sidebar__side_button.wpbc_ui__top_nav__btn_open_left_vertical_nav:hover, |
| 2612 |
.wpbc_ui_el__vert_right_bar__wrapper .wpbc_ui__right_sidebar__side_button.wpbc_ui__top_nav__btn_open_right_vertical_nav:hover { |
| 2613 |
width: 30px; |
| 2614 |
margin-right: -30px |
| 2615 |
} |
| 2616 |
.wpbc_ui_el__vert_left_bar__wrapper .wpbc_ui__left_sidebar__side_button.wpbc_ui__top_nav__btn_open_left_vertical_nav:hover svg, |
| 2617 |
.wpbc_ui_el__vert_right_bar__wrapper .wpbc_ui__right_sidebar__side_button.wpbc_ui__top_nav__btn_open_right_vertical_nav:hover svg { |
| 2618 |
left: 5px; |
| 2619 |
height: 18px; |
| 2620 |
width: 18px |
| 2621 |
} |
| 2622 |
.wpbc_settings_page_wrapper.min .wpbc_ui_el__vert_left_bar__wrapper .wpbc_ui__left_sidebar__side_button, |
| 2623 |
.wpbc_settings_page_wrapper.min_right .wpbc_ui_el__vert_right_bar__wrapper .wpbc_ui__right_sidebar__side_button { |
| 2624 |
background: rgba(29,35,39,.4588235294) |
| 2625 |
} |
| 2626 |
.wpbc_settings_page_wrapper.min .wpbc_ui_el__vert_left_bar__wrapper .wpbc_ui__left_sidebar__side_button svg path, |
| 2627 |
.wpbc_settings_page_wrapper.min_right .wpbc_ui_el__vert_right_bar__wrapper .wpbc_ui__right_sidebar__side_button svg path { |
| 2628 |
fill: #fff |
| 2629 |
} |
| 2630 |
.wpbc_settings_page_content .wpbc_settings_path .wpbc_settings_path_el.wpbc_ui_settings__flex_container { |
| 2631 |
position: absolute; |
| 2632 |
right: 10px |
| 2633 |
} |
| 2634 |
.wpbc_ui_el__vert_right_bar__wrapper { |
| 2635 |
margin-top: 111.5px; |
| 2636 |
border-radius: 6px 0 0 6px; |
| 2637 |
padding: 6px 0 |
| 2638 |
} |
| 2639 |
.wpbc_ui_el__vert_right_bar__wrapper.wpbc_ui_el__vert_right_bar_compact__wrapper { |
| 2640 |
padding: 0 |
| 2641 |
} |
| 2642 |
.wpbc_ui_el__vert_right_bar__wrapper .wpbc_ui__right_sidebar__side_button { |
| 2643 |
-ms-flex-item-align: start; |
| 2644 |
align-self: flex-start; |
| 2645 |
-ms-transform: rotate(180deg); |
| 2646 |
transform: rotateZ(180deg); |
| 2647 |
margin-left: -22px; |
| 2648 |
bottom: calc(25% - 41px - 20px) |
| 2649 |
} |
| 2650 |
.wpbc_ui_el__vert_right_bar__wrapper .wpbc_ui__right_sidebar__side_button.wpbc_ui__top_nav__btn_open_right_vertical_nav:hover { |
| 2651 |
width: 30px; |
| 2652 |
margin-left: -30px |
| 2653 |
} |
| 2654 |
.wpbc_ui_el__vert_right_bar__wrapper .wpbc_ui__right_sidebar__side_button.wpbc_ui__top_nav__btn_open_right_vertical_nav:hover svg { |
| 2655 |
right: 5px |
| 2656 |
} |
| 2657 |
.wpbc_admin:not(.right_vertical_sidebar_displayed) .wpbc_ui__top_nav__btn_show_right_vertical_nav, |
| 2658 |
.wpbc_admin:not(.right_vertical_sidebar_displayed) .wpbc_ui__top_nav__btn_show_right_vertical_nav_divider { |
| 2659 |
display: none |
| 2660 |
} |
| 2661 |
.wpbc_admin .wpbc_ui_el__vert_right_bar__wrapper.wpbc_ui_el__vert_right_bar_compact__wrapper { |
| 2662 |
--wpbc_ui_left_vert_nav__width_min: 0; |
| 2663 |
--wpbc_ui_left_vert_nav__width_compact: 48px; |
| 2664 |
--wpbc_ui_left_vert_nav__width_max: Min( 70px, 100% ); |
| 2665 |
border-radius: 0; |
| 2666 |
box-shadow: none; |
| 2667 |
border-left: 1px solid rgba(0,0,0,.0901960784) |
| 2668 |
} |
| 2669 |
.wpbc_ui_el__vert_right_bar_compact__wrapper .wpbc_ui_el__vert_nav_item__a.wpbc_ui_el__vert_nav_item__single { |
| 2670 |
display: -ms-flexbox; |
| 2671 |
display: flex; |
| 2672 |
-ms-flex-flow: column nowrap; |
| 2673 |
flex-flow: column nowrap; |
| 2674 |
-ms-flex-align: center; |
| 2675 |
align-items: center; |
| 2676 |
-ms-flex-pack: center; |
| 2677 |
justify-content: center; |
| 2678 |
gap: 5px; |
| 2679 |
min-height: 35px; |
| 2680 |
padding: 8px 5px; |
| 2681 |
margin: 0; |
| 2682 |
border-radius: 0; |
| 2683 |
font-size: 12px; |
| 2684 |
font-weight: 600; |
| 2685 |
line-height: 1.74; |
| 2686 |
text-align: center |
| 2687 |
} |
| 2688 |
.wpbc_ui_el__vert_right_bar_compact__wrapper button.wpbc_ui_el__vert_nav_item__a.wpbc_ui_el__vert_nav_item__single { |
| 2689 |
width: 100% |
| 2690 |
} |
| 2691 |
.wpbc_ui_el__vert_right_bar_compact__wrapper .wpbc_ui_el__vert_nav_item a .wpbc_ui_el__vert_nav_icon::before, |
| 2692 |
.wpbc_ui_el__vert_right_bar_compact__wrapper .wpbc_ui_el__vert_nav_item button .wpbc_ui_el__vert_nav_icon::before { |
| 2693 |
font-size: 24px; |
| 2694 |
line-height: 26px |
| 2695 |
} |
| 2696 |
.wpbc_ui_el__vert_right_bar_compact__wrapper .wpbc_ui_el__vert_nav_item.active a, |
| 2697 |
.wpbc_ui_el__vert_right_bar_compact__wrapper .wpbc_ui_el__vert_nav_item.active a:hover { |
| 2698 |
background-color: #547298 |
| 2699 |
} |
| 2700 |
/*! = Left Horisontal Navigation Bar = */ |
| 2701 |
.wpbc_ui_el__horis_top_bar__wrapper { |
| 2702 |
display: -ms-flexbox; |
| 2703 |
display: flex; |
| 2704 |
-ms-flex-flow: row wrap; |
| 2705 |
flex-flow: row wrap; |
| 2706 |
-ms-flex-pack: start; |
| 2707 |
justify-content: flex-start; |
| 2708 |
-ms-flex-align: baseline; |
| 2709 |
align-items: baseline; |
| 2710 |
width: 100%; |
| 2711 |
max-width: 100%; |
| 2712 |
background: var(--wpbc_ui_horis_top_nav__background-color); |
| 2713 |
border: 0; |
| 2714 |
box-shadow: none; |
| 2715 |
transition: .25s ease-in-out; |
| 2716 |
font-size: var(--wpbc_ui_horis_top_nav__font-size); |
| 2717 |
line-height: 1.2; |
| 2718 |
border-radius: 0; |
| 2719 |
padding: 0; |
| 2720 |
margin: var(--wpbc_ui_horis_top_nav__margin); |
| 2721 |
box-sizing: border-box; |
| 2722 |
overflow: visible |
| 2723 |
} |
| 2724 |
.wpbc_ui_el__horis_top_bar__content { |
| 2725 |
-ms-flex: 1 1 100%; |
| 2726 |
flex: 1 1 100%; |
| 2727 |
display: -ms-flexbox; |
| 2728 |
display: flex; |
| 2729 |
-ms-flex-flow: row wrap; |
| 2730 |
flex-flow: row wrap; |
| 2731 |
-ms-flex-pack: start; |
| 2732 |
justify-content: flex-start; |
| 2733 |
-ms-flex-align: center; |
| 2734 |
align-items: center; |
| 2735 |
border-bottom: 1px solid var(--wpbc_ui_horis_top_nav__normal_color) |
| 2736 |
} |
| 2737 |
@media screen and (max-width:782px) { |
| 2738 |
body.folded div.wpbc_admin, |
| 2739 |
div.wpbc_admin { |
| 2740 |
--wpbc_ui_top_nav__wp_left_menu_width: 0px |
| 2741 |
} |
| 2742 |
div.wpbc_admin { |
| 2743 |
--wpbc_ui_top_nav__wp_top_menu_height: 46px |
| 2744 |
} |
| 2745 |
.wpbc_ui_el__horis_top_bar__wrapper .wpbc_ui_el__horis_nav_title { |
| 2746 |
display: none |
| 2747 |
} |
| 2748 |
div.wpbc_settings_page_wrapper .wpbc_ui_el__horis_top_bar__wrapper .wpbc_ui_el__horis_nav_item a .wpbc_ui_el__horis_nav_icon { |
| 2749 |
margin: 0 8px |
| 2750 |
} |
| 2751 |
} |
| 2752 |
.wpbc_ui_el__horis_nav_item a { |
| 2753 |
-ms-flex: 1 1 100%; |
| 2754 |
flex: 1 1 100%; |
| 2755 |
margin: 0 5px -1px 0; |
| 2756 |
padding: 10px 15px; |
| 2757 |
border: none; |
| 2758 |
border-radius: 0; |
| 2759 |
text-shadow: none; |
| 2760 |
font-size: var(--wpbc_ui_horis_top_nav__font-size); |
| 2761 |
font-weight: 600; |
| 2762 |
text-transform: capitalize; |
| 2763 |
text-decoration: none; |
| 2764 |
outline: 0; |
| 2765 |
color: var(--wpbc_ui_horis_top_nav__a_color); |
| 2766 |
display: -ms-flexbox; |
| 2767 |
display: flex; |
| 2768 |
-ms-flex-flow: row; |
| 2769 |
flex-flow: row; |
| 2770 |
-ms-flex-pack: start; |
| 2771 |
justify-content: flex-start; |
| 2772 |
-ms-flex-align: center; |
| 2773 |
align-items: center; |
| 2774 |
border-bottom: var(--wpbc_ui_horis_top_nav__border-width) solid transparent; |
| 2775 |
box-shadow: none |
| 2776 |
} |
| 2777 |
.wpbc_ui_el__horis_nav_item a:focus, |
| 2778 |
.wpbc_ui_el__horis_nav_item a:hover, |
| 2779 |
.wpbc_ui_el__horis_nav_item.active a:focus, |
| 2780 |
.wpbc_ui_el__horis_nav_item.active a:hover { |
| 2781 |
color: var(--wpbc_ui_horis_top_nav__hover_color); |
| 2782 |
border-bottom-color: var(--wpbc_ui_horis_top_nav__hover_color); |
| 2783 |
box-shadow: none; |
| 2784 |
outline: 0 |
| 2785 |
} |
| 2786 |
.wpbc_ui_el__horis_nav_item a[aria-selected=true], |
| 2787 |
.wpbc_ui_el__horis_nav_item.active a { |
| 2788 |
border-bottom-color: var(--wpbc_ui_horis_top_nav__active_color); |
| 2789 |
box-shadow: none; |
| 2790 |
outline: 0 |
| 2791 |
} |
| 2792 |
.wpbc_ui_el__horis_nav_item.align_right { |
| 2793 |
margin-left: auto |
| 2794 |
} |
| 2795 |
.wpbc_ui_el__horis_nav_item.small_debug_tab a.wpbc_ui_el__horis_nav_item__a { |
| 2796 |
font-size: 10px; |
| 2797 |
line-height: 19px |
| 2798 |
} |
| 2799 |
.wpbc_ui_el__horis_nav_item a .wpbc_ui_el__horis_nav_icon { |
| 2800 |
margin: 0 |
| 2801 |
} |
| 2802 |
.wpbc_settings_page_wrapper .wpbc_ui_el__horis_top_bar__wrapper .wpbc_ui_el__horis_nav_item a .wpbc_ui_el__horis_nav_icon { |
| 2803 |
margin: 0 8px 0 0 |
| 2804 |
} |
| 2805 |
.wpbc_ui_el__horis_nav_item a .wpbc_ui_el__horis_nav_icon::before { |
| 2806 |
font-size: 16px; |
| 2807 |
line-height: 17px |
| 2808 |
} |
| 2809 |
.wpbc_ui_el__horis_nav_item.wpbc_ui_el__horis_nav_item_sub a .wpbc_ui_el__horis_nav_icon::before { |
| 2810 |
font-size: 14px |
| 2811 |
} |
| 2812 |
.wpbc_ui_el__horis_nav_item__a * { |
| 2813 |
-ms-flex: 0 1 auto; |
| 2814 |
flex: 0 1 auto |
| 2815 |
} |
| 2816 |
.wpbc_ui_el__horis_nav_item__a .wpbc_ui_el__horis_nav_icon_right { |
| 2817 |
margin-left: auto |
| 2818 |
} |
| 2819 |
.wpbc_ui_toolbar { |
| 2820 |
-ms-flex: 1 1 100%; |
| 2821 |
flex: 1 1 100%; |
| 2822 |
width: 100%; |
| 2823 |
display: -ms-flexbox; |
| 2824 |
display: flex; |
| 2825 |
-ms-flex-flow: row wrap; |
| 2826 |
flex-flow: row wrap; |
| 2827 |
-ms-flex-pack: start; |
| 2828 |
justify-content: flex-start; |
| 2829 |
-ms-flex-align: stretch; |
| 2830 |
align-items: stretch; |
| 2831 |
box-shadow: none; |
| 2832 |
border: 0; |
| 2833 |
background: 0 0; |
| 2834 |
margin: 0; |
| 2835 |
padding: 0; |
| 2836 |
box-sizing: border-box; |
| 2837 |
font-size: var(--wpbc_ui_toolbar__font-size) |
| 2838 |
} |
| 2839 |
.wpbc_ui_toolbar .wpbc_ui_group { |
| 2840 |
-ms-flex: 0 1 auto; |
| 2841 |
flex: 0 1 auto; |
| 2842 |
display: -ms-flexbox; |
| 2843 |
display: flex; |
| 2844 |
-ms-flex-flow: row wrap; |
| 2845 |
flex-flow: row wrap; |
| 2846 |
-ms-flex-pack: start; |
| 2847 |
justify-content: flex-start; |
| 2848 |
-ms-flex-align: baseline; |
| 2849 |
align-items: baseline; |
| 2850 |
border: none; |
| 2851 |
margin: 0; |
| 2852 |
padding: 0; |
| 2853 |
box-sizing: border-box |
| 2854 |
} |
| 2855 |
.wpbc_ui_toolbar .wpbc_ui_group .wpbc_ui_el { |
| 2856 |
-ms-flex-item-align: stretch; |
| 2857 |
align-self: stretch; |
| 2858 |
-ms-flex: 0 1 auto; |
| 2859 |
flex: 0 1 auto; |
| 2860 |
display: -ms-flexbox; |
| 2861 |
display: flex; |
| 2862 |
-ms-flex-flow: row nowrap; |
| 2863 |
flex-flow: row nowrap; |
| 2864 |
-ms-flex-pack: start; |
| 2865 |
justify-content: flex-start; |
| 2866 |
-ms-flex-align: center; |
| 2867 |
align-items: center; |
| 2868 |
position: relative; |
| 2869 |
margin: 5px 15px 5px 0; |
| 2870 |
box-sizing: border-box |
| 2871 |
} |
| 2872 |
.wpbc_ui_toolbar .wpbc_ui_group .wpbc_ui_el:last-child { |
| 2873 |
margin-right: 0 |
| 2874 |
} |
| 2875 |
.wpbc_ui__height_lg.wpbc_ui_group .wpbc_ui_el { |
| 2876 |
min-height: 38px |
| 2877 |
} |
| 2878 |
.wpbc_ui__height_small.wpbc_ui_group .wpbc_ui_el { |
| 2879 |
min-height: 32px |
| 2880 |
} |
| 2881 |
.wpbc_ui__height_mini.wpbc_ui_group .wpbc_ui_el, |
| 2882 |
.wpbc_ui__height_mini.wpbc_ui_group .wpbc_ui_el input, |
| 2883 |
.wpbc_ui__height_mini.wpbc_ui_group .wpbc_ui_el select { |
| 2884 |
min-height: 26px |
| 2885 |
} |
| 2886 |
.wpbc_ui__height_micro.wpbc_ui_group .wpbc_ui_el, |
| 2887 |
.wpbc_ui__height_micro.wpbc_ui_group .wpbc_ui_el input, |
| 2888 |
.wpbc_ui__height_micro.wpbc_ui_group .wpbc_ui_el select { |
| 2889 |
min-height: 24px; |
| 2890 |
font-size: 12px; |
| 2891 |
line-height: 1 |
| 2892 |
} |
| 2893 |
.wpbc_ui__bg_white { |
| 2894 |
background-color: var(--wpbc_ui__gen__panel_background-color) |
| 2895 |
} |
| 2896 |
.wpbc_ui__bg_transparent { |
| 2897 |
background-color: transparent |
| 2898 |
} |
| 2899 |
.wpbc_ui__hidden { |
| 2900 |
display: none!important |
| 2901 |
} |
| 2902 |
.wpbc_ui__width_100 { |
| 2903 |
width: 100%; |
| 2904 |
max-width: 100%; |
| 2905 |
min-width: 100%; |
| 2906 |
-ms-flex: 1 1 100%; |
| 2907 |
flex: 1 1 100% |
| 2908 |
} |
| 2909 |
.wpbc_ui_toolbar a { |
| 2910 |
color: var(--wpbc_ui__gen__text-color) |
| 2911 |
} |
| 2912 |
.wpbc_ui_toolbar .wpbc_ui_group.wpbc_ui_group_filter_row_2 { |
| 2913 |
padding: 10px 14px; |
| 2914 |
margin: 10px 0 35px; |
| 2915 |
border: 2px solid #97a0ac; |
| 2916 |
border-radius: 5px |
| 2917 |
} |
| 2918 |
.wpbc_ui_group .wpbc_ui_el input { |
| 2919 |
-ms-flex-item-align: stretch; |
| 2920 |
align-self: stretch; |
| 2921 |
border: 1px solid rgba(0,0,0,.1882352941); |
| 2922 |
margin: 0 |
| 2923 |
} |
| 2924 |
.ul_dropdown_menu__other_filters i::before, |
| 2925 |
.ul_dropdown_menu__reload_listing i::before { |
| 2926 |
font-size: 24px |
| 2927 |
} |
| 2928 |
.wpbc_ajx_toolbar .wpbc_ui_el__choosen { |
| 2929 |
-ms-flex-align: center; |
| 2930 |
align-items: center; |
| 2931 |
margin-right: 20px |
| 2932 |
} |
| 2933 |
.wpbc_ajx_toolbar .wpbc_ui_el__choosen .chzn-container { |
| 2934 |
-ms-flex-item-align: initial; |
| 2935 |
align-self: initial; |
| 2936 |
min-width: 180px |
| 2937 |
} |
| 2938 |
div.wpbc_ajx_toolbar { |
| 2939 |
margin: 0 0 20px |
| 2940 |
} |
| 2941 |
#wpbc_booking_listing_reload_button { |
| 2942 |
background: 0 0; |
| 2943 |
border: 0 |
| 2944 |
} |
| 2945 |
#wpbc_booking_listing_reload_button i.menu_icon::before { |
| 2946 |
font-size: 22px |
| 2947 |
} |
| 2948 |
.wpbc_admin .clr-field button { |
| 2949 |
height: calc(100% - 6px); |
| 2950 |
right: 3px; |
| 2951 |
pointer-events: unset; |
| 2952 |
cursor: pointer |
| 2953 |
} |
| 2954 |
.wpbc_ui__collapsible_group .group__header { |
| 2955 |
width: 100%; |
| 2956 |
display: -ms-flexbox; |
| 2957 |
display: flex; |
| 2958 |
-ms-flex-flow: row nowrap; |
| 2959 |
flex-flow: row nowrap; |
| 2960 |
-ms-flex-align: center; |
| 2961 |
align-items: center; |
| 2962 |
-ms-flex-pack: justify; |
| 2963 |
justify-content: space-between; |
| 2964 |
padding: 12px 10px; |
| 2965 |
text-align: left; |
| 2966 |
font-weight: 600; |
| 2967 |
cursor: pointer; |
| 2968 |
background: 0 0; |
| 2969 |
border: 0; |
| 2970 |
border-bottom: 1px solid #eee; |
| 2971 |
border-radius: 0; |
| 2972 |
border-left: 2px solid transparent |
| 2973 |
} |
| 2974 |
.wpbc_ui__collapsible_group.is-open { |
| 2975 |
padding-bottom: 25px |
| 2976 |
} |
| 2977 |
.wpbc_ui__collapsible_group.is-open .group__header { |
| 2978 |
border-left-color: #1e7bc7; |
| 2979 |
background: rgba(30,123,199,.0392156863); |
| 2980 |
border-radius: 0 5px 5px 0; |
| 2981 |
border-bottom-color: rgba(30,123,199,.1215686275) |
| 2982 |
} |
| 2983 |
.wpbc_ui__collapsible_group:not(.is-open) .group__header:hover { |
| 2984 |
border-left-color: var(--wpbc_admin-active-tab-color,#707980) |
| 2985 |
} |
| 2986 |
.wpbc_ui__collapsible_group .group__header:hover .wpbc-bi-chevron-right, |
| 2987 |
.wpbc_ui__collapsible_group.is-open .group__header:hover .wpbc-bi-chevron-right { |
| 2988 |
transition: .4s ease-in-out; |
| 2989 |
-ms-transform: rotate(2deg); |
| 2990 |
transform: rotateZ(2deg) |
| 2991 |
} |
| 2992 |
.wpbc_ui__collapsible_group.is-open .group__header:hover .wpbc-bi-chevron-right { |
| 2993 |
-ms-transform: rotate(88deg); |
| 2994 |
transform: rotateZ(88deg) |
| 2995 |
} |
| 2996 |
.wpbc_ui__collapsible_group.is-open .group__header .wpbc-bi-chevron-right { |
| 2997 |
-ms-transform: rotate(90deg); |
| 2998 |
transform: rotate(90deg) |
| 2999 |
} |
| 3000 |
.wpbc_ui__collapsible_group .group__header h3 { |
| 3001 |
margin: 0; |
| 3002 |
padding: 0; |
| 3003 |
font-size: 14px |
| 3004 |
} |
| 3005 |
.wpbc_ui__collapsible_group .group__fields { |
| 3006 |
display: none; |
| 3007 |
padding: 15px 5px 5px 15px |
| 3008 |
} |
| 3009 |
.wpbc_ui__collapsible_group.is-open .group__fields { |
| 3010 |
display: -ms-flexbox; |
| 3011 |
display: flex; |
| 3012 |
-ms-flex-flow: column nowrap; |
| 3013 |
flex-flow: column nowrap; |
| 3014 |
-ms-flex-pack: start; |
| 3015 |
justify-content: flex-start; |
| 3016 |
-ms-flex-align: stretch; |
| 3017 |
align-items: stretch; |
| 3018 |
gap: 20px |
| 3019 |
} |
| 3020 |
.wpbc_ui__collapsible_group .wpbc_ui__toggle { |
| 3021 |
display: inline-block; |
| 3022 |
margin: 0; |
| 3023 |
padding: 0; |
| 3024 |
line-height: 1.75 |
| 3025 |
} |
| 3026 |
.wpbc_ui__collapsible_group .wpbc_ui__toggle label, |
| 3027 |
.wpbc_ui__collapsible_group .wpbc_ui__toggle span { |
| 3028 |
display: inline; |
| 3029 |
line-height: 2.2; |
| 3030 |
margin: 0; |
| 3031 |
padding: 0 |
| 3032 |
} |
| 3033 |
.wpbc_ui__collapsible_group .wpbc_ui__toggle input[type=checkbox] + label.wpbc_ui__toggle_icon { |
| 3034 |
display: inline-block; |
| 3035 |
vertical-align: text-top; |
| 3036 |
margin-inline-end: .5em; |
| 3037 |
margin-block-start: 2px |
| 3038 |
} |
| 3039 |
.wpbc_tab__panel[hidden] { |
| 3040 |
display: none!important |
| 3041 |
} |
| 3042 |
.wpbc_rightbar_palette { |
| 3043 |
--wpbc-palette-accent: var(--wpbc-ts-red, #df202b); |
| 3044 |
--wpbc-palette-bg: var(--wpbc-ts-bg, #fff); |
| 3045 |
--wpbc-palette-bg-soft: var(--wpbc-ts-bg-soft, #f6f7f7); |
| 3046 |
--wpbc-palette-border: var(--wpbc-ts-border, #dfe4ea); |
| 3047 |
--wpbc-palette-muted: var(--wpbc-ts-muted, #646970); |
| 3048 |
--wpbc-palette-radius: var(--wpbc-ts-radius, 6px); |
| 3049 |
--wpbc-palette-text: var(--wpbc-ts-text, #1d2327) |
| 3050 |
} |
| 3051 |
.wpbc_ui_el__vert_right_bar__content .wpbc_ui_el__expand_colapse_btns { |
| 3052 |
display: none |
| 3053 |
} |
| 3054 |
.wpbc_rightbar_palette .wpbc_bfb__inspector__head { |
| 3055 |
border-bottom: 1px solid var(--wpbc-palette-border); |
| 3056 |
margin: 0; |
| 3057 |
padding: 0 10px 10px |
| 3058 |
} |
| 3059 |
.wpbc_rightbar_palette .wpbc_bfb__inspector__head .header_container { |
| 3060 |
padding: 0 |
| 3061 |
} |
| 3062 |
.wpbc_rightbar_palette .wpbc_bfb__inspector__head .title { |
| 3063 |
color: var(--wpbc-palette-text); |
| 3064 |
font-size: 14px; |
| 3065 |
font-weight: 700; |
| 3066 |
letter-spacing: 0; |
| 3067 |
line-height: 1.74; |
| 3068 |
margin: 0; |
| 3069 |
text-transform: uppercase |
| 3070 |
} |
| 3071 |
.wpbc_rightbar_palette .wpbc_bfb__inspector__head .desc { |
| 3072 |
color: var(--wpbc-palette-muted); |
| 3073 |
font-size: 12px; |
| 3074 |
line-height: 1.75; |
| 3075 |
margin: 5px 0 0 |
| 3076 |
} |
| 3077 |
.wpbc_rightbar_palette .wpbc_bfb__inspector__body, |
| 3078 |
.wpbc_rightbar_palette .wpbc_ts_inspector_body { |
| 3079 |
padding: 0 |
| 3080 |
} |
| 3081 |
.wpbc_rightbar_palette .wpbc_ts_inspector_row, |
| 3082 |
.wpbc_rightbar_palette__row { |
| 3083 |
-ms-flex-align: start; |
| 3084 |
align-items: flex-start; |
| 3085 |
display: -ms-flexbox; |
| 3086 |
display: flex; |
| 3087 |
-ms-flex-flow: row wrap; |
| 3088 |
flex-flow: row wrap; |
| 3089 |
gap: 8px; |
| 3090 |
margin-bottom: 14px |
| 3091 |
} |
| 3092 |
.wpbc_rightbar_palette .wpbc_ts_inspector_row.row__bordered, |
| 3093 |
.wpbc_rightbar_palette__row.row__bordered { |
| 3094 |
background: var(--wpbc-palette-bg-soft); |
| 3095 |
border: 1px solid var(--wpbc-palette-border); |
| 3096 |
border-radius: var(--wpbc-palette-radius); |
| 3097 |
padding: 10px |
| 3098 |
} |
| 3099 |
.wpbc_rightbar_palette .wpbc_ts_inspector_label, |
| 3100 |
.wpbc_rightbar_palette .wpbc_ts_inspector_value, |
| 3101 |
.wpbc_rightbar_palette__label, |
| 3102 |
.wpbc_rightbar_palette__value { |
| 3103 |
-ms-flex: 1 1 100%; |
| 3104 |
flex: 1 1 100% |
| 3105 |
} |
| 3106 |
.wpbc_rightbar_palette .wpbc_ts_inspector_label, |
| 3107 |
.wpbc_rightbar_palette__label { |
| 3108 |
color: var(--wpbc-palette-text); |
| 3109 |
font-weight: 600 |
| 3110 |
} |
| 3111 |
.wpbc_rightbar_palette .wpbc_ts_inspector_value, |
| 3112 |
.wpbc_rightbar_palette__value { |
| 3113 |
color: var(--wpbc-palette-muted); |
| 3114 |
line-height: 1.5 |
| 3115 |
} |
| 3116 |
.wpbc_rightbar_palette .wpbc_ts_inspector_select, |
| 3117 |
.wpbc_rightbar_palette__select { |
| 3118 |
min-height: 36px; |
| 3119 |
width: 100% |
| 3120 |
} |
| 3121 |
.wpbc_rightbar_palette .wpbc_ts_segmented, |
| 3122 |
.wpbc_rightbar_palette__segmented { |
| 3123 |
background: var(--wpbc-palette-bg); |
| 3124 |
border: 1px solid var(--wpbc-palette-border); |
| 3125 |
border-radius: var(--wpbc-palette-radius); |
| 3126 |
display: -ms-flexbox; |
| 3127 |
display: flex; |
| 3128 |
margin-bottom: 12px; |
| 3129 |
overflow: hidden |
| 3130 |
} |
| 3131 |
.wpbc_rightbar_palette .wpbc_ts_segmented a, |
| 3132 |
.wpbc_rightbar_palette__segmented a { |
| 3133 |
border-right: 1px solid var(--wpbc-palette-border); |
| 3134 |
color: var(--wpbc-palette-text); |
| 3135 |
-ms-flex: 1 1 0px; |
| 3136 |
flex: 1 1 0; |
| 3137 |
padding: 9px 12px; |
| 3138 |
text-align: center; |
| 3139 |
text-decoration: none |
| 3140 |
} |
| 3141 |
.wpbc_rightbar_palette .wpbc_ts_segmented a:last-child, |
| 3142 |
.wpbc_rightbar_palette__segmented a:last-child { |
| 3143 |
border-right: 0 |
| 3144 |
} |
| 3145 |
.wpbc_rightbar_palette .wpbc_ts_segmented a.is-active, |
| 3146 |
.wpbc_rightbar_palette__segmented a.is-active { |
| 3147 |
background: var(--wpbc-palette-accent); |
| 3148 |
color: #fff |
| 3149 |
} |
| 3150 |
.inspector__row .wpbc_slider_range_group.wpbc_inline_inputs, |
| 3151 |
.wpbc_slider_range_group.wpbc_inline_inputs { |
| 3152 |
width: 100%; |
| 3153 |
display: -ms-flexbox; |
| 3154 |
display: flex; |
| 3155 |
-ms-flex-flow: row nowrap; |
| 3156 |
flex-flow: row nowrap; |
| 3157 |
-ms-flex-pack: start; |
| 3158 |
justify-content: flex-start; |
| 3159 |
-ms-flex-align: center; |
| 3160 |
align-items: center; |
| 3161 |
gap: 15px |
| 3162 |
} |
| 3163 |
.wpbc_slider_len_group { |
| 3164 |
display: -ms-flexbox; |
| 3165 |
display: flex; |
| 3166 |
-ms-flex-flow: column nowrap; |
| 3167 |
flex-flow: column nowrap; |
| 3168 |
-ms-flex-pack: start; |
| 3169 |
justify-content: flex-start; |
| 3170 |
-ms-flex-align: start; |
| 3171 |
align-items: flex-start; |
| 3172 |
gap: 10px |
| 3173 |
} |
| 3174 |
.wpbc_slider_len_group .wpbc_inline_inputs { |
| 3175 |
width: 100%; |
| 3176 |
display: -ms-flexbox; |
| 3177 |
display: flex; |
| 3178 |
-ms-flex-flow: row nowrap; |
| 3179 |
flex-flow: row nowrap; |
| 3180 |
-ms-flex-pack: start; |
| 3181 |
justify-content: flex-start; |
| 3182 |
-ms-flex-align: center; |
| 3183 |
align-items: center; |
| 3184 |
gap: 15px |
| 3185 |
} |
| 3186 |
.wpbc_slider_len_group .wpbc_inline_inputs, |
| 3187 |
.wpbc_slider_len_group label { |
| 3188 |
margin: 5px 0 |
| 3189 |
} |
| 3190 |
.wpbc__wrap__booking_listing { |
| 3191 |
margin: 15px 0 |
| 3192 |
} |
| 3193 |
.wpbc__list__table, |
| 3194 |
.wpbc__list__table .wpbc__list__body, |
| 3195 |
.wpbc__list__table .wpbc__list__foot, |
| 3196 |
.wpbc__list__table .wpbc__list__head { |
| 3197 |
-ms-flex: 1 1 100%; |
| 3198 |
flex: 1 1 100%; |
| 3199 |
width: 100%; |
| 3200 |
display: -ms-flexbox; |
| 3201 |
display: flex; |
| 3202 |
-ms-flex-flow: column nowrap; |
| 3203 |
flex-flow: column nowrap; |
| 3204 |
-ms-flex-pack: start; |
| 3205 |
justify-content: flex-start; |
| 3206 |
-ms-flex-align: stretch; |
| 3207 |
align-items: stretch; |
| 3208 |
margin: 0; |
| 3209 |
padding: 0 |
| 3210 |
} |
| 3211 |
.wpbc__list__table .wpbc__list__row { |
| 3212 |
-ms-flex: 1 1 100%; |
| 3213 |
flex: 1 1 100%; |
| 3214 |
width: 100%; |
| 3215 |
display: -ms-flexbox; |
| 3216 |
display: flex; |
| 3217 |
-ms-flex-flow: row wrap; |
| 3218 |
flex-flow: row wrap; |
| 3219 |
-ms-flex-pack: start; |
| 3220 |
justify-content: flex-start; |
| 3221 |
-ms-flex-align: start; |
| 3222 |
align-items: flex-start |
| 3223 |
} |
| 3224 |
.wpbc__list__table .wpbc__list__col { |
| 3225 |
-ms-flex: 0 1 auto; |
| 3226 |
flex: 0 1 auto; |
| 3227 |
display: -ms-flexbox; |
| 3228 |
display: flex; |
| 3229 |
-ms-flex-flow: row wrap; |
| 3230 |
flex-flow: row wrap; |
| 3231 |
-ms-flex-pack: start; |
| 3232 |
justify-content: flex-start; |
| 3233 |
-ms-flex-align: start; |
| 3234 |
align-items: flex-start; |
| 3235 |
-ms-flex-line-pack: normal; |
| 3236 |
align-content: normal |
| 3237 |
} |
| 3238 |
.wpbc__list__table { |
| 3239 |
border-radius: var(--wpbc_ui_listing__border_radius); |
| 3240 |
background: 0 0 |
| 3241 |
} |
| 3242 |
.wpbc__list__table .wpbc__list__foot, |
| 3243 |
.wpbc__list__table .wpbc__list__head { |
| 3244 |
background: var(--wpbc_ui_listing__back_color); |
| 3245 |
border-radius: var(--wpbc_ui_listing__border_radius) var(--wpbc_ui_listing__border_radius) 0 0; |
| 3246 |
border-bottom: 1px solid var(--wpbc_ui_listing__row_border_color); |
| 3247 |
min-height: var(--wpbc_ui_listing__header_height); |
| 3248 |
line-height: var(--wpbc_ui_listing__header_height); |
| 3249 |
padding: 0 4px 0 8px; |
| 3250 |
box-sizing: border-box |
| 3251 |
} |
| 3252 |
.wpbc__list__table .wpbc__list__foot { |
| 3253 |
border-radius: 0 0 var(--wpbc_ui_listing__border_radius) var(--wpbc_ui_listing__border_radius); |
| 3254 |
border: 0; |
| 3255 |
border-top: 1px solid var(--wpbc_ui_listing__row_border_color); |
| 3256 |
padding: 5px 15px |
| 3257 |
} |
| 3258 |
.wpbc__list__table .wpbc__list__foot * { |
| 3259 |
font-size: 1em |
| 3260 |
} |
| 3261 |
.wpbc__list__table .wpbc__list__foot .wpbc__list__col, |
| 3262 |
.wpbc__list__table .wpbc__list__head .wpbc__list__col { |
| 3263 |
-ms-flex-align: center; |
| 3264 |
align-items: center |
| 3265 |
} |
| 3266 |
.wpbc__list__table .wpbc__list__foot .wpbc__list__row, |
| 3267 |
.wpbc__list__table .wpbc__list__head .wpbc__list__row { |
| 3268 |
-ms-flex-align: stretch; |
| 3269 |
align-items: stretch |
| 3270 |
} |
| 3271 |
.wpbc__list__table .wpbc__list__foot .wpbc__list__col.check-column, |
| 3272 |
.wpbc__list__table .wpbc__list__head .wpbc__list__col.check-column { |
| 3273 |
-ms-flex: 0 0 40px; |
| 3274 |
flex: 0 0 40px; |
| 3275 |
display: -ms-flexbox; |
| 3276 |
display: flex; |
| 3277 |
-ms-flex-flow: column nowrap; |
| 3278 |
flex-flow: column nowrap; |
| 3279 |
-ms-flex-align: center; |
| 3280 |
align-items: center; |
| 3281 |
-ms-flex-pack: center; |
| 3282 |
justify-content: center |
| 3283 |
} |
| 3284 |
.wpbc__list__table .wpbc__list__foot a, |
| 3285 |
.wpbc__list__table .wpbc__list__foot a:focus, |
| 3286 |
.wpbc__list__table .wpbc__list__foot a:hover, |
| 3287 |
.wpbc__list__table .wpbc__list__head a, |
| 3288 |
.wpbc__list__table .wpbc__list__head a:focus, |
| 3289 |
.wpbc__list__table .wpbc__list__head a:hover { |
| 3290 |
text-decoration: none |
| 3291 |
} |
| 3292 |
.wpbc__list__table .wpbc__list__foot .ul_dropdown_menu_toggle, |
| 3293 |
.wpbc__list__table .wpbc__list__foot .wpbc_ui_el__a, |
| 3294 |
.wpbc__list__table .wpbc__list__head .ul_dropdown_menu_toggle, |
| 3295 |
.wpbc__list__table .wpbc__list__head .wpbc_ui_el__a { |
| 3296 |
color: var(--wpbc_ui__gen__text-color) |
| 3297 |
} |
| 3298 |
.wpbc__list__table .wpbc__list__foot .wpbc_ui_el__a.disabled, |
| 3299 |
.wpbc__list__table .wpbc__list__head .wpbc_ui_el__a.disabled { |
| 3300 |
color: #d8d8d8; |
| 3301 |
cursor: not-allowed |
| 3302 |
} |
| 3303 |
.wpbc_pagination_el { |
| 3304 |
-ms-flex: 0 1 auto; |
| 3305 |
flex: 0 1 auto; |
| 3306 |
display: -ms-flexbox; |
| 3307 |
display: flex; |
| 3308 |
-ms-flex-flow: row wrap; |
| 3309 |
flex-flow: row wrap; |
| 3310 |
-ms-flex-pack: start; |
| 3311 |
justify-content: flex-start; |
| 3312 |
-ms-flex-align: center; |
| 3313 |
align-items: center |
| 3314 |
} |
| 3315 |
.wpbc_pagination__prev_next .wpbc_ui_el:first-child, |
| 3316 |
.wpbc_pagination_active_page_in_selectbox { |
| 3317 |
margin-right: 10px |
| 3318 |
} |
| 3319 |
.wpbc_pagination__prev_next .wpbc_ui_el__a { |
| 3320 |
margin: 0; |
| 3321 |
padding: 0 5px |
| 3322 |
} |
| 3323 |
.wpbc__list__head .wpbc_ui_el__a .menu_icon::before { |
| 3324 |
font-size: 28px; |
| 3325 |
line-height: var(--wpbc_ui_listing__header_height); |
| 3326 |
vertical-align: middle |
| 3327 |
} |
| 3328 |
.wpbc__list__foot .wpbc_ui_el__divider .wpbc_ui_el__vertical_line, |
| 3329 |
.wpbc__list__head .wpbc_ui_el__divider .wpbc_ui_el__vertical_line { |
| 3330 |
margin: 5px 15px |
| 3331 |
} |
| 3332 |
.wpbc__list__col.col__right { |
| 3333 |
margin-left: auto |
| 3334 |
} |
| 3335 |
.wpbc_a_row { |
| 3336 |
-ms-flex: 1 1 100%; |
| 3337 |
flex: 1 1 100%; |
| 3338 |
width: 100%; |
| 3339 |
display: -ms-flexbox; |
| 3340 |
display: flex; |
| 3341 |
-ms-flex-flow: row wrap; |
| 3342 |
flex-flow: row wrap; |
| 3343 |
-ms-flex-pack: start; |
| 3344 |
justify-content: flex-start; |
| 3345 |
-ms-flex-align: start; |
| 3346 |
align-items: flex-start |
| 3347 |
} |
| 3348 |
.wpbc_a_col { |
| 3349 |
-ms-flex: 1 1 1px; |
| 3350 |
flex: 1 1 1px; |
| 3351 |
display: -ms-flexbox; |
| 3352 |
display: flex; |
| 3353 |
-ms-flex-flow: row wrap; |
| 3354 |
flex-flow: row wrap; |
| 3355 |
-ms-flex-pack: start; |
| 3356 |
justify-content: flex-start; |
| 3357 |
-ms-flex-align: start; |
| 3358 |
align-items: flex-start; |
| 3359 |
-ms-flex-line-pack: normal; |
| 3360 |
align-content: normal |
| 3361 |
} |
| 3362 |
.wpbc_a_overflow_hide { |
| 3363 |
overflow: hidden |
| 3364 |
} |
| 3365 |
.wpbc_a_row_nowrap { |
| 3366 |
-ms-flex-flow: row nowrap; |
| 3367 |
flex-flow: row nowrap |
| 3368 |
} |
| 3369 |
.wpbc__list__table { |
| 3370 |
display: -ms-flexbox; |
| 3371 |
display: flex; |
| 3372 |
-ms-flex-flow: column nowrap; |
| 3373 |
flex-flow: column nowrap; |
| 3374 |
-ms-flex-pack: start; |
| 3375 |
justify-content: flex-start; |
| 3376 |
-ms-flex-align: stretch; |
| 3377 |
align-items: stretch; |
| 3378 |
margin: 0; |
| 3379 |
padding: 0; |
| 3380 |
box-shadow: 0 0 1px #aaa |
| 3381 |
} |
| 3382 |
.wpbc__list__table:has(.wpbc_spins_loading_container) { |
| 3383 |
box-shadow: none |
| 3384 |
} |
| 3385 |
.wpbc__list__table .wpbc_selectable_body { |
| 3386 |
display: -ms-flexbox; |
| 3387 |
display: flex; |
| 3388 |
-ms-flex-flow: column nowrap; |
| 3389 |
flex-flow: column nowrap; |
| 3390 |
-ms-flex-pack: start; |
| 3391 |
justify-content: flex-start; |
| 3392 |
-ms-flex-align: stretch; |
| 3393 |
align-items: stretch; |
| 3394 |
margin: 0; |
| 3395 |
padding: 0; |
| 3396 |
background: var(--wpbc_ui_listing__back_color); |
| 3397 |
border: 0 |
| 3398 |
} |
| 3399 |
div .wpbc_listing_usual_row { |
| 3400 |
-ms-flex: 1 1 100%; |
| 3401 |
flex: 1 1 100%; |
| 3402 |
display: -ms-flexbox; |
| 3403 |
display: flex; |
| 3404 |
-ms-flex-flow: row nowrap; |
| 3405 |
flex-flow: row nowrap; |
| 3406 |
-ms-flex-pack: start; |
| 3407 |
justify-content: flex-start; |
| 3408 |
-ms-flex-align: start; |
| 3409 |
align-items: flex-start; |
| 3410 |
border-bottom: 1px solid var(--wpbc_ui_listing__row_border_color); |
| 3411 |
border-left: 4px solid transparent; |
| 3412 |
margin: 0 |
| 3413 |
} |
| 3414 |
.wpbc_listing_usual_row:last-child { |
| 3415 |
border-bottom: 0 |
| 3416 |
} |
| 3417 |
.wpbc_listing_col { |
| 3418 |
-ms-flex: 0 1 auto; |
| 3419 |
flex: 0 1 auto |
| 3420 |
} |
| 3421 |
.wpbc_listing_col .booking_details_simple, |
| 3422 |
.wpbc_listing_col .booking_details_simple * { |
| 3423 |
font-size: var(--wpbc_ui__gen__font-size) |
| 3424 |
} |
| 3425 |
.wpbc__list__table .wpbc_selectable_body > .wpbc_listing_usual_row { |
| 3426 |
padding: 4px 0 4px 4px; |
| 3427 |
line-height: 2.4; |
| 3428 |
-ms-flex-flow: row wrap; |
| 3429 |
flex-flow: row wrap |
| 3430 |
} |
| 3431 |
.wpbc_row_wrap { |
| 3432 |
-ms-flex: 1 1 100%; |
| 3433 |
flex: 1 1 100%; |
| 3434 |
display: -ms-flexbox; |
| 3435 |
display: flex; |
| 3436 |
-ms-flex-flow: row nowrap; |
| 3437 |
flex-flow: row nowrap; |
| 3438 |
-ms-flex-pack: start; |
| 3439 |
justify-content: flex-start; |
| 3440 |
-ms-flex-align: start; |
| 3441 |
align-items: flex-start; |
| 3442 |
transition: .25s ease-in-out |
| 3443 |
} |
| 3444 |
.wpbc_row_wrap.max_height_a { |
| 3445 |
max-height: var(--wpbc_ui_listing__colapsed_height); |
| 3446 |
height: var(--wpbc_ui_listing__colapsed_height); |
| 3447 |
overflow: hidden |
| 3448 |
} |
| 3449 |
.wpbc_row_wrap.max_height_a:has(.wpbc_btn_expand_down_a:hover) { |
| 3450 |
--wpbc_ui_listing__colapsed_height: auto; |
| 3451 |
min-height: 82px |
| 3452 |
} |
| 3453 |
.wpbc_row_wrap .wpbc_btn_expand_down_a:hover i::before { |
| 3454 |
-ms-transform: rotate(45deg); |
| 3455 |
transform: rotateZ(45deg); |
| 3456 |
transition: .4s ease-in-out |
| 3457 |
} |
| 3458 |
.wpbc_row_wrap.max_height_a .wpbc_btn_expand_down_a:hover i::before { |
| 3459 |
-ms-transform: rotate(-45deg); |
| 3460 |
transform: rotateZ(-45deg) |
| 3461 |
} |
| 3462 |
.wpbc_row_wrap.max_height_a .booking_details_full { |
| 3463 |
display: none |
| 3464 |
} |
| 3465 |
.wpbc_row_wrap:not(.max_height_a) { |
| 3466 |
--wpbc_ui_listing__colapsed_height: 82px; |
| 3467 |
min-height: var(--wpbc_ui_listing__colapsed_height) |
| 3468 |
} |
| 3469 |
.wpbc_row_wrap:not(.max_height_a) .booking_details_simple { |
| 3470 |
display: none |
| 3471 |
} |
| 3472 |
.wpbc_row_wrap.max_height_a .booking_dates_expand_section { |
| 3473 |
max-height: calc(var(--wpbc_ui_listing__colapsed_height) - 1px); |
| 3474 |
overflow: hidden |
| 3475 |
} |
| 3476 |
.wpbc_col_data .booking_details_simple__expand, |
| 3477 |
.wpbc_col_data a.booking_details_simple__expand:hover { |
| 3478 |
color: var(--wpbc_ui__gen__text-color); |
| 3479 |
text-decoration: none; |
| 3480 |
outline: 0; |
| 3481 |
box-shadow: none |
| 3482 |
} |
| 3483 |
.wpbc_col_data a.booking_details_simple__expand, |
| 3484 |
.wpbc_col_data a.booking_details_simple__expand:hover { |
| 3485 |
cursor: pointer |
| 3486 |
} |
| 3487 |
.wpbc_a_col__check { |
| 3488 |
-ms-flex: 0 0 40px; |
| 3489 |
flex: 0 0 40px; |
| 3490 |
-ms-flex-item-align: stretch; |
| 3491 |
align-self: stretch; |
| 3492 |
display: -ms-flexbox; |
| 3493 |
display: flex; |
| 3494 |
-ms-flex-flow: column nowrap; |
| 3495 |
flex-flow: column nowrap; |
| 3496 |
-ms-flex-align: center; |
| 3497 |
align-items: center; |
| 3498 |
-ms-flex-pack: start; |
| 3499 |
justify-content: flex-start |
| 3500 |
} |
| 3501 |
.wpbc_a_col__dates { |
| 3502 |
-ms-flex: 0 0 170px; |
| 3503 |
flex: 0 0 170px; |
| 3504 |
-ms-flex-item-align: stretch; |
| 3505 |
align-self: stretch; |
| 3506 |
display: -ms-flexbox; |
| 3507 |
display: flex; |
| 3508 |
-ms-flex-flow: row nowrap; |
| 3509 |
flex-flow: row nowrap; |
| 3510 |
-ms-flex-align: start; |
| 3511 |
align-items: flex-start; |
| 3512 |
-ms-flex-pack: start; |
| 3513 |
justify-content: flex-start; |
| 3514 |
border-right: 4px solid var(--wpbc_ui_listing__pending_color) |
| 3515 |
} |
| 3516 |
.wpbc_listing_usual_row.wpbc_row_booking_approved .wpbc_a_col__dates { |
| 3517 |
border-right-color: var(--wpbc_ui_listing__approved_color) |
| 3518 |
} |
| 3519 |
.wpbc_listing_usual_row.wpbc_row_booking_trash .wpbc_a_col__dates { |
| 3520 |
border-right-color: var(--wpbc_ui_listing__trash_color) |
| 3521 |
} |
| 3522 |
.wpbc_row_wrap.max_height_a .wpbc_a_col__dates .booking_dates_small { |
| 3523 |
display: -ms-flexbox; |
| 3524 |
display: flex |
| 3525 |
} |
| 3526 |
.wpbc_row_wrap.max_height_a .wpbc_a_col__dates .booking_dates_full { |
| 3527 |
display: none |
| 3528 |
} |
| 3529 |
.wpbc_row_wrap:not(.max_height_a) .wpbc_a_col__dates .booking_dates_full { |
| 3530 |
display: -ms-flexbox; |
| 3531 |
display: flex |
| 3532 |
} |
| 3533 |
.wpbc_row_wrap:not(.max_height_a) .wpbc_a_col__dates .booking_dates_small { |
| 3534 |
display: none |
| 3535 |
} |
| 3536 |
.wpbc_row_wrap:not(.max_height_a) .wpbc_a_col__dates .content_text { |
| 3537 |
-ms-flex-flow: row wrap; |
| 3538 |
flex-flow: row wrap; |
| 3539 |
-ms-flex-pack: start; |
| 3540 |
justify-content: flex-start |
| 3541 |
} |
| 3542 |
.wpbc_a_col__dates .content_text { |
| 3543 |
display: -ms-flexbox; |
| 3544 |
display: flex; |
| 3545 |
-ms-flex-flow: column; |
| 3546 |
flex-flow: column; |
| 3547 |
-ms-flex-pack: center; |
| 3548 |
justify-content: center; |
| 3549 |
-ms-flex-align: center; |
| 3550 |
align-items: center; |
| 3551 |
margin: auto |
| 3552 |
} |
| 3553 |
.wpbc_a_col__dates .date_tire { |
| 3554 |
line-height: 10px; |
| 3555 |
margin: 0 5px |
| 3556 |
} |
| 3557 |
.booking_dates_expand_section { |
| 3558 |
-ms-flex: 1 1 auto; |
| 3559 |
flex: 1 1 auto; |
| 3560 |
display: -ms-flexbox; |
| 3561 |
display: flex; |
| 3562 |
-ms-flex-flow: column nowrap; |
| 3563 |
flex-flow: column nowrap; |
| 3564 |
-ms-flex-align: center; |
| 3565 |
align-items: center; |
| 3566 |
-ms-flex-pack: start; |
| 3567 |
justify-content: flex-start |
| 3568 |
} |
| 3569 |
.wpbc_btn_expand_down { |
| 3570 |
-ms-flex: 0 0 auto; |
| 3571 |
flex: 0 0 auto; |
| 3572 |
-ms-flex-item-align: stretch; |
| 3573 |
align-self: stretch; |
| 3574 |
width: 20px; |
| 3575 |
display: -ms-flexbox; |
| 3576 |
display: flex; |
| 3577 |
-ms-flex-flow: column; |
| 3578 |
flex-flow: column; |
| 3579 |
-ms-flex-pack: start; |
| 3580 |
justify-content: flex-start; |
| 3581 |
-ms-flex-align: start; |
| 3582 |
align-items: flex-start; |
| 3583 |
-ms-flex-item-align: start; |
| 3584 |
align-self: flex-start; |
| 3585 |
margin-bottom: 2px |
| 3586 |
} |
| 3587 |
.wpbc_btn_expand_down a, |
| 3588 |
.wpbc_btn_expand_down a:hover { |
| 3589 |
line-height: 1; |
| 3590 |
text-align: center; |
| 3591 |
color: var(--wpbc_ui__gen__text-color); |
| 3592 |
-ms-flex: 0 1 auto; |
| 3593 |
flex: 0 1 auto; |
| 3594 |
margin: 2px 0 0 -3px |
| 3595 |
} |
| 3596 |
.wpbc_btn_expand_down i::before { |
| 3597 |
font-size: 20px |
| 3598 |
} |
| 3599 |
.wpbc_a_col__details_lables { |
| 3600 |
-ms-flex: 1 1 auto; |
| 3601 |
flex: 1 1 auto; |
| 3602 |
padding-left: 15px; |
| 3603 |
margin-bottom: 10px; |
| 3604 |
min-width: 1% |
| 3605 |
} |
| 3606 |
.wpbc_a_col__cost { |
| 3607 |
-ms-flex: 0 0 110px; |
| 3608 |
flex: 0 0 110px; |
| 3609 |
-ms-flex-item-align: stretch; |
| 3610 |
align-self: stretch |
| 3611 |
} |
| 3612 |
.wpbc_a_col__action { |
| 3613 |
-ms-flex: 0 0 50px; |
| 3614 |
flex: 0 0 50px; |
| 3615 |
-ms-flex-item-align: stretch; |
| 3616 |
align-self: stretch |
| 3617 |
} |
| 3618 |
.wpbc_a_row__notes .wpbc_col_note_readonly { |
| 3619 |
-ms-flex: 1 1 1px; |
| 3620 |
flex: 1 1 1px; |
| 3621 |
margin: 0 10px 10px 15px |
| 3622 |
} |
| 3623 |
.wpbc_a_row__system .wpbc_col_sys_info { |
| 3624 |
-ms-flex: 1 1 1px; |
| 3625 |
flex: 1 1 1px; |
| 3626 |
margin: 0 10px 5px 18px |
| 3627 |
} |
| 3628 |
@media (max-width:960px) { |
| 3629 |
.wpbc__list__table { |
| 3630 |
box-shadow: none |
| 3631 |
} |
| 3632 |
.wpbc__list__table .wpbc_selectable_body { |
| 3633 |
background: 0 0 |
| 3634 |
} |
| 3635 |
.wpbc__list__table .wpbc__list__foot, |
| 3636 |
.wpbc__list__table .wpbc__list__head, |
| 3637 |
.wpbc__list__table .wpbc_selectable_body > .wpbc_listing_usual_row { |
| 3638 |
margin: 10px 0; |
| 3639 |
background: var(--wpbc_ui_listing__back_color); |
| 3640 |
border-radius: 6px; |
| 3641 |
padding: 6px 0 6px 4px; |
| 3642 |
box-shadow: 0 0 2px 0 #cbcbcb; |
| 3643 |
min-width: 180px |
| 3644 |
} |
| 3645 |
.wpbc__list__table .wpbc__list__foot, |
| 3646 |
.wpbc__list__table .wpbc__list__head { |
| 3647 |
padding: 6px |
| 3648 |
} |
| 3649 |
.wpbc_a_col__action, |
| 3650 |
.wpbc_a_col__cost { |
| 3651 |
-ms-flex-item-align: start; |
| 3652 |
align-self: flex-start |
| 3653 |
} |
| 3654 |
.wpbc_a_col__action { |
| 3655 |
margin-top: 22px |
| 3656 |
} |
| 3657 |
} |
| 3658 |
@media (max-width:782px) { |
| 3659 |
.wpbc_admin { |
| 3660 |
--wpbc_ui_listing__colapsed_height: auto |
| 3661 |
} |
| 3662 |
.wpbc_a_col__action, |
| 3663 |
.wpbc_a_col__cost { |
| 3664 |
-ms-flex-item-align: stretch; |
| 3665 |
align-self: stretch; |
| 3666 |
margin: 0 |
| 3667 |
} |
| 3668 |
.wpbc_a_row__booking { |
| 3669 |
-ms-flex-flow: row wrap; |
| 3670 |
flex-flow: row wrap |
| 3671 |
} |
| 3672 |
.wpbc_listing_col .booking_details_simple, |
| 3673 |
.wpbc_listing_col .booking_details_simple * { |
| 3674 |
font-size: 13px |
| 3675 |
} |
| 3676 |
.wpbc_a_col__dates { |
| 3677 |
-ms-flex: 1 1 170px; |
| 3678 |
flex: 1 1 170px |
| 3679 |
} |
| 3680 |
.wpbc_a_col__dates .content_text { |
| 3681 |
-ms-flex-flow: row wrap; |
| 3682 |
flex-flow: row wrap; |
| 3683 |
-ms-flex-pack: start; |
| 3684 |
justify-content: flex-start; |
| 3685 |
-ms-flex-align: start; |
| 3686 |
align-items: flex-start; |
| 3687 |
margin: 0 5px |
| 3688 |
} |
| 3689 |
.booking_dates_expand_section { |
| 3690 |
-ms-flex-align: start; |
| 3691 |
align-items: flex-start |
| 3692 |
} |
| 3693 |
.wpbc_a_col__dates .wpbc_label.wpbc_label_booking_dates { |
| 3694 |
font-size: 16px |
| 3695 |
} |
| 3696 |
.wpbc_a_col__dates .wpbc_label.wpbc_label_booking_dates .field-booking-time { |
| 3697 |
font-size: 11px; |
| 3698 |
margin-left: 5px |
| 3699 |
} |
| 3700 |
.wpbc_a_col__data { |
| 3701 |
-ms-flex: 1 1 100%; |
| 3702 |
flex: 1 1 100% |
| 3703 |
} |
| 3704 |
.wpbc_a_col.wpbc_a_col__data.wpbc_a_overflow_hide > .wpbc_a_row.wpbc_a_row_nowrap { |
| 3705 |
-ms-flex-flow: row wrap; |
| 3706 |
flex-flow: row wrap; |
| 3707 |
padding-right: 5px; |
| 3708 |
box-sizing: border-box |
| 3709 |
} |
| 3710 |
.wpbc_a_col__action { |
| 3711 |
margin-left: auto; |
| 3712 |
min-height: 30px |
| 3713 |
} |
| 3714 |
.wpbc_a_col__details_lables { |
| 3715 |
padding: 10px 0; |
| 3716 |
overflow: auto; |
| 3717 |
scrollbar-width: thin; |
| 3718 |
border-top: 1px dashed #ccc; |
| 3719 |
margin: 5px 0 |
| 3720 |
} |
| 3721 |
.wpbc_row_wrap.max_height_a .wpbc_a_col__details_lables .wpbc_col_booking_labels .content_text { |
| 3722 |
-ms-flex-flow: row nowrap; |
| 3723 |
flex-flow: row nowrap |
| 3724 |
} |
| 3725 |
.wpbc_row_wrap.max_height_a .wpbc_a_col__details_lables .wpbc_col_booking_labels .content_text * { |
| 3726 |
white-space: nowrap |
| 3727 |
} |
| 3728 |
.wpbc_a_col__cost .wpbc_listing_col.wpbc_col_cost, |
| 3729 |
.wpbc_a_col__cost .wpbc_listing_col.wpbc_col_cost a { |
| 3730 |
-ms-flex-pack: start; |
| 3731 |
justify-content: flex-start; |
| 3732 |
margin: 0 3px |
| 3733 |
} |
| 3734 |
.wpbc_listing_col.wpbc_col_action { |
| 3735 |
-ms-flex-pack: end; |
| 3736 |
justify-content: flex-end |
| 3737 |
} |
| 3738 |
.wpbc_row_wrap.max_height_a .wpbc_a_row__notes, |
| 3739 |
.wpbc_row_wrap.max_height_a .wpbc_a_row__system { |
| 3740 |
display: none |
| 3741 |
} |
| 3742 |
.wpbc_a_row__system .wpbc_col_sys_info { |
| 3743 |
margin-left: 10px |
| 3744 |
} |
| 3745 |
.wpbc_a_row__notes { |
| 3746 |
-ms-flex-order: 1; |
| 3747 |
order: 1 |
| 3748 |
} |
| 3749 |
.wpbc_a_row__notes .wpbc_col_note_readonly { |
| 3750 |
margin: 0 10px 5px 5px |
| 3751 |
} |
| 3752 |
.wpbc_a_row__notes .ui_remark_section__note_readonly textarea { |
| 3753 |
height: 160px |
| 3754 |
} |
| 3755 |
} |
| 3756 |
.wpbc_label.wpbc_label_booking_dates { |
| 3757 |
background-color: transparent; |
| 3758 |
color: #41474e; |
| 3759 |
box-shadow: none; |
| 3760 |
border: 0; |
| 3761 |
font-size: 14px; |
| 3762 |
line-height: 1.7; |
| 3763 |
text-decoration: none; |
| 3764 |
padding: 0; |
| 3765 |
margin: 0 2px 2px |
| 3766 |
} |
| 3767 |
.wpbc__list__table .wpbc_selectable_body .wpbc_listing_col.wpbc_col_booking_labels .content_text { |
| 3768 |
display: -ms-flexbox; |
| 3769 |
display: flex; |
| 3770 |
-ms-flex-flow: row wrap; |
| 3771 |
flex-flow: row wrap; |
| 3772 |
-ms-flex-pack: start; |
| 3773 |
justify-content: flex-start; |
| 3774 |
-ms-flex-align: start; |
| 3775 |
align-items: flex-start; |
| 3776 |
gap: 10px; |
| 3777 |
padding: 2px 0 |
| 3778 |
} |
| 3779 |
.wpbc_row_wrap.max_height_a .wpbc_col_data { |
| 3780 |
white-space: nowrap |
| 3781 |
} |
| 3782 |
.fieldvalue { |
| 3783 |
margin: 0 1em 0 0; |
| 3784 |
padding: 1px 5px 3px; |
| 3785 |
vertical-align: baseline; |
| 3786 |
border-radius: 2px; |
| 3787 |
background: 0 0; |
| 3788 |
word-wrap: anywhere |
| 3789 |
} |
| 3790 |
.fieldvalue.name.fieldsearchvalue { |
| 3791 |
font-weight: 600; |
| 3792 |
border-radius: 0; |
| 3793 |
padding: 1px 7px; |
| 3794 |
border-bottom: 2px solid #975500; |
| 3795 |
background: #fffaf3; |
| 3796 |
color: #904c03 |
| 3797 |
} |
| 3798 |
.wpbc_actions_sysinfo { |
| 3799 |
font-size: .7em |
| 3800 |
} |
| 3801 |
.wpbc_col_all_data .wpbc_listing_usual_row { |
| 3802 |
border: 0; |
| 3803 |
margin-bottom: 5px |
| 3804 |
} |
| 3805 |
.wpbc_listing_col.wpbc_col_cost { |
| 3806 |
-ms-flex: 0 0 100px; |
| 3807 |
flex: 0 0 100px |
| 3808 |
} |
| 3809 |
.wpbc_listing_col.wpbc_col_action { |
| 3810 |
-ms-flex: 0 0 70px; |
| 3811 |
flex: 0 0 70px |
| 3812 |
} |
| 3813 |
.wpbc_ui_el__listing_row:nth-of-type(2n+1) { |
| 3814 |
background-color: var(--wpbc_ui_listing__back_alt_color); |
| 3815 |
border-left-color: var(--wpbc_ui_listing__back_alt_color) |
| 3816 |
} |
| 3817 |
.wpbc_ui_el__listing_row.wpbc_row.row_selected_color { |
| 3818 |
border-left-color: var(--wpbc_ui_listing__selected_row_color) |
| 3819 |
} |
| 3820 |
.wpbc_label { |
| 3821 |
display: inline; |
| 3822 |
-ms-flex: 0 1 auto; |
| 3823 |
flex: 0 1 auto; |
| 3824 |
font-size: .95em; |
| 3825 |
font-weight: 600; |
| 3826 |
line-height: 2.7; |
| 3827 |
white-space: pre-wrap; |
| 3828 |
text-align: center; |
| 3829 |
vertical-align: baseline; |
| 3830 |
padding: 5px 10px; |
| 3831 |
margin: 5px; |
| 3832 |
background: var(--wpbc_admin-default_label-color,#6b96ce); |
| 3833 |
color: #fff; |
| 3834 |
border-radius: 4px; |
| 3835 |
border: 0; |
| 3836 |
box-shadow: none |
| 3837 |
} |
| 3838 |
.wpbc_col_booking_labels .wpbc_label { |
| 3839 |
padding: 2px 10px; |
| 3840 |
line-height: 1.7 |
| 3841 |
} |
| 3842 |
.wpbc_label .menu_icon { |
| 3843 |
margin: 0 5px 0 0 |
| 3844 |
} |
| 3845 |
.wpbc_label .label_sup { |
| 3846 |
font-size: 10px; |
| 3847 |
padding: 0 5px 0 0; |
| 3848 |
line-height: 1em |
| 3849 |
} |
| 3850 |
.wpbc_label_link { |
| 3851 |
display: -ms-flexbox; |
| 3852 |
display: flex; |
| 3853 |
-ms-flex-flow: column nowrap; |
| 3854 |
flex-flow: column nowrap; |
| 3855 |
-ms-flex-align: center; |
| 3856 |
align-items: center; |
| 3857 |
-ms-flex-pack: center; |
| 3858 |
justify-content: center; |
| 3859 |
cursor: pointer; |
| 3860 |
text-decoration: none |
| 3861 |
} |
| 3862 |
.wpbc__wrap__booking_listing a.wpbc_is_new_button, |
| 3863 |
.wpbc__wrap__booking_listing a.wpbc_is_new_button:hover { |
| 3864 |
position: absolute; |
| 3865 |
margin: 0 0 0 -28px; |
| 3866 |
display: -ms-flexbox; |
| 3867 |
display: flex; |
| 3868 |
opacity: .8 |
| 3869 |
} |
| 3870 |
.wpbc_label.wpbc_label_booking_id { |
| 3871 |
box-shadow: none; |
| 3872 |
background-color: #fff; |
| 3873 |
border: 1px solid rgba(0,0,0,.1098039216); |
| 3874 |
color: #717171 |
| 3875 |
} |
| 3876 |
.wpbc_label.wpbc_label_resource { |
| 3877 |
background-color: #6b96ce; |
| 3878 |
background-color: rgb(from var(--wpbc_admin-theme-color,#6b96ce) r g b/var(--wpbc_admin-theme-opacity,80%)); |
| 3879 |
background-color: var(--wpbc_admin-resource-badge-color,#556e91) |
| 3880 |
} |
| 3881 |
.wpbc_label.wpbc_label_deleted_resource { |
| 3882 |
background-color: #ee6f48 |
| 3883 |
} |
| 3884 |
.wpbc_label.wpbc_label_pending { |
| 3885 |
background-color: #ed9f0a; |
| 3886 |
color: #fff; |
| 3887 |
box-shadow: 0 0 1px #fde4c9 |
| 3888 |
} |
| 3889 |
.wpbc_label.wpbc_label_approved { |
| 3890 |
background-color: #64aa45; |
| 3891 |
color: #f7fff4; |
| 3892 |
box-shadow: 0 0 1px #b8c6b1 |
| 3893 |
} |
| 3894 |
.wpbc_label.wpbc_label_payment_status_success { |
| 3895 |
background-color: #468847 |
| 3896 |
} |
| 3897 |
.wpbc_label.wpbc_label_payment_status_pending { |
| 3898 |
background-color: #992 |
| 3899 |
} |
| 3900 |
.wpbc_label.wpbc_label_payment_status_unknown { |
| 3901 |
background-color: #f2f2f3; |
| 3902 |
color: #717379; |
| 3903 |
border: 1px solid #e3e3e3 |
| 3904 |
} |
| 3905 |
.wpbc_label.wpbc_label_payment_status_error { |
| 3906 |
background-color: #fa773d |
| 3907 |
} |
| 3908 |
.wpbc_label.wpbc_label_imported { |
| 3909 |
background-color: #517aba |
| 3910 |
} |
| 3911 |
.wpbc_label.wpbc_label_trash { |
| 3912 |
background: #d94a48; |
| 3913 |
color: #fff; |
| 3914 |
text-shadow: 0 0 1px #e00 |
| 3915 |
} |
| 3916 |
.wpbc_listing_col.wpbc_col_cost, |
| 3917 |
.wpbc_listing_col.wpbc_col_cost a { |
| 3918 |
color: #41474e; |
| 3919 |
font-size: 16px; |
| 3920 |
line-height: 2.7; |
| 3921 |
display: -ms-flexbox; |
| 3922 |
display: flex; |
| 3923 |
-ms-flex-flow: row nowrap; |
| 3924 |
flex-flow: row nowrap; |
| 3925 |
-ms-flex-align: center; |
| 3926 |
align-items: center; |
| 3927 |
-ms-flex-pack: center; |
| 3928 |
justify-content: center; |
| 3929 |
-ms-flex: 0 0 110px; |
| 3930 |
flex: 0 0 110px; |
| 3931 |
-ms-flex-item-align: center; |
| 3932 |
align-self: center; |
| 3933 |
font-weight: 600; |
| 3934 |
cursor: pointer; |
| 3935 |
text-decoration: none |
| 3936 |
} |
| 3937 |
.wpbc_listing_col.wpbc_col_action { |
| 3938 |
color: #41474e; |
| 3939 |
font-size: 14px; |
| 3940 |
line-height: 1.7; |
| 3941 |
display: -ms-flexbox; |
| 3942 |
display: flex; |
| 3943 |
-ms-flex-flow: row nowrap; |
| 3944 |
flex-flow: row nowrap; |
| 3945 |
-ms-flex-align: center; |
| 3946 |
align-items: center; |
| 3947 |
-ms-flex-pack: center; |
| 3948 |
justify-content: center; |
| 3949 |
-ms-flex: 0 0 50px; |
| 3950 |
flex: 0 0 50px; |
| 3951 |
-ms-flex-item-align: stretch; |
| 3952 |
align-self: stretch |
| 3953 |
} |
| 3954 |
.wpbc_listing_col.wpbc_col_action a.ul_dropdown_menu_toggle, |
| 3955 |
.wpbc_listing_col.wpbc_col_action a.ul_dropdown_menu_toggle:focus, |
| 3956 |
.wpbc_listing_col.wpbc_col_action a.ul_dropdown_menu_toggle:hover { |
| 3957 |
background: rgba(0,0,0,.0705882353); |
| 3958 |
border-radius: 50%; |
| 3959 |
width: 33px; |
| 3960 |
-ms-flex-flow: column; |
| 3961 |
flex-flow: column; |
| 3962 |
-ms-flex-align: center; |
| 3963 |
align-items: center; |
| 3964 |
-ms-flex-pack: center; |
| 3965 |
justify-content: center; |
| 3966 |
aspect-ratio: 1/1; |
| 3967 |
color: #555; |
| 3968 |
display: -ms-flexbox; |
| 3969 |
display: flex |
| 3970 |
} |
| 3971 |
.wpbc__wrap__booking_listing .wpbc_ui_el__dropdown .ul_dropdown_menu > li > a.ul_dropdown_menu_li_action, |
| 3972 |
.wpbc_col_action .wpbc_ui_el__dropdown .ul_dropdown_menu > li > a.ul_dropdown_menu_li_action { |
| 3973 |
display: -ms-flexbox; |
| 3974 |
display: flex; |
| 3975 |
-ms-flex-flow: row nowrap; |
| 3976 |
flex-flow: row nowrap; |
| 3977 |
-ms-flex-pack: start; |
| 3978 |
justify-content: flex-start; |
| 3979 |
-ms-flex-align: center; |
| 3980 |
align-items: center |
| 3981 |
} |
| 3982 |
.wpbc_col_action .wpbc_ui_el__dropdown .ul_dropdown_menu > li > a.ul_dropdown_menu_li_action > :last-child { |
| 3983 |
margin-left: auto; |
| 3984 |
padding-left: 1em |
| 3985 |
} |
| 3986 |
.wpbc_col_action .wpbc_ui_el__dropdown .ul_dropdown_menu > li > a.ul_dropdown_menu_li_action > :last-child.wpbc_spin { |
| 3987 |
padding-left: 0 |
| 3988 |
} |
| 3989 |
.ul_dropdown_menu_li_action_set_booking_approved { |
| 3990 |
border-left: 2px solid var(--wpbc_ui_listing__approved_color) |
| 3991 |
} |
| 3992 |
.ul_dropdown_menu_li_action_set_booking_pending { |
| 3993 |
border-left: 2px solid var(--wpbc_ui_listing__pending_color) |
| 3994 |
} |
| 3995 |
.ul_dropdown_menu_li_action_move_booking_to_trash.hide_button_if_no_selection, |
| 3996 |
.wpbc_ui_el__dropdown .ul_dropdown_menu > li > a.ul_dropdown_menu_li_action_move_booking_to_trash.hide_button_if_no_selection:not(:hover,:focus), |
| 3997 |
.wpbc_ui_el__dropdown .ul_dropdown_menu > li > a.ul_dropdown_menu_li_action_move_booking_to_trash:not(:hover,:focus) { |
| 3998 |
color: #d79249 |
| 3999 |
} |
| 4000 |
.wpbc_ui_el__dropdown .ul_dropdown_menu > li > a.ul_dropdown_menu_li_action_delete_booking_completely:not(:hover,:focus), |
| 4001 |
.wpbc_ui_el__dropdown .ul_dropdown_menu > li > a.ul_dropdown_menu_li_trash_color:not(:hover,:focus) { |
| 4002 |
color: var(--wpbc_ui_listing__trash_color) |
| 4003 |
} |
| 4004 |
.wpbc_ui_el__dropdown .ul_dropdown_menu > li > a.ul_dropdown_menu_li_action_restore_booking_from_trash:not(:hover,:focus) { |
| 4005 |
color: var(--wpbc_ui_listing__restore_color) |
| 4006 |
} |
| 4007 |
.ul_dropdown_menu_li_action .hint_value_instead_icon { |
| 4008 |
font-size: .85em; |
| 4009 |
font-weight: 600; |
| 4010 |
-ms-flex-item-align: center; |
| 4011 |
align-self: center; |
| 4012 |
line-height: 1 |
| 4013 |
} |
| 4014 |
@media (min-width:768px) { |
| 4015 |
#wpbc_modal__set_booking_note__section .modal-dialog { |
| 4016 |
width: 80%; |
| 4017 |
margin: 5px auto |
| 4018 |
} |
| 4019 |
} |
| 4020 |
.wpbc_page .wpbc_modal_in_listing input[type=text], |
| 4021 |
.wpbc_page .wpbc_modal_in_listing select, |
| 4022 |
.wpbc_page .wpbc_modal_in_listing textarea { |
| 4023 |
width: 100%; |
| 4024 |
max-width: 100%; |
| 4025 |
font-size: 15px; |
| 4026 |
line-height: 2.4 |
| 4027 |
} |
| 4028 |
.wpdevelop .modal-footer .button { |
| 4029 |
margin: 0 5px |
| 4030 |
} |
| 4031 |
#wpbc_modal__send_payment_request__section #wpbc_modal__send_payment_request__url { |
| 4032 |
font-size: 13px |
| 4033 |
} |
| 4034 |
#wpbc_modal__send_payment_request__section #wpbc_modal__send_payment_request__value { |
| 4035 |
margin-top: 15px; |
| 4036 |
line-height: 2; |
| 4037 |
height: 70px; |
| 4038 |
font-size: 14px |
| 4039 |
} |
| 4040 |
.wpbc_modal__2_fields { |
| 4041 |
display: -ms-flexbox; |
| 4042 |
display: flex; |
| 4043 |
-ms-flex-flow: row nowrap; |
| 4044 |
flex-flow: row nowrap; |
| 4045 |
-ms-flex-pack: start; |
| 4046 |
justify-content: flex-start; |
| 4047 |
-ms-flex-align: center; |
| 4048 |
align-items: center |
| 4049 |
} |
| 4050 |
.wpbc_modal__2_fields .wpbc_modal__2_fields_button { |
| 4051 |
-ms-flex: 0 1 1%; |
| 4052 |
flex: 0 1 1%; |
| 4053 |
-ms-flex-item-align: stretch; |
| 4054 |
align-self: stretch; |
| 4055 |
min-height: 35px; |
| 4056 |
margin-left: 10px; |
| 4057 |
display: -ms-flexbox; |
| 4058 |
display: flex; |
| 4059 |
-ms-flex-align: center; |
| 4060 |
align-items: center; |
| 4061 |
-ms-flex-item-align: center; |
| 4062 |
align-self: center; |
| 4063 |
font-weight: 600 |
| 4064 |
} |
| 4065 |
#wpbc_modal__send_payment_request__section .wpbc_modal__send_payment_request__cost { |
| 4066 |
font-size: 16px; |
| 4067 |
font-weight: 600; |
| 4068 |
padding: 0 10px |
| 4069 |
} |
| 4070 |
.ui_remark_section__note_readonly { |
| 4071 |
width: 99%; |
| 4072 |
margin: 0 |
| 4073 |
} |
| 4074 |
.ui_remark_section__note_readonly label { |
| 4075 |
font-size: .9em; |
| 4076 |
font-weight: 600 |
| 4077 |
} |
| 4078 |
.ui_remark_section__note_readonly a { |
| 4079 |
font-size: .9em; |
| 4080 |
line-height: 2; |
| 4081 |
margin: 7px 3px 0; |
| 4082 |
float: right; |
| 4083 |
padding: 0; |
| 4084 |
text-decoration: none; |
| 4085 |
font-weight: 600 |
| 4086 |
} |
| 4087 |
.ui_remark_section__note_readonly a i::before { |
| 4088 |
font-size: 11px |
| 4089 |
} |
| 4090 |
.ui_remark_section__note_readonly textarea { |
| 4091 |
font-size: 12px; |
| 4092 |
width: 100%; |
| 4093 |
scrollbar-width: thin; |
| 4094 |
height: 70px; |
| 4095 |
line-height: 1.75; |
| 4096 |
color: #777; |
| 4097 |
box-shadow: none; |
| 4098 |
border: 1px solid #d5d5d5; |
| 4099 |
background: #fefefe |
| 4100 |
} |
| 4101 |
#wpbc_modal__set_booking_note__section textarea { |
| 4102 |
margin-top: 5px; |
| 4103 |
line-height: 1.8; |
| 4104 |
height: 120px; |
| 4105 |
font-size: 13px |
| 4106 |
} |
| 4107 |
.modal-header .wpbc_modal__booking_id__in_title { |
| 4108 |
font-size: .6em; |
| 4109 |
font-weight: 600; |
| 4110 |
margin-left: 5px; |
| 4111 |
top: -.75em |
| 4112 |
} |
| 4113 |
.modal-header .wpbc_modal__title__reason__booking_id { |
| 4114 |
font-size: .7em; |
| 4115 |
font-weight: 400; |
| 4116 |
margin-left: 5px; |
| 4117 |
top: -.1em; |
| 4118 |
word-break: break-all |
| 4119 |
} |
| 4120 |
.wpbc_hidden_templates { |
| 4121 |
display: none |
| 4122 |
} |
| 4123 |
.wpbc_ui_el__dropdown .ul_dropdown_menu_toggle .selected_value { |
| 4124 |
margin: 0 .2em |
| 4125 |
} |
| 4126 |
.wpbc_ui_el__dropdown .ul_dropdown_menu_toggle .selected_value .menu_icon { |
| 4127 |
margin: 0 0 0 2px |
| 4128 |
} |
| 4129 |
.wpbc_ui_el__dropdown .ul_dropdown_menu_toggle .selected_value [class*=" wpbc-bi-"]::before { |
| 4130 |
font-size: 1.08em; |
| 4131 |
vertical-align: -.18em |
| 4132 |
} |
| 4133 |
.wpbc_ui_toolbar.wpbc_ui_toolbar__bo_listing { |
| 4134 |
margin: var(--wpbc_ui_horis_top_nav__margin) |
| 4135 |
} |