| 1 |
/** |
| 2 |
* Onboardin Wizard Page Styles |
| 3 |
* |
| 4 |
* This file includes all CSS rules specifically for the Onboarding Wizard page. |
| 5 |
*/ |
| 6 |
|
| 7 |
/** |
| 8 |
* Page General Styles |
| 9 |
* |
| 10 |
* Defines the basic typography and layout styles for the Onboarding Wizard page. |
| 11 |
*/ |
| 12 |
html.wp-toolbar { |
| 13 |
padding: 0; |
| 14 |
} |
| 15 |
|
| 16 |
#frm-onboarding-wizard-page { |
| 17 |
position: relative; |
| 18 |
overflow: hidden; |
| 19 |
} |
| 20 |
|
| 21 |
#frm-onboarding-wizard-page * { |
| 22 |
box-sizing: border-box; |
| 23 |
} |
| 24 |
|
| 25 |
#frm-onboarding-bg { |
| 26 |
position: absolute; |
| 27 |
top: 0; |
| 28 |
right: 0; |
| 29 |
bottom: 0; |
| 30 |
left: 0; |
| 31 |
display: flex; |
| 32 |
justify-content: center; |
| 33 |
align-items: center; |
| 34 |
opacity: 0; |
| 35 |
z-index: 1; |
| 36 |
} |
| 37 |
|
| 38 |
#frm-onboarding-bg img { |
| 39 |
min-height: 80%; |
| 40 |
max-height: 1200px; |
| 41 |
} |
| 42 |
|
| 43 |
#frm-onboarding-container { |
| 44 |
position: relative; |
| 45 |
min-height: 100vh; |
| 46 |
opacity: 0; |
| 47 |
z-index: 2; |
| 48 |
} |
| 49 |
|
| 50 |
#frm-onboarding-return-dashboard { |
| 51 |
color: var(--grey-400); |
| 52 |
font-weight: 500; |
| 53 |
margin-top: var(--gap-xl); |
| 54 |
} |
| 55 |
|
| 56 |
#frm-onboarding-return-dashboard:hover { |
| 57 |
color: var(--grey-500); |
| 58 |
} |
| 59 |
|
| 60 |
#frm-onboarding-wizard-page[data-current-step="success"] #frm-onboarding-return-dashboard { |
| 61 |
display: none; |
| 62 |
} |
| 63 |
|
| 64 |
/* NOTE: The changes below were implemented to align with the distinct tooltip style observed in the "Install Formidable Add-ons" step */ |
| 65 |
.tooltip-inner { |
| 66 |
max-width: 295px; |
| 67 |
background-color: #545F6E; |
| 68 |
padding: var(--gap-xs) var(--gap-sm); |
| 69 |
border-radius: var(--small-radius); |
| 70 |
} |
| 71 |
|
| 72 |
.bs-tooltip-top .arrow::before { |
| 73 |
border-top-color: #545F6E; |
| 74 |
} |
| 75 |
|
| 76 |
/** |
| 77 |
* Welcome Step Styles |
| 78 |
* |
| 79 |
* Provides styles for when the Onboarding Wizard page is displayed Welcome step. |
| 80 |
*/ |
| 81 |
#frm-onboarding-welcome-step { |
| 82 |
max-width: 445px; |
| 83 |
} |
| 84 |
|
| 85 |
.frm-onboarding-logo { |
| 86 |
max-width: 185px; |
| 87 |
} |
| 88 |
|
| 89 |
/** |
| 90 |
* Install Formidable Add-ons Step Styles |
| 91 |
* |
| 92 |
* Provides styles for when the Onboarding Wizard page is displayed Install Formidable Add-ons step. |
| 93 |
*/ |
| 94 |
.frm-cta-green .frm-banner-title { |
| 95 |
color: var(--success-900); |
| 96 |
} |
| 97 |
|
| 98 |
.frm-cta-green .frm-banner-text, |
| 99 |
.frm-cta-green .frm-banner-text a { |
| 100 |
color: var(--success-800); |
| 101 |
} |
| 102 |
|
| 103 |
.frm-cta-green .frm-banner-text a { |
| 104 |
text-decoration: underline; |
| 105 |
} |
| 106 |
|