PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.24
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.24
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
← All changes | css/custom_theme.css.php +310 -320 6.5.16.24 View file →
@@ -16,12 +16,14 @@
16 16 if ( ! isset( $frm_style ) ) {
17 17 $frm_style = new FrmStyle();
18 18 }
19 19
20 -$styles = $frm_style->get_all();
21 -$default_style = $frm_style->get_default_style( $styles );
22 -$defaults = FrmStylesHelper::get_settings_for_output( $default_style );
23 -$important = empty( $defaults['important_style'] ) ? '' : ' !important';
20 +$styles = $frm_style->get_all();
21 +$default_style = $frm_style->get_default_style( $styles );
22 +$defaults = FrmStylesHelper::get_settings_for_output( $default_style );
23 +$important = empty( $defaults['important_style'] ) ? '' : ' !important';
24 +$pro_is_installed = FrmAppHelper::pro_is_installed();
25 +$use_chosen_js = FrmStylesHelper::use_chosen_js();
24 26
25 27 ?>
26 28 .with_frm_style{
27 29 <?php FrmStylesHelper::output_vars( $defaults ); ?>
@@ -36,12 +38,12 @@
36 38
37 39 .with_frm_style,
38 40 .with_frm_style form,
39 41 .with_frm_style .frm-show-form div.frm_description p{
40 - text-align:<?php echo esc_html( $defaults['form_align'] . $important ); ?>;
41 - text-align:var(--form-align)<?php echo esc_html( $important ); ?>;
42 + text-align: var(--form-align)<?php echo esc_html( $important ); ?>;
42 43 }
43 44
45 +/* Keep this. This is used for Honeypot */
44 46 input:-webkit-autofill {
45 47 -webkit-box-shadow: 0 0 0 30px white inset;
46 48 }
47 49
@@ -47,35 +49,24 @@
47 49
48 50 /* Form description */
49 51 .with_frm_style .frm-show-form div.frm_description p{
50 52 <?php if ( ! empty( $defaults['form_desc_size'] ) ) { ?>
51 - font-size:<?php echo esc_html( $defaults['form_desc_size'] . $important ); ?>;
52 - font-size:var(--form-desc-size)<?php echo esc_html( $important ); ?>;
53 + font-size: var(--form-desc-size)<?php echo esc_html( $important ); ?>;
53 54 <?php } ?>
54 55 <?php if ( ! empty( $defaults['form_desc_color'] ) ) { ?>
55 - color:<?php echo esc_html( $defaults['form_desc_color'] . $important ); ?>;
56 - color:var(--form-desc-color)<?php echo esc_html( $important ); ?>;
56 + color: var(--form-desc-color)<?php echo esc_html( $important ); ?>;
57 57 <?php } ?>
58 58 <?php if ( ! empty( $defaults['form_desc_margin_top'] ) ) { ?>
59 - margin-top:<?php echo esc_html( $defaults['form_desc_margin_top'] . $important ); ?>;
60 - margin-top:var(--form-desc-margin-top)<?php echo esc_html( $important ); ?>;
59 + margin-top: var(--form-desc-margin-top)<?php echo esc_html( $important ); ?>;
61 60 <?php } ?>
62 61 <?php if ( ! empty( $defaults['form_desc_margin_bottom'] ) ) { ?>
63 - margin-bottom:<?php echo esc_html( $defaults['form_desc_margin_bottom'] . $important ); ?>;
64 - margin-bottom:var(--form-desc-margin-bottom)<?php echo esc_html( $important ); ?>;
62 + margin-bottom: var(--form-desc-margin-bottom)<?php echo esc_html( $important ); ?>;
65 63 <?php } ?>
66 64 <?php if ( isset( $defaults['form_desc_padding'] ) ) { ?>
67 - padding:<?php echo esc_html( $defaults['form_desc_padding'] . $important ); ?>;
68 - padding:var(--form-desc-padding)<?php echo esc_html( $important ); ?>;
65 + padding: var(--form-desc-padding)<?php echo esc_html( $important ); ?>;
69 66 <?php } ?>
70 67 }
71 68
72 -form .<?php echo esc_html( FrmHoneypot::generate_class_name() ); ?> {
73 - overflow: hidden;
74 - width: 0;
75 - height: 0;
76 -}
77 -
78 69 .with_frm_style fieldset{
79 70 min-width:0;
80 71 display: block; /* Override 2021 theme */
81 72 }
@@ -88,24 +79,20 @@
88 79 }
89 80
90 81 .with_frm_style .frm_form_fields > fieldset{
91 82 <?php if ( isset( $defaults['fieldset'] ) && ( $defaults['fieldset'] || '0' === $defaults['fieldset'] ) ) { ?>
92 - border-width:<?php echo esc_html( $defaults['fieldset'] . $important ); ?>;
93 - border-width:var(--fieldset)<?php echo esc_html( $important ); ?>;
83 + border-width: var(--fieldset)<?php echo esc_html( $important ); ?>;
94 84 <?php } ?>
95 85 border-style:solid;
96 86 <?php if ( ! empty( $defaults['fieldset_color'] ) ) { ?>
97 - border-color:<?php echo esc_html( $defaults['fieldset_color'] . $important ); ?>;
98 - border-color:var(--fieldset-color)<?php echo esc_html( $important ); ?>;
87 + border-color: var(--fieldset-color)<?php echo esc_html( $important ); ?>;
99 88 <?php } ?>
100 89 margin:0;
101 90 <?php if ( ! empty( $defaults['fieldset_padding'] ) ) { ?>
102 - padding:<?php echo esc_html( $defaults['fieldset_padding'] . $important ); ?>;
103 - padding:var(--fieldset-padding)<?php echo esc_html( $important ); ?>;
91 + padding: var(--fieldset-padding)<?php echo esc_html( $important ); ?>;
104 92 <?php } ?>
105 93 <?php if ( ! empty( $defaults['fieldset_bg_color'] ) ) { ?>
106 - background-color:<?php echo esc_html( $defaults['fieldset_bg_color'] ); ?>;
107 - background-color:var(--fieldset-bg-color)<?php echo esc_html( $important ); ?>;
94 + background-color: var(--fieldset-bg-color)<?php echo esc_html( $important ); ?>;
108 95 <?php } ?>
109 96 <?php if ( ! empty( $defaults['font'] ) ) { ?>
110 97 font-family:var(--font);
111 98 <?php } ?>
@@ -129,26 +116,21 @@
129 116
130 117 .with_frm_style legend + h3,
131 118 .with_frm_style h3.frm_form_title{
132 119 <?php if ( ! empty( $defaults['title_size'] ) ) { ?>
133 - font-size:<?php echo esc_html( $defaults['title_size'] . $important ); ?>;
134 - font-size:var(--title-size)<?php echo esc_html( $important ); ?>;
120 + font-size: var(--title-size)<?php echo esc_html( $important ); ?>;
135 121 <?php } ?>
136 122 <?php if ( ! empty( $defaults['title_color'] ) ) { ?>
137 - color:<?php echo esc_html( $defaults['title_color'] . $important ); ?>;
138 - color:var(--title-color)<?php echo esc_html( $important ); ?>;
123 + color: var(--title-color)<?php echo esc_html( $important ); ?>;
139 124 <?php } ?>
140 125 <?php if ( ! empty( $defaults['font'] ) ) { ?>
141 - font-family:<?php echo FrmAppHelper::kses( $defaults['font'] ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>;
142 - font-family:var(--font);
126 + font-family: var(--font);
143 127 <?php } ?>
144 128 <?php if ( ! empty( $defaults['title_margin_top'] ) ) { ?>
145 - margin-top:<?php echo esc_html( $defaults['title_margin_top'] . $important ); ?>;
146 - margin-top:var(--title-margin-top)<?php echo esc_html( $important ); ?>;
129 + margin-top: var(--title-margin-top)<?php echo esc_html( $important ); ?>;
147 130 <?php } ?>
148 131 <?php if ( ! empty( $defaults['title_margin_bottom'] ) ) { ?>
149 - margin-bottom:<?php echo esc_html( $defaults['title_margin_bottom'] . $important ); ?>;
150 - margin-bottom:var(--title-margin-bottom)<?php echo esc_html( $important ); ?>;
132 + margin-bottom: var(--title-margin-bottom)<?php echo esc_html( $important ); ?>;
151 133 <?php } ?>
152 134 }
153 135
154 136 .with_frm_style .frm_form_field.frm_html_container,
@@ -153,46 +135,42 @@
153 135
154 136 .with_frm_style .frm_form_field.frm_html_container,
155 137 .with_frm_style .frm_form_field .frm_show_it{
156 138 <?php if ( ! empty( $defaults['font'] ) ) { ?>
157 - font-family:<?php echo FrmAppHelper::kses( $defaults['font'] ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>;
158 - font-family:var(--font);
139 + font-family: var(--font);
159 140 <?php } ?>
160 141 <?php if ( ! empty( $defaults['form_desc_color'] ) ) { ?>
161 - color:<?php echo esc_html( $defaults['form_desc_color'] . $important ); ?>;
162 - color:var(--form-desc-color)<?php echo esc_html( $important ); ?>;
142 + color: var(--form-desc-color)<?php echo esc_html( $important ); ?>;
163 143 <?php } ?>
164 144 }
165 145
166 146 <?php if ( ! empty( $defaults['form_desc_size'] ) ) { ?>
167 147 .with_frm_style .frm_form_field.frm_html_container{
168 - font-size:<?php echo esc_html( $defaults['form_desc_size'] . $important ); ?>;
169 - font-size:var(--form-desc-size)<?php echo esc_html( $important ); ?>;
148 + font-size: var(--form-desc-size)<?php echo esc_html( $important ); ?>;
170 149 }
171 150 <?php } ?>
172 151
173 152 .with_frm_style .frm_form_field .frm_show_it{
174 153 <?php if ( ! empty( $defaults['field_font_size'] ) ) { ?>
175 - font-size:<?php echo esc_html( $defaults['field_font_size'] . $important ); ?>;
176 - font-size:var(--field-font-size)<?php echo esc_html( $important ); ?>;
154 + font-size: var(--field-font-size)<?php echo esc_html( $important ); ?>;
177 155 <?php } ?>
178 156 <?php if ( ! empty( $defaults['field_weight'] ) ) { ?>
179 - font-weight:<?php echo esc_html( $defaults['field_weight'] ); ?>;
180 - font-weight:var(--field-weight)<?php echo esc_html( $important ); ?>;
157 + font-weight: var(--field-weight)<?php echo esc_html( $important ); ?>;
181 158 <?php } ?>
182 159 }
183 160
184 -.with_frm_style .frm_required{
161 +.with_frm_style .frm_required {
185 162 <?php if ( ! empty( $defaults['required_color'] ) ) { ?>
186 - color:<?php echo esc_html( $defaults['required_color'] . $important ); ?>;
187 - color:var(--required-color)<?php echo esc_html( $important ); ?>;
163 + color: var(--required-color)<?php echo esc_html( $important ); ?>;
188 164 <?php } ?>
189 165 <?php if ( ! empty( $defaults['required_weight'] ) ) { ?>
190 - font-weight:<?php echo esc_html( $defaults['required_weight'] . $important ); ?>;
191 - font-weight:var(--required-weight)<?php echo esc_html( $important ); ?>;
166 + font-weight: var(--required-weight)<?php echo esc_html( $important ); ?>;
192 167 <?php } ?>
193 168 }
194 169
170 +<?php if ( $use_chosen_js ) { ?>
171 +.with_frm_style .chosen-container,
172 +<?php } ?>
195 173 .with_frm_style input[type=text],
196 174 .with_frm_style input[type=password],
197 175 .with_frm_style input[type=email],
198 176 .with_frm_style input[type=number],
@@ -200,14 +178,12 @@
200 178 .with_frm_style input[type=tel],
201 179 .with_frm_style input[type=search],
202 180 .with_frm_style select,
203 181 .with_frm_style textarea,
204 -.with_frm_style .frm-card-element.StripeElement,
205 -.with_frm_style .chosen-container{
182 +.with_frm_style .frm-card-element.StripeElement {
206 183 font-family:var(--font)<?php echo esc_html( $important ); ?>;
207 184 <?php if ( ! empty( $defaults['field_font_size'] ) ) { ?>
208 - font-size:<?php echo esc_html( $defaults['field_font_size'] ); ?>;
209 - font-size:var(--field-font-size)<?php echo esc_html( $important ); ?>;
185 + font-size: var(--field-font-size)<?php echo esc_html( $important ); ?>;
210 186 <?php } ?>
211 187 margin-bottom:0<?php echo esc_html( $important ); ?>;
212 188 }
213 189
@@ -230,58 +206,63 @@
230 206 .with_frm_style .frm_scroll_box .frm_opt_container,
231 207 .frm_form_fields_active_style,
232 208 .frm_form_fields_error_style,
233 209 .with_frm_style .frm-card-element.StripeElement,
210 +<?php if ( $use_chosen_js ) { ?>
234 211 .with_frm_style .chosen-container-multi .chosen-choices,
235 -.with_frm_style .chosen-container-single .chosen-single{
236 - color:<?php echo esc_html( $defaults['text_color'] ); ?>;
237 - color:var(--text-color)<?php echo esc_html( $important ); ?>;
238 - background-color:<?php echo esc_html( $defaults['bg_color'] . $important ); ?>;
239 - background-color:var(--bg-color)<?php echo esc_html( $important ); ?>;
240 -<?php if ( ! empty( $important ) ) { ?>
212 +.with_frm_style .chosen-container-single .chosen-single,
213 +<?php } ?>
214 +.with_frm_style .frm_slimselect.ss-main {
215 + color: var(--text-color)<?php echo esc_html( $important ); ?>;
216 + background-color: var(--bg-color)<?php echo esc_html( $important ); ?>;
217 + border-color: var(--border-color)<?php echo esc_html( $important ); ?>;
218 + border-width: var(--field-border-width)<?php echo esc_html( $important ); ?>;
219 + border-style: var(--field-border-style)<?php echo esc_html( $important ); ?>;
220 + border-radius: var(--border-radius)<?php echo esc_html( $important ); ?>;
221 + width: var(--field-width)<?php echo esc_html( $important ); ?>;
222 + max-width: 100%;
223 + font-size: var(--field-font-size)<?php echo esc_html( $important ); ?>;
224 + padding: var(--field-pad)<?php echo esc_html( $important ); ?>;
225 + box-sizing: border-box;
226 + outline: none<?php echo esc_html( $important ); ?>;
227 + font-weight: var(--field-weight);
228 +}
229 +
230 +<?php if ( ! empty( $important ) ) : ?>
231 + <?php if ( $use_chosen_js ) { ?>
232 + .with_frm_style .chosen-container-multi .chosen-choices,
233 + .with_frm_style .chosen-container-single .chosen-single,
234 + <?php } ?>
235 +.with_frm_style input[type=text],
236 +.with_frm_style input[type=password],
237 +.with_frm_style input[type=email],
238 +.with_frm_style input[type=number],
239 +.with_frm_style input[type=url],
240 +.with_frm_style input[type=tel],
241 +.with_frm_style input[type=phone],
242 +.with_frm_style input[type=search],
243 +.with_frm_style textarea,
244 +.frm_form_fields_style,
245 +.with_frm_style .frm_scroll_box .frm_opt_container,
246 +.frm_form_fields_active_style,
247 +.frm_form_fields_error_style,
248 +.with_frm_style .frm-card-element.StripeElement {
241 249 background-image:none !important;
242 -<?php } ?>
243 - border-color:<?php echo esc_html( $defaults['border_color'] ); ?>;
244 - border-color:var(--border-color)<?php echo esc_html( $important ); ?>;
245 - border-width:<?php echo esc_html( $defaults['field_border_width'] ); ?>;
246 - border-width:var(--field-border-width)<?php echo esc_html( $important ); ?>;
247 - border-style:<?php echo esc_html( $defaults['field_border_style'] ); ?>;
248 - border-style:var(--field-border-style)<?php echo esc_html( $important ); ?>;
249 - -moz-border-radius:<?php echo esc_html( $defaults['border_radius'] . $important ); ?>;
250 - -webkit-border-radius:<?php echo esc_html( $defaults['border_radius'] . $important ); ?>;
251 - border-radius:<?php echo esc_html( $defaults['border_radius'] ); ?>;
252 - border-radius:var(--border-radius)<?php echo esc_html( $important ); ?>;
253 - width:<?php echo esc_html( $defaults['field_width'] ); ?>;
254 - width:var(--field-width)<?php echo esc_html( $important ); ?>;
255 - max-width:100%;
256 - font-size:<?php echo esc_html( $defaults['field_font_size'] ); ?>;
257 - font-size:var(--field-font-size)<?php echo esc_html( $important ); ?>;
258 - padding:<?php echo esc_html( $defaults['field_pad'] ); ?>;
259 - padding:var(--field-pad)<?php echo esc_html( $important ); ?>;
260 - -webkit-box-sizing:border-box;
261 - -moz-box-sizing:border-box;
262 - box-sizing:border-box;
263 - outline:none<?php echo esc_html( $important ); ?>;
264 - font-weight:<?php echo esc_html( $defaults['field_weight'] ); ?>;
265 - font-weight:var(--field-weight);
266 - box-shadow:var(--box-shadow)<?php echo esc_html( $important ); ?>;
267 250 }
251 +<?php endif; ?>
268 252
269 253 .with_frm_style select option {
270 - color:<?php echo esc_html( $defaults['text_color'] ); ?>;
271 - color:var(--text-color)<?php echo esc_html( $important ); ?>;
254 + color: var(--text-color)<?php echo esc_html( $important ); ?>;
272 255 }
273 256
274 257 .with_frm_style select option.frm-select-placeholder {
275 - color:<?php echo esc_html( $defaults['text_color_disabled'] ); ?>;
276 - color:var(--text-color-disabled)<?php echo esc_html( $important ); ?>;
258 + color: var(--text-color-disabled)<?php echo esc_html( $important ); ?>;
277 259 }
278 260
279 261 .with_frm_style input[type=radio],
280 262 .with_frm_style input[type=checkbox]{
281 - border-color:<?php echo esc_html( $defaults['border_color'] . $important ); ?>;
282 - border-color:var(--border-color)<?php echo esc_html( $important ); ?>;
283 - box-shadow:var(--box-shadow)<?php echo esc_html( $important ); ?>;
263 + border-color: var(--border-color)<?php echo esc_html( $important ); ?>;
264 + box-shadow: var(--box-shadow)<?php echo esc_html( $important ); ?>;
284 265 float: none;
285 266 }
286 267
287 268 .with_frm_style input[type=radio]:after,
@@ -288,8 +269,18 @@
288 269 .with_frm_style input[type=checkbox]:after {
289 270 display: none; /* 2021 conflict */
290 271 }
291 272
273 +.with_frm_style input[type=radio]:not(:checked):focus,
274 +.with_frm_style input[type=checkbox]:not(:checked):focus {
275 + border-color: var(--border-color) !important;
276 +}
277 +
278 +.with_frm_style input[type=radio]:focus,
279 +.with_frm_style input[type=checkbox]:focus {
280 + box-shadow:0px 0px 0px 3px rgba(<?php echo esc_html( FrmStylesHelper::hex2rgb( $defaults['border_color_active'] ) ); ?>, 0.4) !important;
281 +}
282 +
292 283 .with_frm_style input[type=text],
293 284 .with_frm_style input[type=password],
294 285 .with_frm_style input[type=email],
295 286 .with_frm_style input[type=number],
@@ -298,10 +289,9 @@
298 289 .with_frm_style input[type=file],
299 290 .with_frm_style input[type=search],
300 291 .with_frm_style select,
301 292 .with_frm_style .frm-card-element.StripeElement{
302 - min-height:<?php echo esc_html( $defaults['field_height'] ); ?>;
303 - min-height:var(--field-height)<?php echo esc_html( $important ); ?>;
293 + min-height: var(--field-height)<?php echo esc_html( $important ); ?>;
304 294 line-height:1.3<?php echo esc_html( $important ); ?>;
305 295 }
306 296
307 297 .with_frm_style select[multiple=multiple]{
@@ -316,17 +306,15 @@
316 306 box-shadow:none;
317 307 }
318 308
319 309 .with_frm_style input[type=file]{
320 - color:<?php echo esc_html( $defaults['text_color'] ); ?>;
321 - color:var(--text-color)<?php echo esc_html( $important ); ?>;
322 - padding:0px;
310 + color: var(--text-color)<?php echo esc_html( $important ); ?>;
311 + padding: 0px;
323 312 <?php if ( ! empty( $defaults['font'] ) ) { ?>
324 - font-family:var(--font)<?php echo esc_html( $important ); ?>;
313 + font-family: var(--font)<?php echo esc_html( $important ); ?>;
325 314 <?php } ?>
326 - font-size:<?php echo esc_html( $defaults['field_font_size'] ); ?>;
327 - font-size:var(--field-font-size)<?php echo esc_html( $important ); ?>;
328 - display:initial;
315 + font-size: var(--field-font-size)<?php echo esc_html( $important ); ?>;
316 + display: initial;
329 317 }
330 318
331 319 .with_frm_style input[type=file].frm_transparent{
332 320 color:transparent<?php echo esc_html( $important ); ?>;
@@ -332,10 +320,9 @@
332 320 color:transparent<?php echo esc_html( $important ); ?>;
333 321 }
334 322
335 323 .with_frm_style .wp-editor-wrap{
336 - width:<?php echo esc_html( $defaults['field_width'] . $important ); ?>;
337 - width:var(--field-width)<?php echo esc_html( $important ); ?>;
324 + width: var(--field-width)<?php echo esc_html( $important ); ?>;
338 325 max-width:100%;
339 326 }
340 327
341 328 .with_frm_style .wp-editor-container textarea{
@@ -343,17 +330,15 @@
343 330 box-shadow:none !important;
344 331 }
345 332
346 333 .with_frm_style .mceIframeContainer{
347 - background-color:<?php echo esc_html( $defaults['bg_color'] . $important ); ?>;
348 - background-color:var(--bg-color)<?php echo esc_html( $important ); ?>;
334 + background-color: var(--bg-color)<?php echo esc_html( $important ); ?>;
349 335 }
350 336
351 337 .with_frm_style select{
352 - width:<?php echo esc_html( $defaults['auto_width'] ); ?>;
353 - width:var(--auto-width)<?php echo esc_html( $important ); ?>;
338 + width: var(--auto-width)<?php echo esc_html( $important ); ?>;
354 339 max-width:100%;
355 - background-position-y: center;
340 + background-position-y: calc(50% + 3px);
356 341 }
357 342
358 343 .with_frm_style input[disabled],
359 344 .with_frm_style select[disabled],
@@ -359,15 +344,12 @@
359 344 .with_frm_style select[disabled],
360 345 .with_frm_style textarea[disabled],
361 346 .with_frm_style input[readonly],
362 347 .with_frm_style select[readonly],
363 -.with_frm_style textarea[readonly]{
364 - background-color:<?php echo esc_html( $defaults['bg_color_disabled'] ); ?>;
365 - background-color:var(--bg-color-disabled)<?php echo esc_html( $important ); ?>;
366 - color:<?php echo esc_html( $defaults['text_color_disabled'] ); ?>;
367 - color:var(--text-color-disabled)<?php echo esc_html( $important ); ?>;
368 - border-color:<?php echo esc_html( $defaults['border_color_disabled'] ); ?>;
369 - border-color:var(--border-color-disabled)<?php echo esc_html( $important ); ?>;
348 +.with_frm_style textarea[readonly] {
349 + background-color: var(--bg-color-disabled)<?php echo esc_html( $important ); ?>;
350 + color: var(--text-color-disabled)<?php echo esc_html( $important ); ?>;
351 + border-color: var(--border-color-disabled)<?php echo esc_html( $important ); ?>;
370 352 }
371 353
372 354 .frm_preview_page:before{
373 355 content:normal !important;
@@ -379,30 +361,24 @@
379 361
380 362 .with_frm_style .frm_primary_label{
381 363 max-width:100%;
382 364 <?php if ( ! empty( $defaults['font'] ) ) { ?>
383 - font-family:<?php echo FrmAppHelper::kses( $defaults['font'] ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>;
384 - font-family:var(--font);
365 + font-family: var(--font);
385 366 <?php } ?>
386 367 <?php if ( ! empty( $defaults['font_size'] ) ) { ?>
387 - font-size:<?php echo esc_html( $defaults['font_size'] . $important ); ?>;
388 - font-size:var(--font-size)<?php echo esc_html( $important ); ?>;
368 + font-size: var(--font-size)<?php echo esc_html( $important ); ?>;
389 369 <?php } ?>
390 370 <?php if ( ! empty( $defaults['label_color'] ) ) { ?>
391 - color:<?php echo esc_html( $defaults['label_color'] . $important ); ?>;
392 - color:var(--label-color)<?php echo esc_html( $important ); ?>;
371 + color: var(--label-color)<?php echo esc_html( $important ); ?>;
393 372 <?php } ?>
394 373 <?php if ( ! empty( $defaults['weight'] ) ) { ?>
395 - font-weight:<?php echo esc_html( $defaults['weight'] . $important ); ?>;
396 - font-weight:var(--weight)<?php echo esc_html( $important ); ?>;
374 + font-weight: var(--weight)<?php echo esc_html( $important ); ?>;
397 375 <?php } ?>
398 376 <?php if ( ! empty( $defaults['align'] ) ) { ?>
399 - text-align:<?php echo esc_html( $defaults['align'] . $important ); ?>;
400 - text-align:var(--align)<?php echo esc_html( $important ); ?>;
377 + text-align: var(--align)<?php echo esc_html( $important ); ?>;
401 378 <?php } ?>
402 379 <?php if ( ! empty( $defaults['label_padding'] ) ) { ?>
403 - padding:<?php echo esc_html( $defaults['label_padding'] . $important ); ?>;
404 - padding:var(--label-padding)<?php echo esc_html( $important ); ?>;
380 + padding: var(--label-padding)<?php echo esc_html( $important ); ?>;
405 381 <?php } ?>
406 382 margin:0;
407 383 width:auto;
408 384 display:block;
@@ -455,9 +431,9 @@
455 431
456 432 /* Floating labels */
457 433 .with_frm_style .frm_inside_container {
458 434 position: relative;
459 - padding-top: 16px;
435 + padding-top: 18px;
460 436 padding-top: calc(0.5 * var(--field-height));
461 437 }
462 438
463 439 .with_frm_style .frm_inside_container > input,
@@ -466,8 +442,13 @@
466 442 display: block;
467 443 }
468 444
469 445 /* These do not work if they are combined */
446 +.with_frm_style input::placeholder,
447 +.with_frm_style textarea::placeholder {
448 + font-size: var(--field-font-size)<?php echo esc_html( $important ); ?>;
449 +}
450 +
470 451 .with_frm_style .frm_inside_container > input::-moz-placeholder,
471 452 .with_frm_style .frm_inside_container > textarea::-moz-placeholder {
472 453 opacity: 0 !important;
473 454 transition: opacity 0.3s ease-in;
@@ -488,9 +469,9 @@
488 469 .with_frm_style .frm_inside_container > label {
489 470 transition: all 0.3s ease-in;
490 471
491 472 position: absolute;
492 - top: 17px;
473 + top: 19px;
493 474 top: calc(1px + .5 * var(--field-height));
494 475 left: 3px;
495 476 width: 100%;
496 477
@@ -498,9 +479,9 @@
498 479 text-overflow: ellipsis;
499 480 overflow: hidden;
500 481 white-space: nowrap;
501 482
502 - padding: 6px 10px;
483 + padding: 8px 12px;
503 484 padding: var(--field-pad);
504 485
505 486 font-size: 14px;
506 487 font-size: var(--field-font-size);
@@ -506,9 +487,8 @@
506 487 font-size: var(--field-font-size);
507 488 font-weight: normal;
508 489 font-weight: var(--field-weight);
509 490
510 - -ms-pointer-events: none;
511 491 pointer-events: none;
512 492 }
513 493
514 494 .with_frm_style.frm_style_lines-no-boxes .frm_inside_container > label {
@@ -592,50 +572,39 @@
592 572 text-decoration:none !important;;
593 573 border:1px solid #eee;
594 574 display:inline-block;
595 575 <?php if ( ! empty( $defaults['submit_padding'] ) ) { ?>
596 - padding:<?php echo esc_html( $defaults['submit_padding'] . $important ); ?>;
597 - padding:var(--submit-padding)<?php echo esc_html( $important ); ?>;
576 + padding: var(--submit-padding)<?php echo esc_html( $important ); ?>;
598 577 <?php } else { ?>
599 578 padding:5px;
600 579 <?php } ?>
601 580 <?php if ( ! empty( $defaults['border_radius'] ) ) { ?>
602 - -moz-border-radius:<?php echo esc_html( $defaults['border_radius'] . $important ); ?>;
603 - -webkit-border-radius:<?php echo esc_html( $defaults['border_radius'] . $important ); ?>;
604 581 border-radius:<?php echo esc_html( $defaults['border_radius'] . $important ); ?>;
605 582 border-radius:var(--border-radius)<?php echo esc_html( $important ); ?>;
606 583 <?php } ?>
607 584 <?php if ( ! empty( $defaults['submit_font_size'] ) ) { ?>
608 - font-size:<?php echo esc_html( $defaults['submit_font_size'] . $important ); ?>;
609 - font-size:var(--submit-font-size)<?php echo esc_html( $important ); ?>;
585 + font-size: var(--submit-font-size)<?php echo esc_html( $important ); ?>;
610 586 <?php } ?>
611 587 <?php if ( ! empty( $defaults['font'] ) ) { ?>
612 - font-family:<?php echo FrmAppHelper::kses( $defaults['font'] . $important ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>;
613 - font-family:var(--font)<?php echo esc_html( $important ); ?>;
588 + font-family: var(--font)<?php echo esc_html( $important ); ?>;
614 589 <?php } ?>
615 590 <?php if ( ! empty( $defaults['submit_weight'] ) ) { ?>
616 - font-weight:<?php echo esc_html( $defaults['submit_weight'] . $important ); ?>;
617 - font-weight:var(--submit-weight)<?php echo esc_html( $important ); ?>;
591 + font-weight: var(--submit-weight)<?php echo esc_html( $important ); ?>;
618 592 <?php } ?>
619 593 <?php if ( ! empty( $defaults['submit_text_color'] ) ) { ?>
620 - color:<?php echo esc_html( $defaults['submit_text_color'] . $important ); ?>;
621 - color:var(--submit-text-color)<?php echo esc_html( $important ); ?>;
594 + color: var(--submit-text-color)<?php echo esc_html( $important ); ?>;
622 595 <?php } ?>
623 596 <?php if ( ! empty( $defaults['submit_bg_color'] ) ) { ?>
624 - background:<?php echo esc_html( $defaults['submit_bg_color'] . $important ); ?>;
625 - background:var(--submit-bg-color)<?php echo esc_html( $important ); ?>;
597 + background: var(--submit-bg-color)<?php echo esc_html( $important ); ?>;
626 598 <?php } ?>
627 599 <?php if ( ! empty( $defaults['submit_border_width'] ) ) { ?>
628 - border-width:<?php echo esc_html( $defaults['submit_border_width'] ); ?>;
629 - border-width:var(--submit-border-width)<?php echo esc_html( $important ); ?>;
600 + border-width: var(--submit-border-width)<?php echo esc_html( $important ); ?>;
630 601 <?php } ?>
631 602 <?php if ( ! empty( $defaults['submit_border_color'] ) ) { ?>
632 - border-color:<?php echo esc_html( $defaults['submit_border_color'] . $important ); ?>;
633 - border-color:var(--submit-border-color)<?php echo esc_html( $important ); ?>;
603 + border-color: var(--submit-border-color)<?php echo esc_html( $important ); ?>;
634 604 <?php } ?>
635 605 <?php if ( ! empty( $defaults['submit_height'] ) ) { ?>
636 - height:<?php echo esc_html( $defaults['submit_height'] . $important ); ?>;
637 - height:var(--submit-height)<?php echo esc_html( $important ); ?>;
606 + height: var(--submit-height)<?php echo esc_html( $important ); ?>;
638 607 <?php } ?>
639 608 }
640 609
641 610 <?php if ( ! empty( $defaults['submit_text_color'] ) ) { ?>
@@ -668,8 +637,12 @@
668 637 .with_frm_style.frm_center_submit .frm_submit{
669 638 text-align:center;
670 639 }
671 640
641 +.with_frm_style.frm_center_submit .frm_flex.frm_submit {
642 + justify-content: center;
643 +}
644 +
672 645 .with_frm_style .frm_inline_success .frm_submit{
673 646 display: flex;
674 647 flex-direction: row;
675 648 align-items: center;
@@ -713,9 +686,8 @@
713 686
714 687 .with_frm_style .frm_loading_prev .frm_prev_page,
715 688 .with_frm_style .frm_loading_form .frm_button_submit {
716 689 position: relative;
717 - opacity: .8;
718 690 color: transparent !important;
719 691 text-shadow: none !important;
720 692 }
721 693
@@ -741,9 +713,9 @@
741 713 border-top-color: transparent;
742 714 border-left-color: transparent;
743 715 border-radius: 50%;
744 716 box-sizing: border-box;
745 - <?php $loader_size = 20; ?>
717 + <?php $loader_size = 12; ?>
746 718 top: 50%;
747 719 left: 50%;
748 720 margin-top: -<?php echo absint( $loader_size / 2 ); ?>px;
749 721 margin-left: -<?php echo absint( $loader_size / 2 ); ?>px;
@@ -748,17 +720,23 @@
748 720 margin-top: -<?php echo absint( $loader_size / 2 ); ?>px;
749 721 margin-left: -<?php echo absint( $loader_size / 2 ); ?>px;
750 722 width: <?php echo absint( $loader_size ); ?>px;
751 723 height: <?php echo absint( $loader_size ); ?>px;
752 - -webkit-animation: spin 2s linear infinite;
753 - -moz-animation: spin 2s linear infinite;
754 - -o-animation: spin 2s linear infinite;
755 - animation: spin 2s linear infinite;
724 + animation: spin 2s linear infinite;
756 725 }
757 726
727 +.with_frm_style .frm_submit.frm_flex {
728 + align-items: center;
729 + gap: 2%;
730 +}
731 +
732 +.with_frm_style .frm_submit.frm_flex button.frm_button_submit ~ .frm_prev_page {
733 + order: -1;
734 +}
735 +
758 736 <?php
759 737 foreach ( $styles as $style ) {
760 - include( dirname( __FILE__ ) . '/_single_theme.css.php' );
738 + include __DIR__ . '/_single_theme.css.php';
761 739 unset( $style );
762 740 }
763 741
764 742 // Set it again since it may have been overridden.
@@ -780,15 +758,12 @@
780 758
781 759 .with_frm_style a.frm_save_draft,
782 760 .with_frm_style a.frm_start_over{
783 761 <?php if ( ! empty( $defaults['font'] ) ) { ?>
784 - font-family:<?php echo FrmAppHelper::kses( $defaults['font'] ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>;
785 - font-family:var(--font);
762 + font-family: var(--font);
786 763 <?php } ?>
787 - font-size:<?php echo esc_html( $defaults['submit_font_size'] ); ?>;
788 - font-size:var(--submit-font-size);
789 - font-weight:<?php echo esc_html( $defaults['submit_weight'] ); ?>;
790 - font-weight:var(--submit-weight);
764 + font-size: var(--submit-font-size);
765 + font-weight: var(--submit-weight);
791 766 }
792 767
793 768 .horizontal_radio .frm_radio{
794 769 margin:0 5px 0 0;
@@ -795,9 +770,9 @@
795 770 }
796 771
797 772 .horizontal_radio .frm_checkbox{
798 773 margin:0;
799 - margin-right:5px;
774 + margin-right:12px;
800 775 }
801 776
802 777 .vertical_radio .frm_checkbox,
803 778 .vertical_radio .frm_radio,
@@ -812,15 +787,13 @@
812 787 padding-left: 0;
813 788 }
814 789
815 790 .with_frm_style .frm_radio{
816 - display:<?php echo esc_html( $defaults['radio_align'] . $important ); ?>;
817 - display:var(--radio-align)<?php echo esc_html( $important ); ?>;
791 + display: var(--radio-align)<?php echo esc_html( $important ); ?>;
818 792 }
819 793
820 794 .with_frm_style .frm_checkbox{
821 - display:<?php echo esc_html( $defaults['check_align'] . $important ); ?>;
822 - display:var(--check-align)<?php echo esc_html( $important ); ?>;
795 + display: var(--check-align)<?php echo esc_html( $important ); ?>;
823 796 }
824 797
825 798 .with_frm_style .vertical_radio .frm_checkbox,
826 799 .with_frm_style .vertical_radio .frm_radio,
@@ -825,8 +798,9 @@
825 798 .with_frm_style .vertical_radio .frm_checkbox,
826 799 .with_frm_style .vertical_radio .frm_radio,
827 800 .vertical_radio .frm_catlevel_1{
828 801 display:block<?php echo esc_html( $important ); ?>;
802 + margin-bottom: 10px;
829 803 }
830 804
831 805 .with_frm_style .horizontal_radio .frm_checkbox,
832 806 .with_frm_style .horizontal_radio .frm_radio,
@@ -834,40 +808,45 @@
834 808 display:inline-block<?php echo esc_html( $important ); ?>;
835 809 }
836 810
837 811 .with_frm_style .frm_checkbox label,
838 -.with_frm_style .frm_radio label{
839 - display: inline;
812 +.with_frm_style .frm_radio label {
813 + display: inline-block;
814 + vertical-align: middle;
840 815 white-space:normal;
841 816 }
842 817
818 +.with_frm_style .frm_checkbox label input[type=checkbox],
819 +.with_frm_style .frm_radio label input[type=radio] {
820 + margin-right: 4px;
821 +}
822 +
823 +.with_frm_style .frm_checkbox label:not(.frm-label-disabled),
824 +.with_frm_style .frm_radio label:not(.frm-label-disabled) {
825 + cursor: pointer;
826 +}
827 +
843 828 .with_frm_style .vertical_radio .frm_checkbox label,
844 829 .with_frm_style .vertical_radio .frm_radio label{
845 830 display: block;
846 - padding-left: 20px;
847 - text-indent: -20px;
831 + width: 100%;
848 832 }
849 833
850 834 .with_frm_style .frm_radio label,
851 -.with_frm_style .frm_checkbox label{
835 +.with_frm_style .frm_checkbox label {
852 836 <?php if ( ! empty( $defaults['font'] ) ) { ?>
853 - font-family:<?php echo FrmAppHelper::kses( $defaults['font'] ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>;
854 - font-family:var(--font);
837 + font-family: var(--font);
855 838 <?php } ?>
856 - font-size:<?php echo esc_html( $defaults['check_font_size'] . $important ); ?>;
857 - font-size:var(--check-font-size)<?php echo esc_html( $important ); ?>;
858 - color:<?php echo esc_html( $defaults['check_label_color'] . $important ); ?>;
859 - color:var(--check-label-color)<?php echo esc_html( $important ); ?>;
860 - font-weight:<?php echo esc_html( $defaults['check_weight'] . $important ); ?>;
861 - font-weight:var(--check-weight)<?php echo esc_html( $important ); ?>;
839 + font-size: var(--check-font-size)<?php echo esc_html( $important ); ?>;
840 + color: var(--check-label-color)<?php echo esc_html( $important ); ?>;
841 + font-weight: var(--check-weight)<?php echo esc_html( $important ); ?>;
862 842 line-height: 1.3;
863 843 }
864 844
865 845 .with_frm_style .frm_radio input[type=radio],
866 846 .with_frm_style .frm_checkbox input[type=checkbox] {
867 - font-size:<?php echo esc_html( $defaults['check_font_size'] . $important ); ?>;
868 - font-size:var(--check-font-size)<?php echo esc_html( $important ); ?>;
869 - position:static<?php echo esc_html( $important ); ?>;
847 + font-size: var(--check-font-size)<?php echo esc_html( $important ); ?>;
848 + position: static<?php echo esc_html( $important ); ?>;
870 849 }
871 850
872 851 .frm_file_container .frm_file_link,
873 852 .with_frm_style .frm_radio label .frm_file_container,
@@ -877,9 +856,9 @@
877 856 vertical-align:middle;
878 857 }
879 858
880 859 .with_frm_style .frm_radio input[type=radio]
881 -<?php if ( FrmAppHelper::pro_is_installed() ) : ?>
860 +<?php if ( $pro_is_installed ) : ?>
882 861 , .with_frm_style .frm_scale input[type=radio]
883 862 <?php endif; ?>
884 863 {
885 864 border-radius:50%;
@@ -884,62 +863,96 @@
884 863 {
885 864 border-radius:50%;
886 865 }
887 866
888 -.with_frm_style .frm_checkbox input[type=checkbox]{
889 - border-radius:0;
867 +.with_frm_style .frm_checkbox input[type=checkbox] {
868 + border-radius: calc(var(--border-radius) / 2) !important;
890 869 }
891 870
892 871 .with_frm_style .frm_radio input[type=radio],
893 -<?php if ( FrmAppHelper::pro_is_installed() ) : ?>
872 +<?php if ( $pro_is_installed ) : ?>
894 873 .with_frm_style .frm_scale input[type=radio],
895 874 <?php endif; ?>
896 875 .with_frm_style .frm_checkbox input[type=checkbox]{
897 - -webkit-appearance: none;
898 876 appearance: none;
899 877 background-color: var(--bg-color);
900 878 flex: none;
901 879 display:inline-block !important;
902 - margin: 0 5px 0 0;
880 + width: 16px !important;
881 + min-width: 16px !important;
882 + height: 16px !important;
903 883 color: var(--border-color);
904 - width: 18px;
905 - min-width: 18px;
906 - height: 18px;
907 884 border: 1px solid currentColor;
908 885 border-color: var(--border-color);
909 886 vertical-align: middle;
910 887 position: initial; /* override Bootstrap */
911 888 padding: 0;
889 + margin: 0;
912 890 }
913 891
914 -.with_frm_style .frm_radio input[type=radio]:before,
915 -<?php if ( FrmAppHelper::pro_is_installed() ) : ?>
916 -.with_frm_style .frm_scale input[type=radio]:before,
892 +.frm_forms.with_frm_style .frm_fields_container .frm_radio input[type=radio]:not([disabled]):checked,
893 +<?php if ( $pro_is_installed ) : ?>
894 +.frm_forms.with_frm_style .frm_fields_container .frm_scale input[type=radio]:not([disabled]):checked,
917 895 <?php endif; ?>
918 -.with_frm_style .frm_checkbox input[type=checkbox]:before {
896 +.frm_forms.with_frm_style .frm_fields_container .frm_checkbox input[type=checkbox]:not([disabled]):checked {
897 + border-color: var(--border-color-active) !important;
898 +}
899 +
900 +.frm_forms.with_frm_style .frm_fields_container .frm_checkbox input[type=checkbox]:not([disabled]):checked {
901 + background-color: var(--border-color-active) !important;
902 +}
903 +
904 +.with_frm_style .frm_radio input[type=radio][disabled]:checked,
905 +<?php if ( $pro_is_installed ) : ?>
906 +.with_frm_style .frm_scale input[type=radio][disabled]:checked,
907 +<?php endif; ?>
908 +.with_frm_style .frm_checkbox input[type=checkbox][disabled]:checked {
909 + border-color: var(--border-color) !important; /* Override Style Preview */
910 +}
911 +
912 +.with_frm_style .frm_checkbox input[type=checkbox][disabled]:checked {
913 + background-color: var(--border-color) !important;
914 +}
915 +
916 +.with_frm_style .frm_radio input[type=radio]:checked:before,
917 +<?php if ( $pro_is_installed ) { ?>
918 +.with_frm_style .frm_scale input[type=radio]:checked:before,
919 +<?php } ?>
920 +.with_frm_style .frm_checkbox input[type=checkbox]:checked:before {
921 + position: static !important; /* Override Style Preview */
919 922 content: '';
920 - width: 12px;
921 - height: 12px;
922 - border-radius: 50%;
923 - transform: scale(0);
924 - transition: 120ms transform ease-in-out;
925 - box-shadow: inset 10px 10px var(--text-color);
926 923 display: block;
927 - margin: 2px 0 0 2px;
928 924 }
929 925
930 -.with_frm_style .frm_checkbox input[type=checkbox]:before{
931 - clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
932 - border-radius: 0;
926 +.frm_forms.with_frm_style .frm_checkbox input[type=checkbox]:before {
927 + width: 100% !important;
928 + height: 100% !important;
929 + background-image: url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.6667 1.5L4.25001 7.91667L1.33334 5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") !important;
930 + background-size: 9px !important;
931 + background-repeat: no-repeat !important;
932 + background-position: center !important;
933 + margin: 0;
933 934 }
934 935
935 -.with_frm_style .frm_radio input[type=radio]:checked:before,
936 -.with_frm_style .frm_checkbox input[type=checkbox]:checked:before {
937 - transform: scale(1);
936 +<?php if ( $pro_is_installed ) { ?>
937 +.with_frm_style .frm_scale input[type=radio]:before,
938 +<?php } ?>
939 +.with_frm_style .frm_radio input[type=radio]:before {
940 + width: 8px;
941 + height: 8px;
942 + border-radius: 50%;
943 + background-color: var(--border-color-active);
944 + margin: 3px;
938 945 }
939 946
947 +<?php if ( $pro_is_installed ) { ?>
948 +.with_frm_style .frm_scale input[type=radio][disabled]:before,
949 +<?php } ?>
950 +.with_frm_style .frm_radio input[type=radio][disabled]:before {
951 + background-color: var(--border-color);
952 +}
953 +
940 954 .with_frm_style :invalid,
941 -.with_frm_style :-moz-submit-invalid,
942 955 .with_frm_style :-moz-ui-invalid{
943 956 box-shadow:none;
944 957 }
945 958
@@ -955,33 +968,29 @@
955 968
956 969 .with_frm_style .frm_error_style,
957 970 .with_frm_style .frm_message,
958 971 .frm_success_style{
959 - -moz-border-radius:4px;
960 - -webkit-border-radius:4px;
961 972 border-radius:4px;
962 973 padding:15px;
963 974 }
964 975
965 -.with_frm_style .frm_message p{
966 - margin-bottom:5px;
967 - color:<?php echo esc_html( $defaults['success_text_color'] ); ?>;
968 - color:var(--success-text-color)<?php echo esc_html( $important ); ?>;
976 +.with_frm_style .frm_message p {
977 + color: var(--success-text-color)<?php echo esc_html( $important ); ?>;
978 + margin-bottom: 0;
969 979 }
970 980
981 +.with_frm_style .frm_message > p:first-of-type {
982 + margin-top: 0;
983 +}
984 +
971 985 .with_frm_style .frm_message,
972 -.frm_success_style{
973 - margin:5px 0 15px;
974 - border:1px solid <?php echo esc_html( $defaults['success_border_color'] ); ?>;
975 - border-color:var(--success-border-color);
976 - background-color:<?php echo esc_html( $defaults['success_bg_color'] ); ?>;
977 - background-color:var(--success-bg-color);
978 - color:<?php echo esc_html( $defaults['success_text_color'] ); ?>;
979 - color:var(--success-text-color)<?php echo esc_html( $important ); ?>;
980 - border-radius:<?php echo esc_html( $defaults['border_radius'] ); ?>;
981 - border-radius:var(--border-radius);
982 - font-size:<?php echo esc_html( $defaults['success_font_size'] ); ?>;
983 - font-size:var(--success-font-size)<?php echo esc_html( $important ); ?>;
986 +.frm_success_style {
987 + margin: 5px 0 15px;
988 + border: 1px solid var(--success-border-color);
989 + background-color: var(--success-bg-color);
990 + color: var(--success-text-color)<?php echo esc_html( $important ); ?>;
991 + border-radius: var(--border-radius);
992 + font-size: var(--success-font-size)<?php echo esc_html( $important ); ?>;
984 993 }
985 994
986 995 .with_frm_style .frm_plain_success .frm_message {
987 996 background-color: transparent;
@@ -1017,10 +1026,9 @@
1017 1026 padding:5px;
1018 1027 border-width:1px;
1019 1028 border-style:solid;
1020 1029 <?php if ( ! empty( $defaults['border_color'] ) ) { ?>
1021 - border-color:<?php echo esc_html( $defaults['border_color'] ); ?>;
1022 - border-color:var(--border-color);
1030 + border-color: var(--border-color);
1023 1031 <?php } ?>
1024 1032 border-top:none;
1025 1033 border-left:none;
1026 1034 border-right:none;
@@ -1035,10 +1043,9 @@
1035 1043 }
1036 1044
1037 1045 <?php if ( ! empty( $defaults['border_color'] ) ) { ?>
1038 1046 .with_frm_style .frm-alt-table{
1039 - border-color:<?php echo esc_html( $defaults['border_color'] ); ?>;
1040 - border-color:var(--border-color);
1047 + border-color: var(--border-color);
1041 1048 }
1042 1049 <?php } ?>
1043 1050
1044 1051 .frm-alt-table th {
@@ -1062,11 +1069,11 @@
1062 1069 background-color:<?php echo esc_html( FrmStylesHelper::adjust_brightness( $defaults['border_color'], 45 ) ); ?>;
1063 1070 }
1064 1071
1065 1072 table.form_results.with_frm_style{
1066 - border:<?php echo esc_html( $defaults['field_border_width'] ); ?> solid <?php echo esc_html( $defaults['border_color'] . $important ); ?>;
1067 - border-width:var(--field-border-width)<?php echo esc_html( $important ); ?>;
1068 - border-color:var(--border-color)<?php echo esc_html( $important ); ?>;
1073 + border-style: solid;
1074 + border-width: var(--field-border-width)<?php echo esc_html( $important ); ?>;
1075 + border-color: var(--border-color)<?php echo esc_html( $important ); ?>;
1069 1076 }
1070 1077
1071 1078 table.form_results.with_frm_style tr td{
1072 1079 text-align:left;
@@ -1071,15 +1078,14 @@
1071 1078 table.form_results.with_frm_style tr td{
1072 1079 text-align:left;
1073 1080 padding:7px 9px;
1074 1081 <?php if ( ! empty( $defaults['text_color'] ) ) { ?>
1075 - color:<?php echo esc_html( $defaults['text_color'] ); ?>;
1076 - color:var(--text-color)<?php echo esc_html( $important ); ?>;
1082 + color: var(--text-color)<?php echo esc_html( $important ); ?>;
1077 1083 <?php } ?>
1078 1084 <?php if ( ! empty( $defaults['border_color'] ) ) { ?>
1079 - border-top:1px solid <?php echo esc_html( $defaults['border_color'] ); ?>;
1080 - border-top-width:var(--field-border-width)<?php echo esc_html( $important ); ?>;
1081 - border-top-color:var(--border-color)<?php echo esc_html( $important ); ?>;
1085 + border-top-style: solid;
1086 + border-top-width: var(--field-border-width)<?php echo esc_html( $important ); ?>;
1087 + border-top-color: var(--border-color)<?php echo esc_html( $important ); ?>;
1082 1088 <?php } ?>
1083 1089 }
1084 1090
1085 1091 table.form_results.with_frm_style tr.frm_even,
@@ -1089,11 +1095,10 @@
1089 1095 }
1090 1096
1091 1097 <?php if ( ! empty( $defaults['bg_color'] ) ) { ?>
1092 1098 table.form_results.with_frm_style tr.frm_odd,
1093 -.frm-grid .frm_odd{
1094 - background-color:<?php echo esc_html( $defaults['bg_color'] ); ?>;
1095 - background-color:var(--bg-color)<?php echo esc_html( $important ); ?>;
1099 +.frm-grid .frm_odd {
1100 + background-color: var(--bg-color)<?php echo esc_html( $important ); ?>;
1096 1101 }
1097 1102 <?php } ?>
1098 1103
1099 1104 <?php if ( ! empty( $defaults['border_color'] ) ) { ?>
@@ -1175,26 +1180,25 @@
1175 1180 animation:2s linear 0s normal none infinite progress-bar-stripes;
1176 1181 }
1177 1182
1178 1183 <?php if ( ! empty( $defaults['bg_color'] ) ) { ?>
1179 -#frm_loading .progress-striped .progress-bar{
1184 +#frm_loading .progress-striped .progress-bar {
1180 1185 <?php if ( ! empty( $defaults['border_color'] ) ) { ?>
1181 - background-image:linear-gradient(45deg, <?php echo esc_html( $defaults['border_color'] ); ?> 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, <?php echo esc_html( $defaults['border_color'] ); ?> 50%, <?php echo esc_html( $defaults['border_color'] ); ?> 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));
1186 + background-image: linear-gradient(45deg, var(--border-color) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, var(--border-color) 50%, var(--border-color) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));
1182 1187 <?php } ?>
1183 1188 background-size:40px 40px;
1184 1189 }
1185 1190 <?php } ?>
1186 1191
1187 -#frm_loading .progress-bar{
1188 - background-color:<?php echo esc_html( $defaults['bg_color'] ); ?>;
1189 - background-color:var(--bg-color);
1190 - box-shadow:0 -1px 0 rgba(0, 0, 0, 0.15) inset;
1191 - float:left;
1192 - height:100%;
1193 - line-height:20px;
1194 - text-align:center;
1195 - transition:width 0.6s ease 0s;
1196 - width:100%;
1192 +#frm_loading .progress-bar {
1193 + background-color: var(--bg-color);
1194 + box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.15) inset;
1195 + float: left;
1196 + height: 100%;
1197 + line-height: 20px;
1198 + text-align: center;
1199 + transition: width 0.6s ease 0s;
1200 + width: 100%;
1197 1201 }
1198 1202
1199 1203 .frm_image_from_url{
1200 1204 height:50px;
@@ -1211,9 +1215,9 @@
1211 1215 background-repeat: no-repeat;
1212 1216 color: transparent !important;
1213 1217 }
1214 1218
1215 -<?php readfile( dirname( __FILE__ ) . '/frm_grids.css' ); ?>
1219 +<?php readfile( __DIR__ . '/frm_grids.css' ); ?>
1216 1220
1217 1221 .frm_conf_field.frm_left_container .frm_primary_label{
1218 1222 display:none;
1219 1223 }
@@ -1220,10 +1224,8 @@
1220 1224
1221 1225 .wp-editor-wrap *,
1222 1226 .wp-editor-wrap *:after,
1223 1227 .wp-editor-wrap *:before{
1224 - -webkit-box-sizing:content-box;
1225 - -moz-box-sizing:content-box;
1226 1228 box-sizing:content-box;
1227 1229 }
1228 1230
1229 1231 .with_frm_style .frm_grid,
@@ -1234,10 +1236,9 @@
1234 1236 padding:5px;
1235 1237 border-width:1px;
1236 1238 border-style:solid;
1237 1239 <?php if ( ! empty( $defaults['border_color'] ) ) { ?>
1238 - border-color:<?php echo esc_html( $defaults['border_color'] ); ?>;
1239 - border-color:var(--border-color)<?php echo esc_html( $important ); ?>;
1240 + border-color: var(--border-color)<?php echo esc_html( $important ); ?>;
1240 1241 <?php } ?>
1241 1242 border-left:none;
1242 1243 border-right:none;
1243 1244 }
@@ -1272,18 +1273,16 @@
1272 1273 }
1273 1274
1274 1275 <?php if ( ! empty( $defaults['bg_color'] ) ) { ?>
1275 1276 .frm_grid_first,
1276 -.frm_grid_odd{
1277 - background-color:<?php echo esc_html( $defaults['bg_color'] ); ?>;
1278 - background-color:var(--bg-color);
1277 +.frm_grid_odd {
1278 + background-color: var(--bg-color);
1279 1279 }
1280 1280 <?php } ?>
1281 1281
1282 1282 <?php if ( ! empty( $defaults['bg_color_active'] ) ) { ?>
1283 -.frm_grid{
1284 - background-color:<?php echo esc_html( $defaults['bg_color_active'] . $important ); ?>;
1285 - background-color:var(--bg-color-active)<?php echo esc_html( $important ); ?>;
1283 +.frm_grid {
1284 + background-color: var(--bg-color-active)<?php echo esc_html( $important ); ?>;
1286 1285 }
1287 1286 <?php } ?>
1288 1287
1289 1288 .with_frm_style .frm_grid.frm_blank_field,
@@ -1288,12 +1287,10 @@
1288 1287
1289 1288 .with_frm_style .frm_grid.frm_blank_field,
1290 1289 .with_frm_style .frm_grid_first.frm_blank_field,
1291 1290 .with_frm_style .frm_grid_odd.frm_blank_field{
1292 - background-color:<?php echo esc_html( $defaults['error_bg'] . $important ); ?>;
1293 1291 background-color:var(--error-bg)<?php echo esc_html( $important ); ?>;
1294 - border-color:<?php echo esc_html( $defaults['error_border'] ); ?>;
1295 - border-color:var(--error-bg);
1292 + border-color: var(--error-border);
1296 1293 }
1297 1294
1298 1295 .frm_grid .frm_primary_label,
1299 1296 .frm_grid_first .frm_primary_label,
@@ -1315,9 +1312,10 @@
1315 1312 .frm_grid_odd .frm_radio label,
1316 1313 .frm_grid_first .frm_checkbox label,
1317 1314 .frm_grid .frm_checkbox label,
1318 1315 .frm_grid_odd .frm_checkbox label{
1319 - visibility:hidden;
1316 + color:transparent;
1317 + text-indent: -9999px;
1320 1318 white-space:nowrap;
1321 1319 text-align:left;
1322 1320 }
1323 1321
@@ -1443,8 +1441,18 @@
1443 1441 .frm_form_field.frm_left_container .frm_opt_container{
1444 1442 padding-top:4px;
1445 1443 }
1446 1444
1445 +.with_frm_style .frm_left_container > select.auto_width,
1446 +.with_frm_style .frm_right_container > select.auto_width {
1447 + width: max-content<?php echo esc_html( $important ); ?>;
1448 +}
1449 +
1450 +.with_frm_style .frm_right_container > .frm_primary_label,
1451 +.with_frm_style .frm_right_container > select.auto_width {
1452 + margin-left: auto<?php echo esc_html( $important ); ?>;
1453 +}
1454 +
1447 1455 .with_frm_style .frm_inline_container.frm_grid_first .frm_primary_label,
1448 1456 .with_frm_style .frm_inline_container.frm_grid .frm_primary_label,
1449 1457 .with_frm_style .frm_inline_container.frm_grid_odd .frm_primary_label,
1450 1458 .with_frm_style .frm_inline_container.frm_grid_first .frm_opt_container,
@@ -1479,11 +1487,9 @@
1479 1487 grid-column-end: span 1;
1480 1488 }
1481 1489
1482 1490 .frm_form_field .frm_checkbox,
1483 -.frm_form_field .frm_checkbox + .frm_checkbox,
1484 -.frm_form_field .frm_radio,
1485 -.frm_form_field .frm_radio + .frm_radio{
1491 +.frm_form_field .frm_radio {
1486 1492 margin-top: 0;
1487 1493 margin-bottom: 0;
1488 1494 }
1489 1495
@@ -1492,36 +1498,24 @@
1492 1498 overflow:auto;
1493 1499 }
1494 1500
1495 1501 .frm_html_container.frm_scroll_box,
1496 -.frm_form_field.frm_html_scroll_box{
1497 - height:100px;
1498 - overflow:auto;
1499 - background-color:<?php echo esc_html( $defaults['bg_color'] ); ?>;
1500 - background-color:var(--bg-color);
1501 - border-color:<?php echo esc_html( $defaults['border_color'] ); ?>;
1502 - border-color:var(--border-color);
1503 - border-width:<?php echo esc_html( $defaults['field_border_width'] ); ?>;
1504 - border-width:var(--field-border-width);
1505 - border-style:<?php echo esc_html( $defaults['field_border_style'] ); ?>;
1506 - border-style:var(--field-border-style);
1507 - -moz-border-radius:<?php echo esc_html( $defaults['border_radius'] ); ?>;
1508 - -webkit-border-radius:<?php echo esc_html( $defaults['border_radius'] ); ?>;
1509 - border-radius:<?php echo esc_html( $defaults['border_radius'] ); ?>;
1510 - border-radius:var(--border-radius);
1511 - width:<?php echo esc_html( $defaults['field_width'] ); ?>;
1512 - width:var(--field-width);
1513 - max-width:100%;
1514 - font-size:<?php echo esc_html( $defaults['field_font_size'] ); ?>;
1515 - font-size:var(--field-font-size);
1516 - padding:<?php echo esc_html( $defaults['field_pad'] ); ?>;
1517 - padding:var(--field-pad);
1518 - -webkit-box-sizing:border-box;
1519 - -moz-box-sizing:border-box;
1520 - box-sizing:border-box;
1521 - outline:none<?php echo esc_html( $important ); ?>;
1522 - font-weight:normal;
1523 - box-shadow:var(--box-shadow);
1502 +.frm_form_field.frm_html_scroll_box {
1503 + height: 100px;
1504 + overflow: auto;
1505 + background-color: var(--bg-color);
1506 + border-color: var(--border-color);
1507 + border-width: var(--field-border-width);
1508 + border-style: var(--field-border-style);
1509 + border-radius: var(--border-radius);
1510 + width: var(--field-width);
1511 + max-width: 100%;
1512 + font-size: var(--field-font-size);
1513 + padding: var(--field-pad);
1514 + box-sizing: border-box;
1515 + outline: none<?php echo esc_html( $important ); ?>;
1516 + font-weight: normal;
1517 + box-shadow: var(--box-shadow);
1524 1518 }
1525 1519
1526 1520 .frm_form_field.frm_total_big input,
1527 1521 .frm_form_field.frm_total_big textarea,
@@ -1530,10 +1524,8 @@
1530 1524 opacity:1;
1531 1525 background-color:transparent !important;
1532 1526 border:none !important;
1533 1527 font-weight:bold;
1534 - -moz-box-shadow:none;
1535 - -webkit-box-shadow:none;
1536 1528 width:auto !important;
1537 1529 height:auto !important;
1538 1530 box-shadow:none !important;
1539 1531 display:inline;
@@ -1553,10 +1545,8 @@
1553 1545 .frm_form_field.frm_total input:focus,
1554 1546 .frm_form_field.frm_total textarea:focus{
1555 1547 background-color:transparent;
1556 1548 border:none;
1557 - -moz-box-shadow:none;
1558 - -webkit-box-shadow:none;
1559 1549 box-shadow:none;
1560 1550 }
1561 1551
1562 1552 .frm_form_field.frm_label_justify .frm_primary_label{
@@ -1581,13 +1571,8 @@
1581 1571 .frm_clearfix{
1582 1572 display:block;
1583 1573 }
1584 1574
1585 -.with_frm_style .frm_repeat_sec .frm_form_field.frm_repeat_buttons .frm_icon_font::before {
1586 - color:<?php echo esc_html( $defaults['repeat_icon_color'] . $important ); ?>;
1587 - color:var(--repeat-icon-color)<?php echo esc_html( $important ); ?>;
1588 -}
1589 -
1590 1575 .with_frm_style .frm_combo_inputs_container > .frm_form_subfield-first,
1591 1576 .with_frm_style .frm_combo_inputs_container > .frm_form_subfield-middle,
1592 1577 .with_frm_style .frm_combo_inputs_container > .frm_form_subfield-last {
1593 1578 margin-bottom: 0 !important;
@@ -1592,11 +1577,10 @@
1592 1577 .with_frm_style .frm_combo_inputs_container > .frm_form_subfield-last {
1593 1578 margin-bottom: 0 !important;
1594 1579 }
1595 1580
1581 +
1596 1582 <?php
1597 -FrmStylesHelper::maybe_include_font_icon_css();
1598 -
1599 1583 /**
1600 1584 * Call action so other plugins can add additional CSS.
1601 1585 *
1602 1586 * @param array $args {
@@ -1650,9 +1634,8 @@
1650 1634 max-width:302px;
1651 1635 border-right:1px solid #d3d3d3;
1652 1636 border-radius:4px;
1653 1637 box-shadow:2px 0px 4px -1px rgba(0,0,0,.08);
1654 - -moz-box-shadow:2px 0px 4px -1px rgba(0,0,0,.08);
1655 1638 }
1656 1639
1657 1640 .with_frm_style .g-recaptcha iframe,
1658 1641 .with_frm_style .frm-g-recaptcha iframe{
@@ -1657,8 +1640,15 @@
1657 1640 .with_frm_style .g-recaptcha iframe,
1658 1641 .with_frm_style .frm-g-recaptcha iframe{
1659 1642 width:100%;
1660 1643 }
1644 +}
1645 +
1646 +.frm-card-element .sq-card-wrapper .sq-card-message {
1647 + margin-bottom: 0;
1648 +}
1649 +.frm-card-errors:empty {
1650 + margin: 0;
1661 1651 }
1662 1652 <?php
1663 1653
1664 1654 echo strip_tags( FrmStylesController::get_custom_css() ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped