PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 5.0.10
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v5.0.10
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 +9 -18 6.45.0.10 View file →
@@ -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 } ?>
@@ -159,15 +158,14 @@
159 158 .<?php echo esc_html( $style_class ); ?> .frm_pos_none{
160 159 display:none<?php echo esc_html( $important ); ?>;
161 160 }
162 161
163 -<?php if ( FrmAppHelper::pro_is_installed() ) : ?>
164 162 .<?php echo esc_html( $style_class ); ?> .frm_scale label{
165 163 <?php if ( ! empty( $check_weight ) ) { ?>
166 164 font-weight:<?php echo esc_html( $check_weight . $important ); ?>;
167 165 <?php } ?>
168 166 <?php if ( ! empty( $font ) ) { ?>
169 - font-family:<?php echo FrmAppHelper::kses( $font . $important ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>;
167 + font-family:<?php echo FrmAppHelper::kses( $font . $important ); // WPCS: XSS ok. ?>;
170 168 <?php } ?>
171 169 <?php if ( ! empty( $check_font_size ) ) { ?>
172 170 font-size:<?php echo esc_html( $check_font_size . $important ); ?>;
173 171 <?php } ?>
@@ -174,9 +172,8 @@
174 172 <?php if ( ! empty( $check_label_color ) ) { ?>
175 173 color:<?php echo esc_html( $check_label_color . $important ); ?>;
176 174 <?php } ?>
177 175 }
178 -<?php endif; ?>
179 176
180 177 /* These do not work if they are combined */
181 178 .<?php echo esc_html( $style_class ); ?> input::placeholder,
182 179 .<?php echo esc_html( $style_class ); ?> textarea::placeholder{
@@ -188,9 +185,8 @@
188 185 }
189 186 .<?php echo esc_html( $style_class ); ?> input::-moz-placeholder,
190 187 .<?php echo esc_html( $style_class ); ?> textarea::-moz-placeholder{
191 188 color: <?php echo esc_html( $text_color_disabled . $important ); ?>;
192 - opacity: 1;
193 189 }
194 190 .<?php echo esc_html( $style_class ); ?> input:-ms-input-placeholder,
195 191 <?php echo esc_html( $style_class ); ?> textarea:-ms-input-placeholder{
196 192 color: <?php echo esc_html( $text_color_disabled . $important ); ?>;
@@ -225,12 +221,10 @@
225 221 .<?php echo esc_html( $style_class ); ?> .chosen-container-single.chosen-container-active .chosen-single,
226 222 .<?php echo esc_html( $style_class ); ?> .chosen-container-active .chosen-choices{
227 223 background-color:<?php echo esc_html( $bg_color_active . $important ); ?>;
228 224 border-color:<?php echo esc_html( $border_color_active . $important ); ?>;
229 - color: var(--text-color);
230 225 <?php if ( isset( $remove_box_shadow_active ) && $remove_box_shadow_active ) { ?>
231 226 box-shadow:none;
232 - outline: none;
233 227 <?php } else { ?>
234 228 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 229 <?php } ?>
236 230 }
@@ -243,9 +237,9 @@
243 237 .frm_form_submit_style,
244 238 .<?php echo esc_html( $style_class ); ?> .frm-edit-page-btn {
245 239 width:<?php echo esc_html( ( $submit_width == '' ? 'auto' : $submit_width ) . $important ); ?>;
246 240 <?php if ( ! empty( $font ) ) { ?>
247 - font-family:<?php echo FrmAppHelper::kses( $font ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>;
241 + font-family:<?php echo FrmAppHelper::kses( $font ); // WPCS: XSS ok. ?>;
248 242 <?php } ?>
249 243 font-size:<?php echo esc_html( $submit_font_size . $important ); ?>;
250 244 height:<?php echo esc_html( $submit_height . $important ); ?>;
251 245 line-height:normal<?php echo esc_html( $important ); ?>;
@@ -316,9 +310,8 @@
316 310 .<?php echo esc_html( $style_class ); ?> .frm_submit button:active{
317 311 background: <?php echo esc_html( $submit_active_bg_color . $important ); ?>;
318 312 border-color: <?php echo esc_html( $submit_active_border_color . $important ); ?>;
319 313 color: <?php echo esc_html( $submit_active_color . $important ); ?>;
320 - outline: none;
321 314 }
322 315
323 316 .<?php echo esc_html( $style_class ); ?> .frm_loading_prev .frm_prev_page,
324 317 .<?php echo esc_html( $style_class ); ?> .frm_loading_prev .frm_prev_page:hover,
@@ -351,9 +344,9 @@
351 344 .<?php echo esc_html( $style_class ); ?>.frm_inline_top .frm_submit::before,
352 345 .<?php echo esc_html( $style_class ); ?> .frm_submit.frm_inline_submit::before {
353 346 content:"before";
354 347 <?php if ( ! empty( $font ) ) { ?>
355 - font-family:<?php echo FrmAppHelper::kses( $font ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>;
348 + font-family:<?php echo FrmAppHelper::kses( $font ); // WPCS: XSS ok. ?>;
356 349 <?php } ?>
357 350 font-size:<?php echo esc_html( $font_size . $important ); ?>;
358 351 color:<?php echo esc_html( $label_color . $important ); ?>;
359 352 font-weight:<?php echo esc_html( $weight . $important ); ?>;
@@ -372,9 +365,9 @@
372 365 }
373 366
374 367 .<?php echo esc_html( $style_class ); ?> #frm_field_cptch_number_container{
375 368 <?php if ( ! empty( $font ) ) { ?>
376 - font-family:<?php echo FrmAppHelper::kses( $font ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>;
369 + font-family:<?php echo FrmAppHelper::kses( $font ); // WPCS: XSS ok. ?>;
377 370 <?php } ?>
378 371 font-size:<?php echo esc_html( $font_size . $important ); ?>;
379 372 color:<?php echo esc_html( $label_color . $important ); ?>;
380 373 font-weight:<?php echo esc_html( $weight . $important ); ?>;
@@ -388,9 +381,9 @@
388 381 .<?php echo esc_html( $style_class ); ?> .frm_blank_field input[type=number],
389 382 .<?php echo esc_html( $style_class ); ?> .frm_blank_field input[type=email],
390 383 .<?php echo esc_html( $style_class ); ?> .frm_blank_field textarea,
391 384 .<?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),
385 +.<?php echo esc_html( $style_class ); ?> .frm_blank_field select,
393 386 .frm_form_fields_error_style,
394 387 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .frm-g-recaptcha iframe,
395 388 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .g-recaptcha iframe,
396 389 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .frm-card-element.StripeElement,
@@ -407,16 +400,14 @@
407 400 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .sigWrapper{
408 401 border-color:<?php echo esc_html( $border_color_error ); ?> !important;
409 402 }
410 403
411 -.<?php echo esc_html( $style_class ); ?> .frm_error,
412 -.<?php echo esc_html( $style_class ); ?> .frm_limit_error{
404 +.<?php echo esc_html( $style_class ); ?> .frm_error{
413 405 font-weight:<?php echo esc_html( $weight . $important ); ?>;
414 406 }
415 407
416 408 .<?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{
409 +.<?php echo esc_html( $style_class ); ?> .frm_error{
419 410 color:<?php echo esc_html( $border_color_error . $important ); ?>;
420 411 }
421 412
422 413 .<?php echo esc_html( $style_class ); ?> .frm_error_style{