PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.7
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.7
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 +14 -1 6.5.36.7 View file →
@@ -370,9 +370,9 @@
370 370 .with_frm_style select{
371 371 width:<?php echo esc_html( $defaults['auto_width'] ); ?>;
372 372 width:var(--auto-width)<?php echo esc_html( $important ); ?>;
373 373 max-width:100%;
374 - background-position-y: center;
374 + background-position-y: calc(50% + 3px);
375 375 }
376 376
377 377 .with_frm_style input[disabled],
378 378 .with_frm_style select[disabled],
@@ -687,8 +687,12 @@
687 687 .with_frm_style.frm_center_submit .frm_submit{
688 688 text-align:center;
689 689 }
690 690
691 +.with_frm_style.frm_center_submit .frm_flex.frm_submit {
692 + justify-content: center;
693 +}
694 +
691 695 .with_frm_style .frm_inline_success .frm_submit{
692 696 display: flex;
693 697 flex-direction: row;
694 698 align-items: center;
@@ -771,8 +775,17 @@
771 775 -webkit-animation: spin 2s linear infinite;
772 776 -moz-animation: spin 2s linear infinite;
773 777 -o-animation: spin 2s linear infinite;
774 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;
775 788 }
776 789
777 790 <?php
778 791 foreach ( $styles as $style ) {