| @@ -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; |