PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 5.5.6
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v5.5.6
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 +2 -4 6.35.5.6 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
@@ -86,9 +85,9 @@
86 85 background-color:transparent;
87 86 }
88 87
89 88 .with_frm_style .frm_form_fields > fieldset{
90 -<?php if ( isset( $defaults['fieldset'] ) && ( $defaults['fieldset'] || '0' === $defaults['fieldset'] ) ) { ?>
89 +<?php if ( ! empty( $defaults['fieldset'] ) ) { ?>
91 90 border-width:<?php echo esc_html( $defaults['fieldset'] . $important ); ?>;
92 91 border-width:var(--fieldset)<?php echo esc_html( $important ); ?>;
93 92 <?php } ?>
94 93 border-style:solid;
@@ -328,9 +327,8 @@
328 327 }
329 328
330 329 .with_frm_style .wp-editor-container textarea{
331 330 border:none<?php echo esc_html( $important ); ?>;
332 - box-shadow:none !important;
333 331 }
334 332
335 333 .with_frm_style .mceIframeContainer{
336 334 background-color:<?php echo esc_html( $defaults['bg_color'] . $important ); ?>;
@@ -1639,5 +1637,5 @@
1639 1637 }
1640 1638 }
1641 1639 <?php
1642 1640
1643 -echo strip_tags( FrmStylesController::get_custom_css() ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
1641 +echo strip_tags( $defaults['custom_css'] ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped