PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 5.0
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v5.0
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 +15 -20 6.45.0 View file →
@@ -18,9 +18,9 @@
18 18
19 19 .frm_forms.<?php echo esc_html( $style_class ); ?>{
20 20 max-width:<?php echo esc_html( $form_width . $important ); ?>;
21 21 direction:<?php echo esc_html( $direction . $important ); ?>;
22 - <?php if ( 'rtl' === $direction ) { ?>
22 + <?php if ( 'rtl' == $direction ) { ?>
23 23 unicode-bidi:embed;
24 24 <?php } ?>
25 25 <?php if ( $center_form ) { ?>
26 26 margin:0 auto;
@@ -82,16 +82,15 @@
82 82 .<?php echo esc_html( $style_class ); ?> p.description,
83 83 .<?php echo esc_html( $style_class ); ?> div.description,
84 84 .<?php echo esc_html( $style_class ); ?> div.frm_description,
85 85 .<?php echo esc_html( $style_class ); ?> .frm-show-form > div.frm_description,
86 -.<?php echo esc_html( $style_class ); ?> .frm_error,
87 -.<?php echo esc_html( $style_class ); ?> .frm_pro_max_limit_desc{
86 +.<?php echo esc_html( $style_class ); ?> .frm_error{
88 87 <?php if ( ! empty( $description_margin ) ) { ?>
89 88 margin:<?php echo esc_html( $description_margin . $important ); ?>;
90 89 <?php } ?>
91 90 padding:0;
92 91 <?php if ( ! empty( $font ) ) { ?>
93 - font-family:<?php echo FrmAppHelper::kses( $font . $important ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>;
92 + font-family:<?php echo FrmAppHelper::kses( $font . $important ); // WPCS: XSS ok. ?>;
94 93 <?php } ?>
95 94 <?php if ( ! empty( $description_font_size ) ) { ?>
96 95 font-size:<?php echo esc_html( $description_font_size . $important ); ?>;
97 96 <?php } ?>
@@ -128,9 +127,13 @@
128 127 .<?php echo esc_html( $style_class ); ?> .frm_<?php echo esc_html( $alignit ); ?>_container input[type=search],
129 128 .<?php echo esc_html( $style_class ); ?> .frm_<?php echo esc_html( $alignit ); ?>_container select,
130 129 <?php } ?>
131 130 .<?php echo esc_html( $style_class ); ?> .frm_left_container select{
132 - height:fit-content<?php echo esc_html( $important ); ?>;
131 + <?php if ( $frm_settings->old_css ) { ?>
132 + height:auto<?php echo esc_html( $important ); ?>;
133 + <?php } else { ?>
134 + height:fit-content<?php echo esc_html( $important ); ?>;
135 + <?php } ?>
133 136 }
134 137 <?php } ?>
135 138
136 139 .<?php echo esc_html( $style_class ); ?> .frm_form_field.frm_left_container{
@@ -159,15 +162,14 @@
159 162 .<?php echo esc_html( $style_class ); ?> .frm_pos_none{
160 163 display:none<?php echo esc_html( $important ); ?>;
161 164 }
162 165
163 -<?php if ( FrmAppHelper::pro_is_installed() ) : ?>
164 166 .<?php echo esc_html( $style_class ); ?> .frm_scale label{
165 167 <?php if ( ! empty( $check_weight ) ) { ?>
166 168 font-weight:<?php echo esc_html( $check_weight . $important ); ?>;
167 169 <?php } ?>
168 170 <?php if ( ! empty( $font ) ) { ?>
169 - font-family:<?php echo FrmAppHelper::kses( $font . $important ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>;
171 + font-family:<?php echo FrmAppHelper::kses( $font . $important ); // WPCS: XSS ok. ?>;
170 172 <?php } ?>
171 173 <?php if ( ! empty( $check_font_size ) ) { ?>
172 174 font-size:<?php echo esc_html( $check_font_size . $important ); ?>;
173 175 <?php } ?>
@@ -174,9 +176,8 @@
174 176 <?php if ( ! empty( $check_label_color ) ) { ?>
175 177 color:<?php echo esc_html( $check_label_color . $important ); ?>;
176 178 <?php } ?>
177 179 }
178 -<?php endif; ?>
179 180
180 181 /* These do not work if they are combined */
181 182 .<?php echo esc_html( $style_class ); ?> input::placeholder,
182 183 .<?php echo esc_html( $style_class ); ?> textarea::placeholder{
@@ -188,9 +189,8 @@
188 189 }
189 190 .<?php echo esc_html( $style_class ); ?> input::-moz-placeholder,
190 191 .<?php echo esc_html( $style_class ); ?> textarea::-moz-placeholder{
191 192 color: <?php echo esc_html( $text_color_disabled . $important ); ?>;
192 - opacity: 1;
193 193 }
194 194 .<?php echo esc_html( $style_class ); ?> input:-ms-input-placeholder,
195 195 <?php echo esc_html( $style_class ); ?> textarea:-ms-input-placeholder{
196 196 color: <?php echo esc_html( $text_color_disabled . $important ); ?>;
@@ -225,12 +225,10 @@
225 225 .<?php echo esc_html( $style_class ); ?> .chosen-container-single.chosen-container-active .chosen-single,
226 226 .<?php echo esc_html( $style_class ); ?> .chosen-container-active .chosen-choices{
227 227 background-color:<?php echo esc_html( $bg_color_active . $important ); ?>;
228 228 border-color:<?php echo esc_html( $border_color_active . $important ); ?>;
229 - color: var(--text-color);
230 229 <?php if ( isset( $remove_box_shadow_active ) && $remove_box_shadow_active ) { ?>
231 230 box-shadow:none;
232 - outline: none;
233 231 <?php } else { ?>
234 232 box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(<?php echo esc_html( FrmStylesHelper::hex2rgb( $border_color_active ) ); ?>, 0.6);
235 233 <?php } ?>
236 234 }
@@ -243,9 +241,9 @@
243 241 .frm_form_submit_style,
244 242 .<?php echo esc_html( $style_class ); ?> .frm-edit-page-btn {
245 243 width:<?php echo esc_html( ( $submit_width == '' ? 'auto' : $submit_width ) . $important ); ?>;
246 244 <?php if ( ! empty( $font ) ) { ?>
247 - font-family:<?php echo FrmAppHelper::kses( $font ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>;
245 + font-family:<?php echo FrmAppHelper::kses( $font ); // WPCS: XSS ok. ?>;
248 246 <?php } ?>
249 247 font-size:<?php echo esc_html( $submit_font_size . $important ); ?>;
250 248 height:<?php echo esc_html( $submit_height . $important ); ?>;
251 249 line-height:normal<?php echo esc_html( $important ); ?>;
@@ -316,9 +314,8 @@
316 314 .<?php echo esc_html( $style_class ); ?> .frm_submit button:active{
317 315 background: <?php echo esc_html( $submit_active_bg_color . $important ); ?>;
318 316 border-color: <?php echo esc_html( $submit_active_border_color . $important ); ?>;
319 317 color: <?php echo esc_html( $submit_active_color . $important ); ?>;
320 - outline: none;
321 318 }
322 319
323 320 .<?php echo esc_html( $style_class ); ?> .frm_loading_prev .frm_prev_page,
324 321 .<?php echo esc_html( $style_class ); ?> .frm_loading_prev .frm_prev_page:hover,
@@ -351,9 +348,9 @@
351 348 .<?php echo esc_html( $style_class ); ?>.frm_inline_top .frm_submit::before,
352 349 .<?php echo esc_html( $style_class ); ?> .frm_submit.frm_inline_submit::before {
353 350 content:"before";
354 351 <?php if ( ! empty( $font ) ) { ?>
355 - font-family:<?php echo FrmAppHelper::kses( $font ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>;
352 + font-family:<?php echo FrmAppHelper::kses( $font ); // WPCS: XSS ok. ?>;
356 353 <?php } ?>
357 354 font-size:<?php echo esc_html( $font_size . $important ); ?>;
358 355 color:<?php echo esc_html( $label_color . $important ); ?>;
359 356 font-weight:<?php echo esc_html( $weight . $important ); ?>;
@@ -372,9 +369,9 @@
372 369 }
373 370
374 371 .<?php echo esc_html( $style_class ); ?> #frm_field_cptch_number_container{
375 372 <?php if ( ! empty( $font ) ) { ?>
376 - font-family:<?php echo FrmAppHelper::kses( $font ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>;
373 + font-family:<?php echo FrmAppHelper::kses( $font ); // WPCS: XSS ok. ?>;
377 374 <?php } ?>
378 375 font-size:<?php echo esc_html( $font_size . $important ); ?>;
379 376 color:<?php echo esc_html( $label_color . $important ); ?>;
380 377 font-weight:<?php echo esc_html( $weight . $important ); ?>;
@@ -388,9 +385,9 @@
388 385 .<?php echo esc_html( $style_class ); ?> .frm_blank_field input[type=number],
389 386 .<?php echo esc_html( $style_class ); ?> .frm_blank_field input[type=email],
390 387 .<?php echo esc_html( $style_class ); ?> .frm_blank_field textarea,
391 388 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .mce-edit-area iframe,
392 -.<?php echo esc_html( $style_class ); ?> .frm_blank_field select:not(.ui-datepicker-month):not(.ui-datepicker-year),
389 +.<?php echo esc_html( $style_class ); ?> .frm_blank_field select,
393 390 .frm_form_fields_error_style,
394 391 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .frm-g-recaptcha iframe,
395 392 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .g-recaptcha iframe,
396 393 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .frm-card-element.StripeElement,
@@ -407,16 +404,14 @@
407 404 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .sigWrapper{
408 405 border-color:<?php echo esc_html( $border_color_error ); ?> !important;
409 406 }
410 407
411 -.<?php echo esc_html( $style_class ); ?> .frm_error,
412 -.<?php echo esc_html( $style_class ); ?> .frm_limit_error{
408 +.<?php echo esc_html( $style_class ); ?> .frm_error{
413 409 font-weight:<?php echo esc_html( $weight . $important ); ?>;
414 410 }
415 411
416 412 .<?php echo esc_html( $style_class ); ?> .frm_blank_field label,
417 -.<?php echo esc_html( $style_class ); ?> .frm_error,
418 -.<?php echo esc_html( $style_class ); ?> .frm_limit_error{
413 +.<?php echo esc_html( $style_class ); ?> .frm_error{
419 414 color:<?php echo esc_html( $border_color_error . $important ); ?>;
420 415 }
421 416
422 417 .<?php echo esc_html( $style_class ); ?> .frm_error_style{