PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.2.1
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.2.1
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 +10 -51 6.5.36.2.1 View file →
@@ -7,9 +7,8 @@
7 7 header( 'Content-type: text/css' );
8 8
9 9 if ( ! empty( $css ) ) {
10 10 echo strip_tags( $css, 'all' ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
11 - FrmStylesController::maybe_hide_sample_form_error_message();
12 11 die();
13 12 }
14 13 }
15 14
@@ -68,13 +67,11 @@
68 67 padding:var(--form-desc-padding)<?php echo esc_html( $important ); ?>;
69 68 <?php } ?>
70 69 }
71 70
72 -form .<?php echo esc_html( FrmHoneypot::generate_class_name() ); ?> {
73 - overflow: hidden;
74 - width: 0;
75 - height: 0;
76 - position: absolute;
71 +form input.frm_verify{
72 + position:absolute;
73 + left:-3000px;
77 74 }
78 75
79 76 .with_frm_style fieldset{
80 77 min-width:0;
@@ -88,9 +85,9 @@
88 85 background-color:transparent;
89 86 }
90 87
91 88 .with_frm_style .frm_form_fields > fieldset{
92 -<?php if ( isset( $defaults['fieldset'] ) && ( $defaults['fieldset'] || '0' === $defaults['fieldset'] ) ) { ?>
89 +<?php if ( ! empty( $defaults['fieldset'] ) ) { ?>
93 90 border-width:<?php echo esc_html( $defaults['fieldset'] . $important ); ?>;
94 91 border-width:var(--fieldset)<?php echo esc_html( $important ); ?>;
95 92 <?php } ?>
96 93 border-style:solid;
@@ -237,8 +234,11 @@
237 234 color:<?php echo esc_html( $defaults['text_color'] ); ?>;
238 235 color:var(--text-color)<?php echo esc_html( $important ); ?>;
239 236 background-color:<?php echo esc_html( $defaults['bg_color'] . $important ); ?>;
240 237 background-color:var(--bg-color)<?php echo esc_html( $important ); ?>;
238 +<?php if ( ! empty( $important ) ) { ?>
239 + background-image:none !important;
240 +<?php } ?>
241 241 border-color:<?php echo esc_html( $defaults['border_color'] ); ?>;
242 242 border-color:var(--border-color)<?php echo esc_html( $important ); ?>;
243 243 border-width:<?php echo esc_html( $defaults['field_border_width'] ); ?>;
244 244 border-width:var(--field-border-width)<?php echo esc_html( $important ); ?>;
@@ -263,39 +263,8 @@
263 263 font-weight:var(--field-weight);
264 264 box-shadow:var(--box-shadow)<?php echo esc_html( $important ); ?>;
265 265 }
266 266
267 -<?php if ( ! empty( $important ) ) { ?>
268 -.with_frm_style input[type=text],
269 -.with_frm_style input[type=password],
270 -.with_frm_style input[type=email],
271 -.with_frm_style input[type=number],
272 -.with_frm_style input[type=url],
273 -.with_frm_style input[type=tel],
274 -.with_frm_style input[type=phone],
275 -.with_frm_style input[type=search],
276 -.with_frm_style textarea,
277 -.frm_form_fields_style,
278 -.with_frm_style .frm_scroll_box .frm_opt_container,
279 -.frm_form_fields_active_style,
280 -.frm_form_fields_error_style,
281 -.with_frm_style .frm-card-element.StripeElement,
282 -.with_frm_style .chosen-container-multi .chosen-choices,
283 -.with_frm_style .chosen-container-single .chosen-single{
284 - background-image:none !important;
285 -}
286 -<?php } ?>
287 -
288 -.with_frm_style select option {
289 - color:<?php echo esc_html( $defaults['text_color'] ); ?>;
290 - color:var(--text-color)<?php echo esc_html( $important ); ?>;
291 -}
292 -
293 -.with_frm_style select option.frm-select-placeholder {
294 - color:<?php echo esc_html( $defaults['text_color_disabled'] ); ?>;
295 - color:var(--text-color-disabled)<?php echo esc_html( $important ); ?>;
296 -}
297 -
298 267 .with_frm_style input[type=radio],
299 268 .with_frm_style input[type=checkbox]{
300 269 border-color:<?php echo esc_html( $defaults['border_color'] . $important ); ?>;
301 270 border-color:var(--border-color)<?php echo esc_html( $important ); ?>;
@@ -317,10 +286,10 @@
317 286 .with_frm_style input[type=file],
318 287 .with_frm_style input[type=search],
319 288 .with_frm_style select,
320 289 .with_frm_style .frm-card-element.StripeElement{
321 - min-height:<?php echo esc_html( $defaults['field_height'] ); ?>;
322 - min-height:var(--field-height)<?php echo esc_html( $important ); ?>;
290 + height:<?php echo esc_html( $defaults['field_height'] ); ?>;
291 + height:var(--field-height)<?php echo esc_html( $important ); ?>;
323 292 line-height:1.3<?php echo esc_html( $important ); ?>;
324 293 }
325 294
326 295 .with_frm_style select[multiple=multiple]{
@@ -895,13 +864,9 @@
895 864 margin:5px;
896 865 vertical-align:middle;
897 866 }
898 867
899 -.with_frm_style .frm_radio input[type=radio]
900 -<?php if ( FrmAppHelper::pro_is_installed() ) : ?>
901 -, .with_frm_style .frm_scale input[type=radio]
902 -<?php endif; ?>
903 -{
868 +.with_frm_style .frm_radio input[type=radio]{
904 869 border-radius:50%;
905 870 }
906 871
907 872 .with_frm_style .frm_checkbox input[type=checkbox]{
@@ -908,11 +873,8 @@
908 873 border-radius:0;
909 874 }
910 875
911 876 .with_frm_style .frm_radio input[type=radio],
912 -<?php if ( FrmAppHelper::pro_is_installed() ) : ?>
913 -.with_frm_style .frm_scale input[type=radio],
914 -<?php endif; ?>
915 877 .with_frm_style .frm_checkbox input[type=checkbox]{
916 878 -webkit-appearance: none;
917 879 appearance: none;
918 880 background-color: var(--bg-color);
@@ -930,11 +892,8 @@
930 892 padding: 0;
931 893 }
932 894
933 895 .with_frm_style .frm_radio input[type=radio]:before,
934 -<?php if ( FrmAppHelper::pro_is_installed() ) : ?>
935 -.with_frm_style .frm_scale input[type=radio]:before,
936 -<?php endif; ?>
937 896 .with_frm_style .frm_checkbox input[type=checkbox]:before {
938 897 content: '';
939 898 width: 12px;
940 899 height: 12px;