PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.10
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.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/custom_theme.css.php +42 -33 6.5.26.10 View file →
@@ -40,8 +40,9 @@
40 40 text-align:<?php echo esc_html( $defaults['form_align'] . $important ); ?>;
41 41 text-align:var(--form-align)<?php echo esc_html( $important ); ?>;
42 42 }
43 43
44 +/* Keep this. This is used for Honeypot */
44 45 input:-webkit-autofill {
45 46 -webkit-box-shadow: 0 0 0 30px white inset;
46 47 }
47 48
@@ -232,16 +233,14 @@
232 233 .frm_form_fields_active_style,
233 234 .frm_form_fields_error_style,
234 235 .with_frm_style .frm-card-element.StripeElement,
235 236 .with_frm_style .chosen-container-multi .chosen-choices,
236 -.with_frm_style .chosen-container-single .chosen-single{
237 +.with_frm_style .chosen-container-single .chosen-single,
238 +.with_frm_style .frm_slimselect.ss-main {
237 239 color:<?php echo esc_html( $defaults['text_color'] ); ?>;
238 240 color:var(--text-color)<?php echo esc_html( $important ); ?>;
239 241 background-color:<?php echo esc_html( $defaults['bg_color'] . $important ); ?>;
240 242 background-color:var(--bg-color)<?php echo esc_html( $important ); ?>;
241 -<?php if ( ! empty( $important ) ) { ?>
242 - background-image:none !important;
243 -<?php } ?>
244 243 border-color:<?php echo esc_html( $defaults['border_color'] ); ?>;
245 244 border-color:var(--border-color)<?php echo esc_html( $important ); ?>;
246 245 border-width:<?php echo esc_html( $defaults['field_border_width'] ); ?>;
247 246 border-width:var(--field-border-width)<?php echo esc_html( $important ); ?>;
@@ -246,10 +245,8 @@
246 245 border-width:<?php echo esc_html( $defaults['field_border_width'] ); ?>;
247 246 border-width:var(--field-border-width)<?php echo esc_html( $important ); ?>;
248 247 border-style:<?php echo esc_html( $defaults['field_border_style'] ); ?>;
249 248 border-style:var(--field-border-style)<?php echo esc_html( $important ); ?>;
250 - -moz-border-radius:<?php echo esc_html( $defaults['border_radius'] . $important ); ?>;
251 - -webkit-border-radius:<?php echo esc_html( $defaults['border_radius'] . $important ); ?>;
252 249 border-radius:<?php echo esc_html( $defaults['border_radius'] ); ?>;
253 250 border-radius:var(--border-radius)<?php echo esc_html( $important ); ?>;
254 251 width:<?php echo esc_html( $defaults['field_width'] ); ?>;
255 252 width:var(--field-width)<?php echo esc_html( $important ); ?>;
@@ -257,10 +254,8 @@
257 254 font-size:<?php echo esc_html( $defaults['field_font_size'] ); ?>;
258 255 font-size:var(--field-font-size)<?php echo esc_html( $important ); ?>;
259 256 padding:<?php echo esc_html( $defaults['field_pad'] ); ?>;
260 257 padding:var(--field-pad)<?php echo esc_html( $important ); ?>;
261 - -webkit-box-sizing:border-box;
262 - -moz-box-sizing:border-box;
263 258 box-sizing:border-box;
264 259 outline:none<?php echo esc_html( $important ); ?>;
265 260 font-weight:<?php echo esc_html( $defaults['field_weight'] ); ?>;
266 261 font-weight:var(--field-weight);
@@ -266,8 +261,29 @@
266 261 font-weight:var(--field-weight);
267 262 box-shadow:var(--box-shadow)<?php echo esc_html( $important ); ?>;
268 263 }
269 264
265 +<?php if ( ! empty( $important ) ) { ?>
266 +.with_frm_style input[type=text],
267 +.with_frm_style input[type=password],
268 +.with_frm_style input[type=email],
269 +.with_frm_style input[type=number],
270 +.with_frm_style input[type=url],
271 +.with_frm_style input[type=tel],
272 +.with_frm_style input[type=phone],
273 +.with_frm_style input[type=search],
274 +.with_frm_style textarea,
275 +.frm_form_fields_style,
276 +.with_frm_style .frm_scroll_box .frm_opt_container,
277 +.frm_form_fields_active_style,
278 +.frm_form_fields_error_style,
279 +.with_frm_style .frm-card-element.StripeElement,
280 +.with_frm_style .chosen-container-multi .chosen-choices,
281 +.with_frm_style .chosen-container-single .chosen-single{
282 + background-image:none !important;
283 +}
284 +<?php } ?>
285 +
270 286 .with_frm_style select option {
271 287 color:<?php echo esc_html( $defaults['text_color'] ); ?>;
272 288 color:var(--text-color)<?php echo esc_html( $important ); ?>;
273 289 }
@@ -352,9 +368,9 @@
352 368 .with_frm_style select{
353 369 width:<?php echo esc_html( $defaults['auto_width'] ); ?>;
354 370 width:var(--auto-width)<?php echo esc_html( $important ); ?>;
355 371 max-width:100%;
356 - background-position-y: center;
372 + background-position-y: calc(50% + 3px);
357 373 }
358 374
359 375 .with_frm_style input[disabled],
360 376 .with_frm_style select[disabled],
@@ -599,10 +615,8 @@
599 615 <?php } else { ?>
600 616 padding:5px;
601 617 <?php } ?>
602 618 <?php if ( ! empty( $defaults['border_radius'] ) ) { ?>
603 - -moz-border-radius:<?php echo esc_html( $defaults['border_radius'] . $important ); ?>;
604 - -webkit-border-radius:<?php echo esc_html( $defaults['border_radius'] . $important ); ?>;
605 619 border-radius:<?php echo esc_html( $defaults['border_radius'] . $important ); ?>;
606 620 border-radius:var(--border-radius)<?php echo esc_html( $important ); ?>;
607 621 <?php } ?>
608 622 <?php if ( ! empty( $defaults['submit_font_size'] ) ) { ?>
@@ -669,8 +683,12 @@
669 683 .with_frm_style.frm_center_submit .frm_submit{
670 684 text-align:center;
671 685 }
672 686
687 +.with_frm_style.frm_center_submit .frm_flex.frm_submit {
688 + justify-content: center;
689 +}
690 +
673 691 .with_frm_style .frm_inline_success .frm_submit{
674 692 display: flex;
675 693 flex-direction: row;
676 694 align-items: center;
@@ -749,17 +767,23 @@
749 767 margin-top: -<?php echo absint( $loader_size / 2 ); ?>px;
750 768 margin-left: -<?php echo absint( $loader_size / 2 ); ?>px;
751 769 width: <?php echo absint( $loader_size ); ?>px;
752 770 height: <?php echo absint( $loader_size ); ?>px;
753 - -webkit-animation: spin 2s linear infinite;
754 - -moz-animation: spin 2s linear infinite;
755 - -o-animation: spin 2s linear infinite;
756 - animation: spin 2s linear infinite;
771 + animation: spin 2s linear infinite;
757 772 }
758 773
774 +.with_frm_style .frm_submit.frm_flex {
775 + align-items: center;
776 + gap: 2%;
777 +}
778 +
779 +.with_frm_style .frm_submit.frm_flex button.frm_button_submit ~ .frm_prev_page {
780 + order: -1;
781 +}
782 +
759 783 <?php
760 784 foreach ( $styles as $style ) {
761 - include( dirname( __FILE__ ) . '/_single_theme.css.php' );
785 + include __DIR__ . '/_single_theme.css.php';
762 786 unset( $style );
763 787 }
764 788
765 789 // Set it again since it may have been overridden.
@@ -894,9 +918,8 @@
894 918 <?php if ( FrmAppHelper::pro_is_installed() ) : ?>
895 919 .with_frm_style .frm_scale input[type=radio],
896 920 <?php endif; ?>
897 921 .with_frm_style .frm_checkbox input[type=checkbox]{
898 - -webkit-appearance: none;
899 922 appearance: none;
900 923 background-color: var(--bg-color);
901 924 flex: none;
902 925 display:inline-block !important;
@@ -956,10 +979,8 @@
956 979
957 980 .with_frm_style .frm_error_style,
958 981 .with_frm_style .frm_message,
959 982 .frm_success_style{
960 - -moz-border-radius:4px;
961 - -webkit-border-radius:4px;
962 983 border-radius:4px;
963 984 padding:15px;
964 985 }
965 986
@@ -1212,9 +1233,9 @@
1212 1233 background-repeat: no-repeat;
1213 1234 color: transparent !important;
1214 1235 }
1215 1236
1216 -<?php readfile( dirname( __FILE__ ) . '/frm_grids.css' ); ?>
1237 +<?php readfile( __DIR__ . '/frm_grids.css' ); ?>
1217 1238
1218 1239 .frm_conf_field.frm_left_container .frm_primary_label{
1219 1240 display:none;
1220 1241 }
@@ -1221,10 +1242,8 @@
1221 1242
1222 1243 .wp-editor-wrap *,
1223 1244 .wp-editor-wrap *:after,
1224 1245 .wp-editor-wrap *:before{
1225 - -webkit-box-sizing:content-box;
1226 - -moz-box-sizing:content-box;
1227 1246 box-sizing:content-box;
1228 1247 }
1229 1248
1230 1249 .with_frm_style .frm_grid,
@@ -1504,10 +1523,8 @@
1504 1523 border-width:<?php echo esc_html( $defaults['field_border_width'] ); ?>;
1505 1524 border-width:var(--field-border-width);
1506 1525 border-style:<?php echo esc_html( $defaults['field_border_style'] ); ?>;
1507 1526 border-style:var(--field-border-style);
1508 - -moz-border-radius:<?php echo esc_html( $defaults['border_radius'] ); ?>;
1509 - -webkit-border-radius:<?php echo esc_html( $defaults['border_radius'] ); ?>;
1510 1527 border-radius:<?php echo esc_html( $defaults['border_radius'] ); ?>;
1511 1528 border-radius:var(--border-radius);
1512 1529 width:<?php echo esc_html( $defaults['field_width'] ); ?>;
1513 1530 width:var(--field-width);
@@ -1515,10 +1532,8 @@
1515 1532 font-size:<?php echo esc_html( $defaults['field_font_size'] ); ?>;
1516 1533 font-size:var(--field-font-size);
1517 1534 padding:<?php echo esc_html( $defaults['field_pad'] ); ?>;
1518 1535 padding:var(--field-pad);
1519 - -webkit-box-sizing:border-box;
1520 - -moz-box-sizing:border-box;
1521 1536 box-sizing:border-box;
1522 1537 outline:none<?php echo esc_html( $important ); ?>;
1523 1538 font-weight:normal;
1524 1539 box-shadow:var(--box-shadow);
@@ -1531,10 +1546,8 @@
1531 1546 opacity:1;
1532 1547 background-color:transparent !important;
1533 1548 border:none !important;
1534 1549 font-weight:bold;
1535 - -moz-box-shadow:none;
1536 - -webkit-box-shadow:none;
1537 1550 width:auto !important;
1538 1551 height:auto !important;
1539 1552 box-shadow:none !important;
1540 1553 display:inline;
@@ -1554,10 +1567,8 @@
1554 1567 .frm_form_field.frm_total input:focus,
1555 1568 .frm_form_field.frm_total textarea:focus{
1556 1569 background-color:transparent;
1557 1570 border:none;
1558 - -moz-box-shadow:none;
1559 - -webkit-box-shadow:none;
1560 1571 box-shadow:none;
1561 1572 }
1562 1573
1563 1574 .frm_form_field.frm_label_justify .frm_primary_label{
@@ -1593,11 +1604,10 @@
1593 1604 .with_frm_style .frm_combo_inputs_container > .frm_form_subfield-last {
1594 1605 margin-bottom: 0 !important;
1595 1606 }
1596 1607
1608 +
1597 1609 <?php
1598 -FrmStylesHelper::maybe_include_font_icon_css();
1599 -
1600 1610 /**
1601 1611 * Call action so other plugins can add additional CSS.
1602 1612 *
1603 1613 * @param array $args {
@@ -1651,9 +1661,8 @@
1651 1661 max-width:302px;
1652 1662 border-right:1px solid #d3d3d3;
1653 1663 border-radius:4px;
1654 1664 box-shadow:2px 0px 4px -1px rgba(0,0,0,.08);
1655 - -moz-box-shadow:2px 0px 4px -1px rgba(0,0,0,.08);
1656 1665 }
1657 1666
1658 1667 .with_frm_style .g-recaptcha iframe,
1659 1668 .with_frm_style .frm-g-recaptcha iframe{