PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.16.3
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.16.3
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
formidable / css / admin / onboarding-wizard.css

onboarding-wizard.css in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 6.16.3, at css/admin/onboarding-wizard.css

153 lines 2.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 background-color: var(--grey-50);
19 overflow: hidden;
20 }
21
22 #frm-onboarding-wizard-page * {
23 box-sizing: border-box;
24 }
25
26 #frm-onboarding-container {
27 position: relative;
28 min-height: 100vh;
29 padding: var(--gap-xl);
30 opacity: 0;
31 z-index: 2;
32 }
33
34 #frm-onboarding-return-dashboard {
35 color: var(--grey-400);
36 font-weight: 500;
37 margin-top: var(--gap-lg);
38 }
39
40 #frm-onboarding-return-dashboard:hover {
41 color: var(--grey-500);
42 }
43
44 #frm-onboarding-wizard-page[data-current-step="success"] #frm-onboarding-return-dashboard {
45 display: none;
46 }
47
48 #frm-onboarding-wizard-page .frm-onboarding-logo {
49 width: 60px;
50 height: auto;
51 }
52
53 #frm-onboarding-wizard-page .frm-dropdown-menu {
54 position: static !important;
55 transform: none !important;
56 border: 0;
57 box-shadow: none;
58 width: 100%;
59 max-height: unset;
60 }
61
62 .dropdown.show .frm-dropdown-toggle .frmsvg {
63 transform: rotate(180deg);
64 }
65
66 /* NOTE: The changes below were implemented to align with the distinct tooltip style observed in the "Install Formidable Add-ons" step */
67 .tooltip-inner {
68 max-width: 295px;
69 background-color: #545f6e;
70 padding: var(--gap-xs) var(--gap-sm);
71 border-radius: var(--small-radius);
72 }
73
74 .bs-tooltip-top .arrow::before {
75 border-top-color: #545f6e;
76 }
77
78 .bs-tooltip-bottom .arrow::before {
79 border-bottom-color: #545f6e;
80 }
81
82 /* Rootline */
83 .frm-rootline {
84 position: relative;
85 display: flex;
86 justify-content: center;
87 align-items: center;
88 gap: calc(3 * var(--gap-xl));
89 padding: 0;
90 margin: 0 0 var(--gap-lg);
91 }
92
93 .frm-rootline::before {
94 content: '';
95 position: absolute;
96 width: calc(100% - 32px);
97 border: 1px solid var(--grey-300);
98 z-index: 1;
99 }
100
101 .frm-rootline-item {
102 position: relative;
103 display: flex;
104 justify-content: center;
105 align-items: center;
106 width: 16px;
107 height: 16px;
108 background-color: var(--grey-50);
109 border: 2px solid var(--grey-300);
110 outline: 4px solid var(--grey-50);
111 border-radius: 100%;
112 padding: 0;
113 margin: 0;
114 z-index: 2;
115 }
116
117 .frm-rootline-item.frm-completed-step {
118 background-color: var(--grey-500);
119 border-color: var(--grey-500);
120 }
121
122 .frm-rootline-item.frm-current {
123 background-color: #fff;
124 border-color: var(--primary-500);
125 }
126
127 .frm-rootline-item .frmsvg {
128 color: #fff;
129 }
130
131 .frm-rootline-item:not(.frm-completed-step) .frmsvg {
132 display: none;
133 }
134
135 /**
136 * Install Formidable Add-ons Step Styles
137 *
138 * Provides styles for when the Onboarding Wizard page is displayed Install Formidable Add-ons step.
139 */
140 .frm-cta-green .frm-banner-title {
141 color: var(--success-900);
142 }
143
144 .frm-cta-green .frm-banner-text,
145 .frm-cta-green .frm-banner-text a {
146 color: var(--success-800);
147 }
148
149 .frm-cta-green .frm-banner-text a {
150 text-decoration: underline;
151 }
152
153