| 1 |
/*! ----------------------------------------------------------------------------------------------------------------- */ |
| 2 |
/*! Timeline Steps: */ |
| 3 |
/*! ----------------------------------------------------------------------------------------------------------------- */ |
| 4 |
.wpbc__container_place__steps_for_timeline, |
| 5 |
.wpbc_page_top__header_tabs .wpdvlp-top-tabs .nav-tab.wpbc__container_place__steps_for_timeline { |
| 6 |
flex: 1 1 400px; |
| 7 |
display: flex; |
| 8 |
flex-flow: column; |
| 9 |
justify-content: center; |
| 10 |
align-items: center; |
| 11 |
height: 50px; |
| 12 |
margin: 0 auto 35px; |
| 13 |
padding: 0; |
| 14 |
border: 0; |
| 15 |
} |
| 16 |
.wpbc_page_top__header_tabs .wpdvlp-top-tabs .nav-tab.wpbc__container_place__steps_for_timeline{ |
| 17 |
display: none; |
| 18 |
} |
| 19 |
/** // This Code for showing 'Timeline Steps' in the TOP menu bar ** |
| 20 |
|
| 21 |
.wpbc__container_place__steps_for_timeline{ |
| 22 |
display: none; |
| 23 |
} |
| 24 |
.wpbc_page_top__header_tabs .wpdvlp-top-tabs .nav-tab.wpbc__container_place__steps_for_timeline{ |
| 25 |
display: flex; |
| 26 |
margin: 0 30px auto; |
| 27 |
} |
| 28 |
|
| 29 |
@media screen and (max-width: 600px) { |
| 30 |
.wpbc_page_top__header_tabs .wpdvlp-top-tabs .nav-tab.wpbc__container_place__steps_for_timeline { |
| 31 |
display: none; |
| 32 |
} |
| 33 |
.wpbc_setup_wizard_page_container .wpbc__container_place__steps_for_timeline { |
| 34 |
display: flex; |
| 35 |
} |
| 36 |
} |
| 37 |
*/ |
| 38 |
|
| 39 |
|
| 40 |
.wpbc_steps_for_timeline_container { |
| 41 |
max-width: Min(400px, 100%); |
| 42 |
min-width: 200px; |
| 43 |
margin: 3px 0 0; |
| 44 |
width: 100%; |
| 45 |
--wpbc_steps_for_timeline_step_color: #d6d6d6; |
| 46 |
--wpbc_steps_for_timeline_active_color: #64aa45; |
| 47 |
--wpbc_steps_for_timeline_failed_color: #e76a39; |
| 48 |
--wpbc_steps_for_timeline_checkbox_color: #fff; |
| 49 |
} |
| 50 |
.booking_form_div .wpbc_steps_for_timeline_container { |
| 51 |
--wpbc_steps_for_timeline_active_color: var(--wpbc_timepicker-selected-bg-color, #6b96ce); |
| 52 |
} |
| 53 |
.wpbc_steps_for_timeline { |
| 54 |
margin: 0; |
| 55 |
padding: 0; |
| 56 |
display: flex; |
| 57 |
flex-flow: row nowrap; |
| 58 |
justify-content: flex-start; |
| 59 |
align-items: center; |
| 60 |
} |
| 61 |
.wpbc_steps_for_timeline .wpbc_steps_for_timeline_step_line { |
| 62 |
background: var(--wpbc_steps_for_timeline_step_color); |
| 63 |
height: 2px; |
| 64 |
margin: 0 7px; |
| 65 |
width: 100%; |
| 66 |
} |
| 67 |
|
| 68 |
.wpbc_steps_for_timeline .wpbc_steps_for_timeline_step_line.wpbc_steps_for_timeline_line_active { |
| 69 |
background:var(--wpbc_steps_for_timeline_active_color); |
| 70 |
} |
| 71 |
.wpbc_steps_for_timeline .wpbc_steps_for_timeline_step { |
| 72 |
border:none; |
| 73 |
background-color: var(--wpbc_steps_for_timeline_step_color); |
| 74 |
border-radius:50%; |
| 75 |
flex-shrink:0; |
| 76 |
height:16px; |
| 77 |
width:16px |
| 78 |
} |
| 79 |
.wpbc_steps_for_timeline .wpbc_steps_for_timeline_step .icon { |
| 80 |
display:none; |
| 81 |
} |
| 82 |
.wpbc_steps_for_timeline .wpbc_steps_for_timeline_step.wpbc_steps_for_timeline_step_active, |
| 83 |
.wpbc_steps_for_timeline .wpbc_steps_for_timeline_step.wpbc_steps_for_timeline_step_completed { |
| 84 |
background-color:var(--wpbc_steps_for_timeline_active_color); |
| 85 |
position:relative |
| 86 |
} |
| 87 |
.wpbc_steps_for_timeline .wpbc_steps_for_timeline_step.wpbc_steps_for_timeline_step_failed { |
| 88 |
background-color:var(--wpbc_steps_for_timeline_active_color); |
| 89 |
position:relative |
| 90 |
} |
| 91 |
.wpbc_steps_for_timeline .wpbc_steps_for_timeline_step.wpbc_steps_for_timeline_step_completed .icon-success, |
| 92 |
.wpbc_steps_for_timeline .wpbc_steps_for_timeline_step.wpbc_steps_for_timeline_step_failed .icon-failed { |
| 93 |
color: var(--wpbc_steps_for_timeline_checkbox_color, #fff); |
| 94 |
display: block; |
| 95 |
position: absolute; |
| 96 |
left: 3px; |
| 97 |
top: 3px |
| 98 |
} |
| 99 |
.wpbc_steps_for_timeline .wpbc_steps_for_timeline_step.wpbc_steps_for_timeline_step_failed .icon-failed { |
| 100 |
left: 4px; |
| 101 |
top: 2px |
| 102 |
} |
| 103 |
/*! Timeline Steps: Front-End align */ |
| 104 |
.booking_form_div .wpbc_steps_for_timeline_container { |
| 105 |
margin: 20px auto 25px; |
| 106 |
} |