PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.22.3
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.22.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
← All changes | css/_single_theme.css.php +63 -105 6.356.22.3 View file →
@@ -5,15 +5,16 @@
5 5
6 6 $settings = FrmStylesHelper::get_settings_for_output( $style );
7 7 extract( $settings ); // phpcs:ignore WordPress.PHP.DontExtract
8 8
9 -$is_loaded_via_ajax = $is_loaded_via_ajax ?? false;
9 +$is_loaded_via_ajax = isset( $is_loaded_via_ajax ) ? $is_loaded_via_ajax : false;
10 10 FrmStylesPreviewHelper::get_additional_preview_style( $settings, $is_loaded_via_ajax );
11 11
12 -$important = ! empty( $important_style ) ? ' !important' : '';
13 -$submit_bg_img = FrmStylesHelper::get_submit_image_bg_url( $settings );
14 -$use_chosen_js = $use_chosen_js ?? FrmStylesHelper::use_chosen_js();
15 -$pro_is_installed = $pro_is_installed ?? FrmAppHelper::pro_is_installed();
12 +$important = empty( $important_style ) ? '' : ' !important';
13 +
14 +$submit_bg_img = FrmStylesHelper::get_submit_image_bg_url( $settings );
15 +$use_chosen_js = FrmStylesHelper::use_chosen_js();
16 +
16 17 ?>
17 18 .<?php echo esc_html( $style_class ); ?>{
18 19 <?php FrmStylesHelper::output_vars( $settings, $defaults ); ?>
19 20 }
@@ -18,10 +19,10 @@
18 19 <?php FrmStylesHelper::output_vars( $settings, $defaults ); ?>
19 20 }
20 21
21 22 .frm_forms.<?php echo esc_html( $style_class ); ?>{
22 - max-width:var(--form-width)<?php echo esc_html( $important ); ?>;
23 - direction:var(--direction)<?php echo esc_html( $important ); ?>;
23 + max-width:<?php echo esc_html( $form_width . $important ); ?>;
24 + direction:<?php echo esc_html( $direction . $important ); ?>;
24 25 <?php if ( 'rtl' === $direction ) { ?>
25 26 unicode-bidi:embed;
26 27 <?php } ?>
27 28 <?php if ( $center_form ) { ?>
@@ -36,17 +37,15 @@
36 37 <?php } ?>
37 38
38 39 <?php if ( ! empty( $field_margin ) ) { ?>
39 40 .<?php echo esc_html( $style_class ); ?> .form-field{
40 - margin-bottom:var(--field-margin)<?php echo esc_html( $important ); ?>;
41 + margin-bottom:<?php echo esc_html( $field_margin . $important ); ?>;
41 42 }
42 43 <?php } ?>
43 44
44 -<?php if ( $pro_is_installed ) { ?>
45 45 .<?php echo esc_html( $style_class ); ?> .form-field.frm_section_heading{
46 46 margin-bottom:0<?php echo esc_html( $important ); ?>;
47 47 }
48 -<?php } ?>
49 48
50 49 .<?php echo esc_html( $style_class ); ?> p.description,
51 50 .<?php echo esc_html( $style_class ); ?> div.description,
52 51 .<?php echo esc_html( $style_class ); ?> div.frm_description,
@@ -108,8 +107,12 @@
108 107 .<?php echo esc_html( $style_class ); ?> .frm_form_field.frm_right_container{
109 108 grid-template-columns: auto <?php echo esc_html( $width ); ?>;
110 109 }
111 110
111 +.frm_form_field.frm_right_container{
112 + grid-template-columns: auto 25%;
113 +}
114 +
112 115 .<?php echo esc_html( $style_class ); ?> .frm_inline_container.frm_dynamic_select_container .frm_data_container,
113 116 .<?php echo esc_html( $style_class ); ?> .frm_inline_container.frm_dynamic_select_container .frm_opt_container{
114 117 display:inline<?php echo esc_html( $important ); ?>;
115 118 }
@@ -115,9 +118,9 @@
115 118 }
116 119
117 120 .<?php echo esc_html( $style_class ); ?> .frm_pos_right{
118 121 display:inline<?php echo esc_html( $important ); ?>;
119 - width:var(--width)<?php echo esc_html( $important ); ?>;
122 + width:<?php echo esc_html( $width . $important ); ?>;
120 123 }
121 124
122 125 .<?php echo esc_html( $style_class ); ?> .frm_none_container .frm_primary_label,
123 126 .<?php echo esc_html( $style_class ); ?> .frm_pos_none{
@@ -123,9 +126,9 @@
123 126 .<?php echo esc_html( $style_class ); ?> .frm_pos_none{
124 127 display:none<?php echo esc_html( $important ); ?>;
125 128 }
126 129
127 -<?php if ( $pro_is_installed ) : ?>
130 +<?php if ( FrmAppHelper::pro_is_installed() ) : ?>
128 131 .<?php echo esc_html( $style_class ); ?> .frm_scale label{
129 132 <?php if ( ! empty( $check_weight ) ) { ?>
130 133 font-weight:<?php echo esc_html( $check_weight . $important ); ?>;
131 134 <?php } ?>
@@ -140,11 +143,12 @@
140 143 <?php } ?>
141 144 }
142 145 <?php endif; ?>
143 146
147 +/* These do not work if they are combined */
144 148 .<?php echo esc_html( $style_class ); ?> input::placeholder,
145 149 .<?php echo esc_html( $style_class ); ?> textarea::placeholder{
146 - color:var(--text-color-disabled)<?php echo esc_html( $important ); ?>;
150 + color: <?php echo esc_html( $text_color_disabled . $important ); ?>;
147 151 }
148 152
149 153 .<?php echo esc_html( $style_class ); ?> .frm_default,
150 154 .<?php echo esc_html( $style_class ); ?> input.frm_default,
@@ -154,9 +158,9 @@
154 158 .<?php echo esc_html( $style_class ); ?> .chosen-container-multi .chosen-choices li.search-field .default,
155 159 .<?php echo esc_html( $style_class ); ?> .chosen-container-single .chosen-default,
156 160 <?php } ?>
157 161 .<?php echo esc_html( $style_class ); ?> .placeholder {
158 - color:var(--text-color-disabled)<?php echo esc_html( $important ); ?>;
162 + color: <?php echo esc_html( $text_color_disabled . $important ); ?>;
159 163 }
160 164
161 165 .<?php echo esc_html( $style_class ); ?> .form-field input:not([type=file]):not([type=range]):not([readonly]):focus,
162 166 .<?php echo esc_html( $style_class ); ?> select:focus,
@@ -173,12 +177,12 @@
173 177 .<?php echo esc_html( $style_class ); ?> .chosen-container-single.chosen-container-active .chosen-single,
174 178 .<?php echo esc_html( $style_class ); ?> .chosen-container-active .chosen-choices,
175 179 <?php } ?>
176 180 .<?php echo esc_html( $style_class ); ?> .frm_focus_field .frm-card-element.StripeElement {
177 - background-color:var(--bg-color-active)<?php echo esc_html( $important ); ?>;
178 - border-color:var(--border-color-active)<?php echo esc_html( $important ); ?>;
179 - color:var(--text-color);
180 - <?php if ( ! empty( $remove_box_shadow_active ) ) { ?>
181 + background-color:<?php echo esc_html( $bg_color_active . $important ); ?>;
182 + border-color:<?php echo esc_html( $border_color_active . $important ); ?>;
183 + color: var(--text-color);
184 + <?php if ( isset( $remove_box_shadow_active ) && $remove_box_shadow_active ) { ?>
181 185 box-shadow:none;
182 186 outline: none;
183 187 <?php } else { ?>
184 188 box-shadow:0px 0px 5px 0px rgba(<?php echo esc_html( FrmStylesHelper::hex2rgb( $border_color_active ) ); ?>, 0.6);
@@ -184,26 +188,16 @@
184 188 box-shadow:0px 0px 5px 0px rgba(<?php echo esc_html( FrmStylesHelper::hex2rgb( $border_color_active ) ); ?>, 0.6);
185 189 <?php } ?>
186 190 }
187 191
188 -.<?php echo esc_html( $style_class ); ?> input:-webkit-autofill {
189 - <?php if ( ! empty( $remove_box_shadow_active ) ) { ?>
190 - -webkit-box-shadow: none<?php echo esc_html( $important ); ?>;
191 - <?php } else { ?>
192 - -webkit-box-shadow: 0px 0px 5px 0px rgba(<?php echo esc_html( FrmStylesHelper::hex2rgb( $border_color_active ) ); ?>, 0.6);
193 - <?php } ?>
194 -}
195 -
196 192 <?php if ( ! $submit_style ) { ?>
197 - <?php if ( $pro_is_installed ) { ?>
198 193 .<?php echo esc_html( $style_class ); ?> .frm_compact .frm_dropzone.dz-clickable .dz-message,
199 -.<?php echo esc_html( $style_class ); ?> .frm-edit-page-btn,
200 - <?php } ?>
201 194 .<?php echo esc_html( $style_class ); ?> input[type=submit],
202 195 .<?php echo esc_html( $style_class ); ?> .frm_submit input[type=button],
203 196 .<?php echo esc_html( $style_class ); ?> .frm_submit button,
204 -.frm_form_submit_style {
205 - width:<?php echo esc_html( ( $submit_width == '' ? 'auto' : $submit_width ) . $important ); // phpcs:ignore Universal.Operators.StrictComparisons ?>;
197 +.frm_form_submit_style,
198 +.<?php echo esc_html( $style_class ); ?> .frm-edit-page-btn {
199 + width:<?php echo esc_html( ( $submit_width == '' ? 'auto' : $submit_width ) . $important ); ?>;
206 200 <?php if ( ! empty( $font ) ) { ?>
207 201 font-family:<?php FrmAppHelper::kses_echo( $font ); ?>;
208 202 <?php } ?>
209 203 font-size:<?php echo esc_html( $submit_font_size . $important ); ?>;
@@ -212,10 +206,9 @@
212 206 text-align:center;
213 207 background:
214 208 <?php
215 209 echo esc_html( $submit_bg_color );
216 -
217 - if ( $submit_bg_img ) {
210 + if ( ! empty( $submit_bg_img ) ) {
218 211 echo esc_html( ' url(' . $submit_bg_img . ')' );
219 212 }
220 213 echo esc_html( $important );
221 214 ?>
@@ -237,9 +230,9 @@
237 230 <?php } ?>
238 231 margin:<?php echo esc_html( $submit_margin ); ?>;
239 232 <?php
240 233 // For reverse compatibility... But allow "10px 10px".
241 - if ( ! str_contains( trim( $submit_margin ), ' ' ) ) {
234 + if ( strpos( trim( $submit_margin ), ' ' ) === false ) {
242 235 ?>
243 236 margin-left:0;
244 237 margin-right:0;
245 238 <?php } ?>
@@ -245,24 +238,20 @@
245 238 <?php } ?>
246 239 vertical-align:middle;
247 240 }
248 241
249 - <?php if ( $pro_is_installed ) { ?>
250 242 .<?php echo esc_html( $style_class ); ?> .frm_compact .frm_dropzone.dz-clickable .dz-message{
251 243 margin:0;
252 244 }
253 - <?php } ?>
254 245
255 - <?php if ( ! $submit_bg_img ) { ?>
256 - <?php if ( $pro_is_installed ) { ?>
246 + <?php if ( empty( $submit_bg_img ) ) { ?>
257 247 .<?php echo esc_html( $style_class ); ?> .frm-edit-page-btn:hover,
258 - <?php } ?>
259 248 .<?php echo esc_html( $style_class ); ?> input[type=submit]:hover,
260 249 .<?php echo esc_html( $style_class ); ?> .frm_submit input[type=button]:hover,
261 250 .<?php echo esc_html( $style_class ); ?> .frm_submit button:hover{
262 - background:var(--submit-hover-bg-color)<?php echo esc_html( $important ); ?>;
263 - border-color:var(--submit-hover-border-color)<?php echo esc_html( $important ); ?>;
264 - color:var(--submit-hover-color)<?php echo esc_html( $important ); ?>;
251 + background: <?php echo esc_html( $submit_hover_bg_color . $important ); ?>;
252 + border-color: <?php echo esc_html( $submit_hover_border_color . $important ); ?>;
253 + color: <?php echo esc_html( $submit_hover_color . $important ); ?>;
265 254 }
266 255
267 256 .<?php echo esc_html( $style_class ); ?>.frm_center_submit .frm_submit .frm_ajax_loading{
268 257 margin-bottom:<?php echo esc_html( FrmStylesHelper::get_bottom_value( $submit_margin ) ); ?>;
@@ -267,11 +256,9 @@
267 256 .<?php echo esc_html( $style_class ); ?>.frm_center_submit .frm_submit .frm_ajax_loading{
268 257 margin-bottom:<?php echo esc_html( FrmStylesHelper::get_bottom_value( $submit_margin ) ); ?>;
269 258 }
270 259
271 - <?php if ( $pro_is_installed ) { ?>
272 260 .<?php echo esc_html( $style_class ); ?> .frm-edit-page-btn:focus,
273 - <?php } ?>
274 261 .<?php echo esc_html( $style_class ); ?> input[type=submit]:focus,
275 262 .<?php echo esc_html( $style_class ); ?> .frm_submit input[type=button]:focus,
276 263 .<?php echo esc_html( $style_class ); ?> .frm_submit button:focus,
277 264 .<?php echo esc_html( $style_class ); ?> input[type=submit]:active,
@@ -276,48 +263,38 @@
276 263 .<?php echo esc_html( $style_class ); ?> .frm_submit button:focus,
277 264 .<?php echo esc_html( $style_class ); ?> input[type=submit]:active,
278 265 .<?php echo esc_html( $style_class ); ?> .frm_submit input[type=button]:active,
279 266 .<?php echo esc_html( $style_class ); ?> .frm_submit button:active{
280 - background:var(--submit-active-bg-color)<?php echo esc_html( $important ); ?>;
281 - border-color:var(--submit-active-border-color)<?php echo esc_html( $important ); ?>;
282 - color:var(--submit-active-color)<?php echo esc_html( $important ); ?>;
267 + background: <?php echo esc_html( $submit_active_bg_color . $important ); ?>;
268 + border-color: <?php echo esc_html( $submit_active_border_color . $important ); ?>;
269 + color: <?php echo esc_html( $submit_active_color . $important ); ?>;
283 270 outline: none;
284 271 }
285 272
286 - <?php if ( $pro_is_installed ) { ?>
287 273 .<?php echo esc_html( $style_class ); ?> .frm_loading_prev .frm_prev_page,
288 274 .<?php echo esc_html( $style_class ); ?> .frm_loading_prev .frm_prev_page:hover,
289 275 .<?php echo esc_html( $style_class ); ?> .frm_loading_prev .frm_prev_page:active,
290 276 .<?php echo esc_html( $style_class ); ?> .frm_loading_prev .frm_prev_page:focus,
291 - <?php } ?>
292 277 .<?php echo esc_html( $style_class ); ?> .frm_loading_form .frm_button_submit,
293 278 .<?php echo esc_html( $style_class ); ?> .frm_loading_form .frm_button_submit:hover,
294 279 .<?php echo esc_html( $style_class ); ?> .frm_loading_form .frm_button_submit:active,
295 280 .<?php echo esc_html( $style_class ); ?> .frm_loading_form .frm_button_submit:focus{
296 - color: transparent<?php echo esc_html( $important ); ?>;
297 - background:var(--submit-bg-color)<?php echo esc_html( $important ); ?>;
298 - border-color:var(--submit-bg-color)<?php echo esc_html( $important ); ?>;
281 + color: transparent <?php echo esc_html( $important ); ?>;
282 + background: <?php echo esc_html( $submit_bg_color . $important ); ?>;
283 + border-color: <?php echo esc_html( $submit_bg_color . $important ); ?>;
299 284 }
300 285
301 - <?php if ( $pro_is_installed ) { ?>
302 286 .<?php echo esc_html( $style_class ); ?> .frm_loading_prev .frm_prev_page:before,
303 - <?php } ?>
304 287 .<?php echo esc_html( $style_class ); ?> .frm_loading_form .frm_button_submit:before {
305 - border-bottom-color:var(--submit-text-color)<?php echo esc_html( $important ); ?>;
306 - border-right-color:var(--submit-text-color)<?php echo esc_html( $important ); ?>;
288 + border-bottom-color: <?php echo esc_html( $submit_text_color . $important ); ?>;
289 + border-right-color: <?php echo esc_html( $submit_text_color . $important ); ?>;
307 290 <?php if ( $submit_height !== 'auto' ) { ?>
308 - max-height:var(--submit-height)<?php echo esc_html( $important ); ?>;
291 + max-height:<?php echo esc_html( $submit_height ); ?>;
309 292 <?php } ?>
310 293 <?php if ( $submit_width !== 'auto' ) { ?>
311 - max-width:var(--submit-width)<?php echo esc_html( $important ); ?>;
294 + max-width:<?php echo esc_html( $submit_width ); ?>;
312 295 <?php } ?>
313 296 }
314 -.<?php echo esc_html( $style_class ); ?> input[type=submit][disabled],
315 -.<?php echo esc_html( $style_class ); ?> .frm_submit input[type=button][disabled],
316 -.<?php echo esc_html( $style_class ); ?> .frm_submit button[disabled] {
317 - opacity: 0.5;
318 - cursor: not-allowed;
319 -}
320 297 <?php
321 298 }//end if
322 299 }//end if
323 300 ?>
@@ -327,13 +304,13 @@
327 304 content:"before";
328 305 <?php if ( ! empty( $font ) ) { ?>
329 306 font-family:<?php FrmAppHelper::kses_echo( $font ); ?>;
330 307 <?php } ?>
331 - font-size:var(--font-size)<?php echo esc_html( $important ); ?>;
332 - color:var(--label-color)<?php echo esc_html( $important ); ?>;
333 - font-weight:var(--weight)<?php echo esc_html( $important ); ?>;
308 + font-size:<?php echo esc_html( $font_size . $important ); ?>;
309 + color:<?php echo esc_html( $label_color . $important ); ?>;
310 + font-weight:<?php echo esc_html( $weight . $important ); ?>;
334 311 margin:0;
335 - padding:var(--label-padding)<?php echo esc_html( $important ); ?>;
312 + padding:<?php echo esc_html( $label_padding . $important ); ?>;
336 313 width:auto;
337 314 display:block;
338 315 visibility:hidden;
339 316 }
@@ -344,24 +321,17 @@
344 321 .<?php echo esc_html( $style_class ); ?> .frm_submit.frm_inline_submit button {
345 322 margin: 0 !important;
346 323 }
347 324
348 -<?php
349 -// Only include this CSS when the math captcha plugin is active.
350 -if ( class_exists( 'FrmCptController' ) ) :
351 - ?>
352 325 .<?php echo esc_html( $style_class ); ?> #frm_field_cptch_number_container{
353 326 <?php if ( ! empty( $font ) ) { ?>
354 327 font-family:<?php FrmAppHelper::kses_echo( $font ); ?>;
355 328 <?php } ?>
356 - font-size:var(--font-size)<?php echo esc_html( $important ); ?>;
357 - color:var(--label-color)<?php echo esc_html( $important ); ?>;
358 - font-weight:var(--weight)<?php echo esc_html( $important ); ?>;
329 + font-size:<?php echo esc_html( $font_size . $important ); ?>;
330 + color:<?php echo esc_html( $label_color . $important ); ?>;
331 + font-weight:<?php echo esc_html( $weight . $important ); ?>;
359 332 clear:both;
360 333 }
361 - <?php
362 -endif;
363 -?>
364 334
365 335 .<?php echo esc_html( $style_class ); ?> .frm_blank_field input[type=text],
366 336 .<?php echo esc_html( $style_class ); ?> .frm_blank_field input[type=password],
367 337 .<?php echo esc_html( $style_class ); ?> .frm_blank_field input[type=url],
@@ -370,11 +340,9 @@
370 340 .<?php echo esc_html( $style_class ); ?> .frm_blank_field input[type=email],
371 341 .<?php echo esc_html( $style_class ); ?> .frm_blank_field input[type=checkbox],
372 342 .<?php echo esc_html( $style_class ); ?> .frm_blank_field input[type=radio],
373 343 .<?php echo esc_html( $style_class ); ?> .frm_blank_field textarea,
374 -<?php if ( $pro_is_installed ) { ?>
375 344 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .mce-edit-area iframe,
376 -<?php } ?>
377 345 .<?php echo esc_html( $style_class ); ?> .frm_blank_field select:not(.ui-datepicker-month):not(.ui-datepicker-year),
378 346 .frm_form_fields_error_style,
379 347 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .frm-g-recaptcha iframe,
380 348 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .g-recaptcha iframe,
@@ -383,51 +351,42 @@
383 351 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .chosen-container-multi .chosen-choices,
384 352 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .chosen-container-single .chosen-single,
385 353 <?php } ?>
386 354 .<?php echo esc_html( $style_class ); ?> .frm_form_field :invalid {
387 - color:var(--text-color-error)<?php echo esc_html( $important ); ?>;
388 - background-color:var(--bg-color-error)<?php echo esc_html( $important ); ?>;
389 - border-color:var(--border-color-error)<?php echo esc_html( $important ); ?>;
390 - border-width:var(--border-width-error)<?php echo esc_html( $important ); ?>;
391 - border-style:var(--border-style-error)<?php echo esc_html( $important ); ?>;
355 + color:<?php echo esc_html( $text_color_error . $important ); ?>;
356 + background-color:<?php echo esc_html( $bg_color_error . $important ); ?>;
357 + border-color:<?php echo esc_html( $border_color_error . $important ); ?>;
358 + border-width:var(--border-width-error) <?php echo esc_html( $important ); ?>;
359 + border-style:<?php echo esc_html( $border_style_error . $important ); ?>;
392 360 }
393 361
394 -<?php
395 -// Only include this style when the signatures add-on is active
396 -if ( class_exists( 'FrmSigField' ) ) :
397 - ?>
398 362 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .sigWrapper{
399 - border-color:var(--border-color-error) !important;
363 + border-color:<?php echo esc_html( $border_color_error ); ?> !important;
400 364 }
401 - <?php
402 -endif;
403 -?>
404 365
405 366 .<?php echo esc_html( $style_class ); ?> .frm_error,
406 367 .<?php echo esc_html( $style_class ); ?> .frm_limit_error{
407 - font-weight:var(--weight)<?php echo esc_html( $important ); ?>;
408 - color:var(--border-color-error)<?php echo esc_html( $important ); ?>;
368 + font-weight:<?php echo esc_html( $weight . $important ); ?>;
369 + color:<?php echo esc_html( $text_color_error . $important ); ?>;
409 370 }
410 371
411 372 .<?php echo esc_html( $style_class ); ?> .frm_error_style{
412 - background-color:var(--error-bg)<?php echo esc_html( $important ); ?>;
413 - border:1px solid var(--error-border)<?php echo esc_html( $important ); ?>;
414 - border-radius:var(--border-radius)<?php echo esc_html( $important ); ?>;
415 - color:var(--error-text)<?php echo esc_html( $important ); ?>;
416 - font-size:var(--error-font-size)<?php echo esc_html( $important ); ?>;
373 + background-color:<?php echo esc_html( $error_bg . $important ); ?>;
374 + border:1px solid <?php echo esc_html( $error_border . $important ); ?>;
375 + border-radius:<?php echo esc_html( $border_radius . $important ); ?>;
376 + color: <?php echo esc_html( $error_text . $important ); ?>;
377 + font-size:<?php echo esc_html( $error_font_size . $important ); ?>;
417 378 margin:0;
418 - margin-bottom:var(--field-margin);
379 + margin-bottom:<?php echo esc_html( $field_margin ); ?>;
419 380 }
420 381
421 -<?php if ( $pro_is_installed ) { ?>
422 382 .<?php echo esc_html( $style_class ); ?> #frm_loading .progress-striped .progress-bar{
423 383 background-image:linear-gradient(45deg, <?php echo esc_html( $border_color ); ?> 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, <?php echo esc_html( $border_color ); ?> 50%, <?php echo esc_html( $border_color ); ?> 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));
424 384 }
425 385
426 386 .<?php echo esc_html( $style_class ); ?> #frm_loading .progress-bar{
427 - background-color:var(--bg-color)<?php echo esc_html( $important ); ?>;
387 + background-color:<?php echo esc_html( $bg_color . $important ); ?>;
428 388 }
429 -<?php } ?>
430 389
431 390 .<?php echo esc_html( $style_class ); ?> .frm_form_field.frm_total_big input,
432 391 .<?php echo esc_html( $style_class ); ?> .frm_form_field.frm_total_big textarea,
433 392 .<?php echo esc_html( $style_class ); ?> .frm_form_field.frm_total input,
@@ -439,6 +398,5 @@
439 398 width:auto<?php echo esc_html( $important ); ?>;
440 399 padding:0<?php echo esc_html( $important ); ?>;
441 400 }
442 401
443 -<?php echo strip_tags( FrmStylesController::get_custom_css( $settings ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
444 402 <?php do_action( 'frm_output_single_style', $settings ); ?>