| 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: #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 |
} |
| 126 |
.wpbc_admin_full_screen #adminmenumain, |
| 127 |
.wpbc_admin_full_screen #wpcontent > *, |
| 128 |
.wpbc_admin_full_screen .error:not(.wpbc-settings-notice,.wpbc_inner_message), |
| 129 |
.wpbc_admin_full_screen .notice:not(.wpbc-settings-notice,.wpbc_inner_message), |
| 130 |
.wpbc_admin_full_screen .update-nag:not(.wpbc-settings-notice,.wpbc_inner_message), |
| 131 |
.wpbc_admin_full_screen .updated:not(.wpbc-settings-notice,.wpbc_inner_message) { |
| 132 |
display: none |
| 133 |
} |
| 134 |
.wpbc_admin_full_screen #wpcontent { |
| 135 |
margin-left: 0!important |
| 136 |
} |
| 137 |
.wpbc_admin_full_screen #wpcontent > #wpbody { |
| 138 |
display: block; |
| 139 |
margin-top: 0!important |
| 140 |
} |
| 141 |
.wpbc_admin_full_screen #wpadminbar, |
| 142 |
.wpbc_admin_full_screen #wpfooter, |
| 143 |
.wpbc_admin_full_screen .components-modal__screen-overlay { |
| 144 |
display: none |
| 145 |
} |
| 146 |
.wpbc_admin_full_screen .wpbc_header_news { |
| 147 |
display: none!important |
| 148 |
} |
| 149 |
.wpbc_admin_full_screen #ajax_working > [id^=wpbc_notice_] { |
| 150 |
top: 0 |
| 151 |
} |
| 152 |
.wpbc_admin_full_screen .wpbc_page div.wpbc_inner_message { |
| 153 |
top: 0; |
| 154 |
margin-top: 4px |
| 155 |
} |
| 156 |
@media (max-width:782px) { |
| 157 |
.wpbc_admin_full_screen .wpbc_page div.wpbc_inner_message { |
| 158 |
margin: 5px 0 25px 10px; |
| 159 |
top: 0 |
| 160 |
} |
| 161 |
} |
| 162 |
@media screen and (max-width:600px) { |
| 163 |
.wpbc_admin_full_screen #wpbody { |
| 164 |
padding-top: 0 |
| 165 |
} |
| 166 |
} |
| 167 |
.wpbc_ui_radio_section { |
| 168 |
-ms-flex: 1 1 100%; |
| 169 |
flex: 1 1 100%; |
| 170 |
display: -ms-flexbox; |
| 171 |
display: flex; |
| 172 |
-ms-flex-flow: column nowrap; |
| 173 |
flex-flow: column nowrap; |
| 174 |
-ms-flex-align: center; |
| 175 |
align-items: center; |
| 176 |
-ms-flex-pack: center; |
| 177 |
justify-content: center |
| 178 |
} |
| 179 |
.wpbc_ui_radio_section.wpbc_ui_radio_section_as_row { |
| 180 |
-ms-flex-flow: row wrap; |
| 181 |
flex-flow: row wrap; |
| 182 |
-ms-flex-align: start; |
| 183 |
align-items: flex-start; |
| 184 |
-ms-flex-pack: center; |
| 185 |
justify-content: center |
| 186 |
} |
| 187 |
.wpbc_ui_radio_container { |
| 188 |
display: -ms-flexbox; |
| 189 |
display: flex; |
| 190 |
-ms-flex-direction: column; |
| 191 |
flex-direction: column; |
| 192 |
-ms-flex-align: stretch; |
| 193 |
align-items: stretch; |
| 194 |
-ms-flex-pack: start; |
| 195 |
justify-content: flex-start; |
| 196 |
padding: 0; |
| 197 |
border: 0 solid #e0e0e0; |
| 198 |
box-shadow: 0 0 1px 1px #cccccc78; |
| 199 |
border-radius: 2px; |
| 200 |
width: 100%; |
| 201 |
cursor: pointer; |
| 202 |
background: #fff; |
| 203 |
max-width: 420px; |
| 204 |
margin: 10px 1em 10px 0 |
| 205 |
} |
| 206 |
.wpbc_ui_radio_container[data-selected] { |
| 207 |
border: 0 solid var(--wp-admin-theme-color,#007cba); |
| 208 |
box-shadow: 0 0 0 2px var(--wp-admin-theme-color,#007cba); |
| 209 |
border-radius: 4px |
| 210 |
} |
| 211 |
.wpbc_ui_radio_container.disabled { |
| 212 |
cursor: default |
| 213 |
} |
| 214 |
.wpbc_ui_radio_container.disabled a { |
| 215 |
cursor: pointer |
| 216 |
} |
| 217 |
.wpbc_ui_radio_container.disabled input.wpbc_ui_radio_choice_input { |
| 218 |
pointer-events: none; |
| 219 |
cursor: default!important |
| 220 |
} |
| 221 |
.wpbc_ui_radio_container.disabled label.wpbc_ui_radio_choice_title { |
| 222 |
color: #aaa; |
| 223 |
cursor: default!important |
| 224 |
} |
| 225 |
div.wpbc_ui_radio_choice { |
| 226 |
padding: 16px |
| 227 |
} |
| 228 |
.wpbc_ui_radio_text_right { |
| 229 |
float: right; |
| 230 |
position: relative; |
| 231 |
margin: 3px 0 0; |
| 232 |
color: #529933 |
| 233 |
} |
| 234 |
div.wpbc_ui_radio_footer { |
| 235 |
padding: 0 16px; |
| 236 |
border-top: 1px solid #e8e8e8 |
| 237 |
} |
| 238 |
div.wpbc_ui_radio_footer p.wpbc_ui_radio_choice_description { |
| 239 |
padding: 0 0 6px; |
| 240 |
font-size: 13px |
| 241 |
} |
| 242 |
.wpbc_ui_settings__flex_container { |
| 243 |
--wpbc_ui_settings__panel_background_color: #fff; |
| 244 |
--wpbc_ui_settings__panel_text_color: #141b38; |
| 245 |
--wpbc_ui_settings__panel_border: 1px solid #c3c4c787; |
| 246 |
--wpbc_ui_settings__panel_shadow: 0 1px 1px rgba(0, 0, 0, 0.04); |
| 247 |
--wpbc_ui_settings__panel_padding: 0; |
| 248 |
--wpbc_ui_settings__panel_border_radius: 4px; |
| 249 |
--wpbc_ui_settings__card_width: calc( 15% - 40px - 2px ); |
| 250 |
--wpbc_ui_settings__text_color__black: #000; |
| 251 |
--wpbc_ui_settings__text_color__black2: #141b38; |
| 252 |
--wpbc_ui_settings__text_color__blue: #337ab7; |
| 253 |
--wpbc_ui_settings__text_color__blue2: #1ca4e7; |
| 254 |
--wpbc_ui_settings__text_color__red: #fd2c2c; |
| 255 |
--wpbc_ui_settings__text_color__red2: #df2a4a; |
| 256 |
--wpbc_ui_settings__text_color__green: #098409; |
| 257 |
--wpbc_ui_settings__text_color__green2: #00aa63; |
| 258 |
--wpbc_ui_settings__text_color__orange: #E66F00; |
| 259 |
--wpbc_ui_settings__text_color__orange2: #e4a000; |
| 260 |
--wpbc_ui_settings__text_color__purple: #7812bd; |
| 261 |
--wpbc_ui_settings__text_color__purple2: #6134dc; |
| 262 |
display: -ms-flexbox; |
| 263 |
display: flex; |
| 264 |
-ms-flex-flow: row wrap; |
| 265 |
flex-flow: row wrap; |
| 266 |
-ms-flex-pack: start; |
| 267 |
justify-content: flex-start; |
| 268 |
-ms-flex-align: start; |
| 269 |
align-items: flex-start |
| 270 |
} |
| 271 |
.wpbc_ui_settings__text_color__black { |
| 272 |
color: var(--wpbc_ui_settings__text_color__black)!important |
| 273 |
} |
| 274 |
.wpbc_ui_settings__text_color__black2 { |
| 275 |
color: var(--wpbc_ui_settings__text_color__black2)!important |
| 276 |
} |
| 277 |
.wpbc_ui_settings__text_color__blue { |
| 278 |
color: var(--wpbc_ui_settings__text_color__blue)!important |
| 279 |
} |
| 280 |
.wpbc_ui_settings__text_color__blue2 { |
| 281 |
color: var(--wpbc_ui_settings__text_color__blue2)!important |
| 282 |
} |
| 283 |
.wpbc_ui_settings__text_color__red { |
| 284 |
color: var(--wpbc_ui_settings__text_color__red)!important |
| 285 |
} |
| 286 |
.wpbc_ui_settings__text_color__red2 { |
| 287 |
color: var(--wpbc_ui_settings__text_color__red2)!important |
| 288 |
} |
| 289 |
.wpbc_ui_settings__text_color__green { |
| 290 |
color: var(--wpbc_ui_settings__text_color__green)!important |
| 291 |
} |
| 292 |
.wpbc_ui_settings__text_color__green2 { |
| 293 |
color: var(--wpbc_ui_settings__text_color__green2)!important |
| 294 |
} |
| 295 |
.wpbc_ui_settings__text_color__orange { |
| 296 |
color: var(--wpbc_ui_settings__text_color__orange)!important |
| 297 |
} |
| 298 |
.wpbc_ui_settings__text_color__orange2 { |
| 299 |
color: var(--wpbc_ui_settings__text_color__orange2)!important |
| 300 |
} |
| 301 |
.wpbc_ui_settings__text_color__purple { |
| 302 |
color: var(--wpbc_ui_settings__text_color__purple)!important |
| 303 |
} |
| 304 |
.wpbc_ui_settings__text_color__purple2 { |
| 305 |
color: var(--wpbc_ui_settings__text_color__purple2)!important |
| 306 |
} |
| 307 |
.wpbc_ui_settings__col, |
| 308 |
.wpbc_ui_settings__row { |
| 309 |
display: -ms-flexbox; |
| 310 |
display: flex; |
| 311 |
-ms-flex-flow: row wrap; |
| 312 |
flex-flow: row wrap; |
| 313 |
-ms-flex-pack: start; |
| 314 |
justify-content: flex-start; |
| 315 |
-ms-flex-align: start; |
| 316 |
align-items: flex-start; |
| 317 |
-ms-flex: 1 1 100%; |
| 318 |
flex: 1 1 100%; |
| 319 |
margin: 0 0 20px |
| 320 |
} |
| 321 |
.wpbc_ui_settings__col { |
| 322 |
margin: 0 20px 20px 0; |
| 323 |
-ms-flex: 0 1 auto; |
| 324 |
flex: 0 1 auto |
| 325 |
} |
| 326 |
.wpbc_ui_settings__panel { |
| 327 |
-ms-flex: 1 1 100%; |
| 328 |
flex: 1 1 100%; |
| 329 |
position: relative; |
| 330 |
background: var(--wpbc_ui_settings__panel_background_color); |
| 331 |
color: var(--wpbc_ui_settings__panel_text_color); |
| 332 |
border-radius: var(--wpbc_ui_settings__panel_border_radius); |
| 333 |
border: var(--wpbc_ui_settings__panel_border); |
| 334 |
box-shadow: var(--wpbc_ui_settings__panel_shadow); |
| 335 |
padding: var(--wpbc_ui_settings__panel_padding); |
| 336 |
display: -ms-flexbox; |
| 337 |
display: flex; |
| 338 |
-ms-flex-flow: row wrap; |
| 339 |
flex-flow: row wrap; |
| 340 |
-ms-flex-pack: start; |
| 341 |
justify-content: flex-start; |
| 342 |
-ms-flex-align: stretch; |
| 343 |
align-items: stretch |
| 344 |
} |
| 345 |
.wpbc_ui_settings__col .wpbc_ui_settings__panel { |
| 346 |
-ms-flex-flow: column wrap; |
| 347 |
flex-flow: column wrap; |
| 348 |
-ms-flex: 0 1 220px; |
| 349 |
flex: 0 1 220px; |
| 350 |
padding: 0 20px |
| 351 |
} |
| 352 |
.wpbc_ui_settings__col .wpbc_ui_settings__card_divider_right { |
| 353 |
border-right: 0; |
| 354 |
border-bottom: 2px solid #dcdDE178; |
| 355 |
padding: 20px 0; |
| 356 |
margin: 0 |
| 357 |
} |
| 358 |
.wpbc_ui_settings__card { |
| 359 |
-ms-flex: 1 1 var(--wpbc_ui_settings__card_width); |
| 360 |
flex: 1 1 var(--wpbc_ui_settings__card_width); |
| 361 |
min-width: 150px; |
| 362 |
min-width: 200px; |
| 363 |
padding: 0 20px; |
| 364 |
margin: 15px 0; |
| 365 |
display: -ms-flexbox; |
| 366 |
display: flex; |
| 367 |
-ms-flex-flow: column wrap; |
| 368 |
flex-flow: column wrap; |
| 369 |
-ms-flex-pack: start; |
| 370 |
justify-content: flex-start; |
| 371 |
-ms-flex-align: start; |
| 372 |
align-items: flex-start |
| 373 |
} |
| 374 |
.wpbc_ui_settings__card_divider_right { |
| 375 |
border-right: 2px solid #dcdDE178 |
| 376 |
} |
| 377 |
.wpbc_ui_settings__card_divider_right:last-child { |
| 378 |
border-right: 0; |
| 379 |
border-bottom: 0 |
| 380 |
} |
| 381 |
@media (max-width:600px) { |
| 382 |
.wpbc_ui_settings__card_divider_right { |
| 383 |
border-right: 0; |
| 384 |
border-bottom: 0 |
| 385 |
} |
| 386 |
} |
| 387 |
.wpbc_ui_settings__text_row { |
| 388 |
display: -ms-flexbox; |
| 389 |
display: flex; |
| 390 |
-ms-flex-flow: row nowrap; |
| 391 |
flex-flow: row nowrap; |
| 392 |
-ms-flex-pack: start; |
| 393 |
justify-content: flex-start; |
| 394 |
-ms-flex-align: first baseline; |
| 395 |
align-items: first baseline; |
| 396 |
width: 100%; |
| 397 |
line-height: 2 |
| 398 |
} |
| 399 |
.wpbc_ui_settings__center { |
| 400 |
display: -ms-flexbox; |
| 401 |
display: flex; |
| 402 |
-ms-flex-flow: column nowrap; |
| 403 |
flex-flow: column nowrap; |
| 404 |
-ms-flex-pack: center; |
| 405 |
justify-content: center; |
| 406 |
-ms-flex-align: center; |
| 407 |
align-items: center; |
| 408 |
-ms-flex: 1 1 100%; |
| 409 |
flex: 1 1 100%; |
| 410 |
margin: auto |
| 411 |
} |
| 412 |
.wpbc_ui_settings__panel h1 { |
| 413 |
font-size: 32px; |
| 414 |
line-height: 32px; |
| 415 |
font-weight: 600; |
| 416 |
padding: 0 0 4px |
| 417 |
} |
| 418 |
.wpbc_ui_settings__panel .menu_icon { |
| 419 |
margin-right: 10px |
| 420 |
} |
| 421 |
.wpbc_ui_settings__panel .menu_icon::before { |
| 422 |
font-size: 24px; |
| 423 |
line-height: 1; |
| 424 |
padding: 0 |
| 425 |
} |
| 426 |
.wpbc_ui_settings__panel h1 a, |
| 427 |
.wpbc_ui_settings__text_row a { |
| 428 |
text-decoration: none; |
| 429 |
outline: 0 |
| 430 |
} |
| 431 |
.wpbc_ui_settings__card_text_small { |
| 432 |
min-width: 220px; |
| 433 |
min-width: 240px; |
| 434 |
border-left: 4px solid transparent |
| 435 |
} |
| 436 |
.wpbc_ui_settings__card_text_small:hover { |
| 437 |
border-left: 4px solid #1e7bc7 |
| 438 |
} |
| 439 |
.wpbc_ui_settings__card_text_small h1 { |
| 440 |
font-size: 18px |
| 441 |
} |
| 442 |
.wpbc_ui_settings__card_text_small .menu_icon::before { |
| 443 |
font-size: 18px; |
| 444 |
line-height: 1 |
| 445 |
} |
| 446 |
.wpbc_ui_settings__card_text_small [class*=" wpbc-bi-"]::before { |
| 447 |
padding: 3px 0 0 |
| 448 |
} |
| 449 |
.wpbc_ui_settings__card_text_small .wpbc_ui_settings__text_row a { |
| 450 |
line-height: 1.7 |
| 451 |
} |
| 452 |
.wpbc_ui_settings__text_right { |
| 453 |
margin-left: auto; |
| 454 |
float: right |
| 455 |
} |
| 456 |
.wpbc_ui_settings__text_pro { |
| 457 |
color: #529933; |
| 458 |
font-weight: 600; |
| 459 |
font-size: 14px |
| 460 |
} |
| 461 |
a.wpbc_ui_settings__text_pro, |
| 462 |
a.wpbc_ui_settings__text_pro:hover { |
| 463 |
text-decoration: underline; |
| 464 |
text-decoration-style: dashed; |
| 465 |
text-underline-offset: 3px |
| 466 |
} |
| 467 |
.wpbc_ui_settings__panel__up_header { |
| 468 |
-ms-flex: 1 1 100%; |
| 469 |
flex: 1 1 100%; |
| 470 |
margin: 8px 2px; |
| 471 |
font-size: 15px; |
| 472 |
font-weight: 400; |
| 473 |
letter-spacing: 0; |
| 474 |
text-shadow: none; |
| 475 |
color: #a2a2a2 |
| 476 |
} |
| 477 |
.wpbc_settings_path { |
| 478 |
display: -ms-flexbox; |
| 479 |
display: flex; |
| 480 |
-ms-flex-flow: row wrap; |
| 481 |
flex-flow: row wrap; |
| 482 |
-ms-flex-pack: start; |
| 483 |
justify-content: flex-start; |
| 484 |
-ms-flex-align: center; |
| 485 |
align-items: center; |
| 486 |
margin: 10px 2px |
| 487 |
} |
| 488 |
.wpbc_settings_path_el { |
| 489 |
margin: 0 5px 0 0; |
| 490 |
font-size: 13px; |
| 491 |
height: 22px; |
| 492 |
display: -ms-flexbox; |
| 493 |
display: flex; |
| 494 |
-ms-flex-flow: column nowrap; |
| 495 |
flex-flow: column nowrap; |
| 496 |
-ms-flex-align: center; |
| 497 |
align-items: center; |
| 498 |
-ms-flex-pack: center; |
| 499 |
justify-content: center |
| 500 |
} |
| 501 |
.wpbc_settings_path a { |
| 502 |
text-decoration: none |
| 503 |
} |
| 504 |
.wpbc_settings_path a:active, |
| 505 |
.wpbc_settings_path a:focus, |
| 506 |
.wpbc_settings_path a:hover { |
| 507 |
text-decoration: underline; |
| 508 |
box-shadow: none; |
| 509 |
outline: 0 |
| 510 |
} |
| 511 |
.wpbc_page_tab__general.wpbc_page .wpbc_admin_page .wpbc_header_margin { |
| 512 |
height: 0 |
| 513 |
} |
| 514 |
.wpbc_dismiss_x__in_panel { |
| 515 |
display: -ms-flexbox; |
| 516 |
display: flex; |
| 517 |
-ms-flex-flow: row nowrap; |
| 518 |
flex-flow: row nowrap; |
| 519 |
-ms-flex-pack: justify; |
| 520 |
justify-content: space-between; |
| 521 |
-ms-flex-align: center; |
| 522 |
align-items: center |
| 523 |
} |
| 524 |
.wpbc_dismiss_x__in_panel .wpbc_dismiss_x__in_panel_card { |
| 525 |
margin: 0 |
| 526 |
} |
| 527 |
.wpbc_dismiss_x__in_panel_card { |
| 528 |
padding: 0 0 0 10px; |
| 529 |
-ms-flex: 0 0 auto; |
| 530 |
flex: 0 0 auto; |
| 531 |
margin-top: -25px; |
| 532 |
-ms-flex-item-align: center; |
| 533 |
align-self: center; |
| 534 |
margin-right: -10px |
| 535 |
} |
| 536 |
.wpbc_dismiss_x__in_panel .wpbc_x_dismiss_btn { |
| 537 |
position: relative; |
| 538 |
z-index: 999 |
| 539 |
} |
| 540 |
.wp-core-ui .wpbc_page .wpbc_settings_flex_container_right { |
| 541 |
--wpbc_form-button-light-size-height: 43px; |
| 542 |
--wpbc_form-button-background-color: #066aab |
| 543 |
} |
| 544 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container .wpbc_button_light, |
| 545 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container .wpbc_button_light:focus, |
| 546 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container .wpbc_button_light:hover, |
| 547 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container input.wpbc_button_light, |
| 548 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container input.wpbc_button_light:focus, |
| 549 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container input.wpbc_button_light:hover { |
| 550 |
font-size: 1.18em; |
| 551 |
font-weight: 600; |
| 552 |
border: 2px solid #eeeeeeb5; |
| 553 |
box-shadow: 0 2px 10px 2px #ffffff54; |
| 554 |
background: #fdfdfd; |
| 555 |
color: #444444e0; |
| 556 |
border-radius: .375em; |
| 557 |
padding: 0 2.2em; |
| 558 |
line-height: 1; |
| 559 |
text-decoration: none; |
| 560 |
cursor: pointer; |
| 561 |
outline: 0; |
| 562 |
display: -ms-flexbox; |
| 563 |
display: flex; |
| 564 |
-ms-flex-flow: row wrap; |
| 565 |
flex-flow: row wrap; |
| 566 |
-ms-flex-pack: center; |
| 567 |
justify-content: center; |
| 568 |
-ms-flex-align: center; |
| 569 |
align-items: center; |
| 570 |
margin: 0; |
| 571 |
height: var(--wpbc_form-button-light-size-height); |
| 572 |
box-sizing: border-box; |
| 573 |
text-shadow: none; |
| 574 |
transition: .2s |
| 575 |
} |
| 576 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container .wpbc_button_light:focus, |
| 577 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container .wpbc_button_light:hover, |
| 578 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container input.wpbc_button_light:focus, |
| 579 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container input.wpbc_button_light:hover { |
| 580 |
border: 2px solid #4d91cd |
| 581 |
} |
| 582 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container .wpbc_button_light.button-primary { |
| 583 |
background: var(--wpbc_form-button-background-color,#06ab09); |
| 584 |
color: #fff |
| 585 |
} |
| 586 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container .wpbc_button_light.button-primary:focus, |
| 587 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container .wpbc_button_light.button-primary:hover { |
| 588 |
background: var(--wpbc_form-button-background-color,#066aab); |
| 589 |
color: #fff; |
| 590 |
border-color: #fff; |
| 591 |
box-shadow: 0 0 0 2px var(--wpbc_form-button-background-color,#066aab) |
| 592 |
} |
| 593 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container .wpbc_button_light:active, |
| 594 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container .wpbc_button_light:disabled, |
| 595 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container .wpbc_button_light:disabled:focus, |
| 596 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container .wpbc_button_light:disabled:hover { |
| 597 |
color: #ccc; |
| 598 |
border: 2px solid #eeeeeeb5; |
| 599 |
cursor: not-allowed |
| 600 |
} |
| 601 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container .wpbc_button_light.wpbc_button_danger { |
| 602 |
background: #de605c; |
| 603 |
border-color: #de605c; |
| 604 |
color: #f7f7f7; |
| 605 |
text-shadow: 0 0 #ba5956 |
| 606 |
} |
| 607 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container .wpbc_button_light.wpbc_button_danger:focus, |
| 608 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container .wpbc_button_light.wpbc_button_danger:hover { |
| 609 |
background: #e65d59; |
| 610 |
color: #fff; |
| 611 |
border-color: #fff; |
| 612 |
box-shadow: 0 0 0 2px #de605c |
| 613 |
} |
| 614 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container .wpbc_button_light.wpbc_button_green, |
| 615 |
.wpbc_button_light.wpbc_button_green { |
| 616 |
background: #27b400; |
| 617 |
border-color: #ffffff17; |
| 618 |
color: #fff; |
| 619 |
text-shadow: none; |
| 620 |
box-shadow: 0 0 0 2px #039f0630 |
| 621 |
} |
| 622 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container .wpbc_button_light.wpbc_button_green:focus, |
| 623 |
.wp-core-ui .wpbc_page .wpbc_ui_settings__flex_container .wpbc_button_light.wpbc_button_green:hover, |
| 624 |
.wpbc_button_light.wpbc_button_green:focus, |
| 625 |
.wpbc_button_light.wpbc_button_green:hover { |
| 626 |
background: #00b703; |
| 627 |
color: #fff; |
| 628 |
border-color: #fff; |
| 629 |
box-shadow: 0 0 0 2px #00b703 |
| 630 |
} |