PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.7.2
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.7.2
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 +36 -4 6.5.16.7.2 View file →
@@ -72,8 +72,9 @@
72 72 form .<?php echo esc_html( FrmHoneypot::generate_class_name() ); ?> {
73 73 overflow: hidden;
74 74 width: 0;
75 75 height: 0;
76 + position: absolute;
76 77 }
77 78
78 79 .with_frm_style fieldset{
79 80 min-width:0;
@@ -236,11 +237,8 @@
236 237 color:<?php echo esc_html( $defaults['text_color'] ); ?>;
237 238 color:var(--text-color)<?php echo esc_html( $important ); ?>;
238 239 background-color:<?php echo esc_html( $defaults['bg_color'] . $important ); ?>;
239 240 background-color:var(--bg-color)<?php echo esc_html( $important ); ?>;
240 -<?php if ( ! empty( $important ) ) { ?>
241 - background-image:none !important;
242 -<?php } ?>
243 241 border-color:<?php echo esc_html( $defaults['border_color'] ); ?>;
244 242 border-color:var(--border-color)<?php echo esc_html( $important ); ?>;
245 243 border-width:<?php echo esc_html( $defaults['field_border_width'] ); ?>;
246 244 border-width:var(--field-border-width)<?php echo esc_html( $important ); ?>;
@@ -265,8 +263,29 @@
265 263 font-weight:var(--field-weight);
266 264 box-shadow:var(--box-shadow)<?php echo esc_html( $important ); ?>;
267 265 }
268 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 +
269 288 .with_frm_style select option {
270 289 color:<?php echo esc_html( $defaults['text_color'] ); ?>;
271 290 color:var(--text-color)<?php echo esc_html( $important ); ?>;
272 291 }
@@ -351,9 +370,9 @@
351 370 .with_frm_style select{
352 371 width:<?php echo esc_html( $defaults['auto_width'] ); ?>;
353 372 width:var(--auto-width)<?php echo esc_html( $important ); ?>;
354 373 max-width:100%;
355 - background-position-y: center;
374 + background-position-y: calc(50% + 3px);
356 375 }
357 376
358 377 .with_frm_style input[disabled],
359 378 .with_frm_style select[disabled],
@@ -668,8 +687,12 @@
668 687 .with_frm_style.frm_center_submit .frm_submit{
669 688 text-align:center;
670 689 }
671 690
691 +.with_frm_style.frm_center_submit .frm_flex.frm_submit {
692 + justify-content: center;
693 +}
694 +
672 695 .with_frm_style .frm_inline_success .frm_submit{
673 696 display: flex;
674 697 flex-direction: row;
675 698 align-items: center;
@@ -752,8 +775,17 @@
752 775 -webkit-animation: spin 2s linear infinite;
753 776 -moz-animation: spin 2s linear infinite;
754 777 -o-animation: spin 2s linear infinite;
755 778 animation: spin 2s linear infinite;
779 +}
780 +
781 +.with_frm_style .frm_submit.frm_flex {
782 + align-items: center;
783 + gap: 2%;
784 +}
785 +
786 +.with_frm_style .frm_submit.frm_flex button.frm_button_submit ~ .frm_prev_page {
787 + order: -1;
756 788 }
757 789
758 790 <?php
759 791 foreach ( $styles as $style ) {