PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.8
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.8
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 +16 -2 6.5.36.8 View file →
@@ -232,9 +232,10 @@
232 232 .frm_form_fields_active_style,
233 233 .frm_form_fields_error_style,
234 234 .with_frm_style .frm-card-element.StripeElement,
235 235 .with_frm_style .chosen-container-multi .chosen-choices,
236 -.with_frm_style .chosen-container-single .chosen-single{
236 +.with_frm_style .chosen-container-single .chosen-single,
237 +.with_frm_style .frm_slimselect.ss-main {
237 238 color:<?php echo esc_html( $defaults['text_color'] ); ?>;
238 239 color:var(--text-color)<?php echo esc_html( $important ); ?>;
239 240 background-color:<?php echo esc_html( $defaults['bg_color'] . $important ); ?>;
240 241 background-color:var(--bg-color)<?php echo esc_html( $important ); ?>;
@@ -370,9 +371,9 @@
370 371 .with_frm_style select{
371 372 width:<?php echo esc_html( $defaults['auto_width'] ); ?>;
372 373 width:var(--auto-width)<?php echo esc_html( $important ); ?>;
373 374 max-width:100%;
374 - background-position-y: center;
375 + background-position-y: calc(50% + 3px);
375 376 }
376 377
377 378 .with_frm_style input[disabled],
378 379 .with_frm_style select[disabled],
@@ -687,8 +688,12 @@
687 688 .with_frm_style.frm_center_submit .frm_submit{
688 689 text-align:center;
689 690 }
690 691
692 +.with_frm_style.frm_center_submit .frm_flex.frm_submit {
693 + justify-content: center;
694 +}
695 +
691 696 .with_frm_style .frm_inline_success .frm_submit{
692 697 display: flex;
693 698 flex-direction: row;
694 699 align-items: center;
@@ -771,8 +776,17 @@
771 776 -webkit-animation: spin 2s linear infinite;
772 777 -moz-animation: spin 2s linear infinite;
773 778 -o-animation: spin 2s linear infinite;
774 779 animation: spin 2s linear infinite;
780 +}
781 +
782 +.with_frm_style .frm_submit.frm_flex {
783 + align-items: center;
784 + gap: 2%;
785 +}
786 +
787 +.with_frm_style .frm_submit.frm_flex button.frm_button_submit ~ .frm_prev_page {
788 + order: -1;
775 789 }
776 790
777 791 <?php
778 792 foreach ( $styles as $style ) {