PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.12
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.12
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 +22 -57 6.36.12 View file →
@@ -32,44 +32,8 @@
32 32 text-align:center;
33 33 }
34 34 <?php } ?>
35 35
36 -<?php if ( ! empty( $label_color ) ) { ?>
37 -.<?php echo esc_html( $style_class ); ?> .frm_icon_font{
38 - color:<?php echo esc_html( $label_color . $important ); ?>;
39 -}
40 -<?php } ?>
41 -
42 -.<?php echo esc_html( $style_class ); ?> .frm_icon_font.frm_minus_icon:before{
43 - content:"\e<?php echo esc_html( isset( $minus_icons[ $repeat_icon ] ) ? $minus_icons[ $repeat_icon ]['-'] : $minus_icons[1]['-'] ); ?>";
44 -}
45 -
46 -.<?php echo esc_html( $style_class ); ?> .frm_icon_font.frm_plus_icon:before{
47 - content:"\e<?php echo esc_html( isset( $minus_icons[ $repeat_icon ] ) ? $minus_icons[ $repeat_icon ]['+'] : $minus_icons[1]['+'] ); ?>";
48 -}
49 -
50 -.<?php echo esc_html( $style_class ); ?> .frm_icon_font.frm_minus_icon:before,
51 -.<?php echo esc_html( $style_class ); ?> .frm_icon_font.frm_plus_icon:before{
52 - <?php if ( ! empty( $submit_text_color ) ) { ?>
53 - color:<?php echo esc_html( $submit_text_color . $important ); ?>;
54 - <?php } ?>
55 - vertical-align:middle;
56 -}
57 -
58 -.<?php echo esc_html( $style_class ); ?> .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{
59 - content:"\e<?php echo esc_html( isset( $arrow_icons[ $collapse_icon ] ) ? $arrow_icons[ $collapse_icon ]['-'] : $arrow_icons[1]['-'] ); ?>";
60 - <?php if ( ! empty( $section_color ) ) { ?>
61 - color:<?php echo esc_html( $section_color . $important ); ?>;
62 - <?php } ?>
63 -}
64 -
65 -.<?php echo esc_html( $style_class ); ?> .frm_trigger .frm_icon_font.frm_arrow_icon:before{
66 - content:"\e<?php echo esc_html( isset( $arrow_icons[ $collapse_icon ] ) ? $arrow_icons[ $collapse_icon ]['+'] : $arrow_icons[1]['+'] ); ?>";
67 - <?php if ( ! empty( $section_color ) ) { ?>
68 - color:<?php echo esc_html( $section_color . $important ); ?>;
69 - <?php } ?>
70 -}
71 -
72 36 <?php if ( ! empty( $field_margin ) ) { ?>
73 37 .<?php echo esc_html( $style_class ); ?> .form-field{
74 38 margin-bottom:<?php echo esc_html( $field_margin . $important ); ?>;
75 39 }
@@ -86,8 +50,10 @@
86 50 .<?php echo esc_html( $style_class ); ?> .frm_error,
87 51 .<?php echo esc_html( $style_class ); ?> .frm_pro_max_limit_desc{
88 52 <?php if ( ! empty( $description_margin ) ) { ?>
89 53 margin:<?php echo esc_html( $description_margin . $important ); ?>;
54 + <?php } else { ?>
55 + margin-top: 6px;
90 56 <?php } ?>
91 57 padding:0;
92 58 <?php if ( ! empty( $font ) ) { ?>
93 59 font-family:<?php echo FrmAppHelper::kses( $font . $important ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>;
@@ -159,8 +125,9 @@
159 125 .<?php echo esc_html( $style_class ); ?> .frm_pos_none{
160 126 display:none<?php echo esc_html( $important ); ?>;
161 127 }
162 128
129 +<?php if ( FrmAppHelper::pro_is_installed() ) : ?>
163 130 .<?php echo esc_html( $style_class ); ?> .frm_scale label{
164 131 <?php if ( ! empty( $check_weight ) ) { ?>
165 132 font-weight:<?php echo esc_html( $check_weight . $important ); ?>;
166 133 <?php } ?>
@@ -173,8 +140,9 @@
173 140 <?php if ( ! empty( $check_label_color ) ) { ?>
174 141 color:<?php echo esc_html( $check_label_color . $important ); ?>;
175 142 <?php } ?>
176 143 }
144 +<?php endif; ?>
177 145
178 146 /* These do not work if they are combined */
179 147 .<?php echo esc_html( $style_class ); ?> input::placeholder,
180 148 .<?php echo esc_html( $style_class ); ?> textarea::placeholder{
@@ -185,9 +153,8 @@
185 153 color: <?php echo esc_html( $text_color_disabled . $important ); ?>;
186 154 }
187 155 .<?php echo esc_html( $style_class ); ?> input::-moz-placeholder,
188 156 .<?php echo esc_html( $style_class ); ?> textarea::-moz-placeholder{
189 - color: <?php echo esc_html( $text_color_disabled . $important ); ?>;
190 157 opacity: 1;
191 158 }
192 159 .<?php echo esc_html( $style_class ); ?> input:-ms-input-placeholder,
193 160 <?php echo esc_html( $style_class ); ?> textarea:-ms-input-placeholder{
@@ -192,24 +159,22 @@
192 159 .<?php echo esc_html( $style_class ); ?> input:-ms-input-placeholder,
193 160 <?php echo esc_html( $style_class ); ?> textarea:-ms-input-placeholder{
194 161 color: <?php echo esc_html( $text_color_disabled . $important ); ?>;
195 162 }
196 -.<?php echo esc_html( $style_class ); ?> input:-moz-placeholder,
197 -.<?php echo esc_html( $style_class ); ?> textarea:-moz-placeholder{
198 - color: <?php echo esc_html( $text_color_disabled . $important ); ?>;
199 -}
200 163
201 164 .<?php echo esc_html( $style_class ); ?> .frm_default,
202 165 .<?php echo esc_html( $style_class ); ?> input.frm_default,
203 166 .<?php echo esc_html( $style_class ); ?> textarea.frm_default,
204 167 .<?php echo esc_html( $style_class ); ?> select.frm_default,
205 -.<?php echo esc_html( $style_class ); ?> .placeholder,
168 +<?php if ( $use_chosen_js ) { ?>
206 169 .<?php echo esc_html( $style_class ); ?> .chosen-container-multi .chosen-choices li.search-field .default,
207 -.<?php echo esc_html( $style_class ); ?> .chosen-container-single .chosen-default{
170 +.<?php echo esc_html( $style_class ); ?> .chosen-container-single .chosen-default,
171 +<?php } ?>
172 +.<?php echo esc_html( $style_class ); ?> .placeholder {
208 173 color: <?php echo esc_html( $text_color_disabled . $important ); ?>;
209 174 }
210 175
211 -.<?php echo esc_html( $style_class ); ?> .form-field input:not([type=file]):focus,
176 +.<?php echo esc_html( $style_class ); ?> .form-field input:not([type=file]):not([type=range]):not([readonly]):focus,
212 177 .<?php echo esc_html( $style_class ); ?> select:focus,
213 178 .<?php echo esc_html( $style_class ); ?> textarea:focus,
214 179 .<?php echo esc_html( $style_class ); ?> .frm_focus_field input[type=text],
215 180 .<?php echo esc_html( $style_class ); ?> .frm_focus_field input[type=password],
@@ -218,11 +183,13 @@
218 183 .<?php echo esc_html( $style_class ); ?> .frm_focus_field input[type=url],
219 184 .<?php echo esc_html( $style_class ); ?> .frm_focus_field input[type=tel],
220 185 .<?php echo esc_html( $style_class ); ?> .frm_focus_field input[type=search],
221 186 .frm_form_fields_active_style,
222 -.<?php echo esc_html( $style_class ); ?> .frm_focus_field .frm-card-element.StripeElement,
187 +<?php if ( $use_chosen_js ) { ?>
223 188 .<?php echo esc_html( $style_class ); ?> .chosen-container-single.chosen-container-active .chosen-single,
224 -.<?php echo esc_html( $style_class ); ?> .chosen-container-active .chosen-choices{
189 +.<?php echo esc_html( $style_class ); ?> .chosen-container-active .chosen-choices,
190 +<?php } ?>
191 +.<?php echo esc_html( $style_class ); ?> .frm_focus_field .frm-card-element.StripeElement {
225 192 background-color:<?php echo esc_html( $bg_color_active . $important ); ?>;
226 193 border-color:<?php echo esc_html( $border_color_active . $important ); ?>;
227 194 color: var(--text-color);
228 195 <?php if ( isset( $remove_box_shadow_active ) && $remove_box_shadow_active ) { ?>
@@ -228,9 +195,9 @@
228 195 <?php if ( isset( $remove_box_shadow_active ) && $remove_box_shadow_active ) { ?>
229 196 box-shadow:none;
230 197 outline: none;
231 198 <?php } else { ?>
232 - 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);
199 + box-shadow:0px 0px 5px 0px rgba(<?php echo esc_html( FrmStylesHelper::hex2rgb( $border_color_active ) ); ?>, 0.6);
233 200 <?php } ?>
234 201 }
235 202
236 203 <?php if ( ! $submit_style ) { ?>
@@ -256,25 +223,21 @@
256 223 }
257 224 echo esc_html( $important );
258 225 ?>
259 226 ;
227 + <?php if ( '' !== $submit_border_width ) : ?>
260 228 border-width:<?php echo esc_html( $submit_border_width ); ?>;
229 + <?php endif; ?>
261 230 border-color: <?php echo esc_html( $submit_border_color . $important ); ?>;
262 231 border-style:solid;
263 232 color:<?php echo esc_html( $submit_text_color . $important ); ?>;
264 233 cursor:pointer;
265 234 font-weight:<?php echo esc_html( $submit_weight . $important ); ?>;
266 - -moz-border-radius:<?php echo esc_html( $submit_border_radius . $important ); ?>;
267 - -webkit-border-radius:<?php echo esc_html( $submit_border_radius . $important ); ?>;
268 235 border-radius:<?php echo esc_html( $submit_border_radius . $important ); ?>;
269 236 text-shadow:none;
270 237 padding:<?php echo esc_html( $submit_padding . $important ); ?>;
271 - -moz-box-sizing:border-box;
272 238 box-sizing:border-box;
273 - -ms-box-sizing:border-box;
274 239 <?php if ( ! empty( $submit_shadow_color ) ) { ?>
275 - -moz-box-shadow:0 1px 1px <?php echo esc_html( $submit_shadow_color ); ?>;
276 - -webkit-box-shadow:0 1px 1px <?php echo esc_html( $submit_shadow_color ); ?>;
277 240 box-shadow:0 1px 1px <?php echo esc_html( $submit_shadow_color ); ?>;
278 241 <?php } ?>
279 242 margin:<?php echo esc_html( $submit_margin ); ?>;
280 243 <?php
@@ -327,8 +290,9 @@
327 290 .<?php echo esc_html( $style_class ); ?> .frm_loading_form .frm_button_submit:active,
328 291 .<?php echo esc_html( $style_class ); ?> .frm_loading_form .frm_button_submit:focus{
329 292 color: transparent <?php echo esc_html( $important ); ?>;
330 293 background: <?php echo esc_html( $submit_bg_color . $important ); ?>;
294 + border-color: <?php echo esc_html( $submit_bg_color . $important ); ?>;
331 295 }
332 296
333 297 .<?php echo esc_html( $style_class ); ?> .frm_loading_prev .frm_prev_page:before,
334 298 .<?php echo esc_html( $style_class ); ?> .frm_loading_form .frm_button_submit:before {
@@ -341,10 +305,10 @@
341 305 max-width:<?php echo esc_html( $submit_width ); ?>;
342 306 <?php } ?>
343 307 }
344 308 <?php
345 - }
346 -}
309 + }//end if
310 +}//end if
347 311 ?>
348 312
349 313 .<?php echo esc_html( $style_class ); ?>.frm_inline_top .frm_submit::before,
350 314 .<?php echo esc_html( $style_class ); ?> .frm_submit.frm_inline_submit::before {
@@ -391,11 +355,13 @@
391 355 .frm_form_fields_error_style,
392 356 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .frm-g-recaptcha iframe,
393 357 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .g-recaptcha iframe,
394 358 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .frm-card-element.StripeElement,
359 +<?php if ( $use_chosen_js ) { ?>
395 360 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .chosen-container-multi .chosen-choices,
396 361 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .chosen-container-single .chosen-single,
397 -.<?php echo esc_html( $style_class ); ?> .frm_form_field :invalid{
362 +<?php } ?>
363 +.<?php echo esc_html( $style_class ); ?> .frm_form_field :invalid {
398 364 color:<?php echo esc_html( $text_color_error . $important ); ?>;
399 365 background-color:<?php echo esc_html( $bg_color_error . $important ); ?>;
400 366 border-color:<?php echo esc_html( $border_color_error . $important ); ?>;
401 367 border-width:<?php echo esc_html( $border_width_error . $important ); ?>;
@@ -410,9 +376,8 @@
410 376 .<?php echo esc_html( $style_class ); ?> .frm_limit_error{
411 377 font-weight:<?php echo esc_html( $weight . $important ); ?>;
412 378 }
413 379
414 -.<?php echo esc_html( $style_class ); ?> .frm_blank_field label,
415 380 .<?php echo esc_html( $style_class ); ?> .frm_error,
416 381 .<?php echo esc_html( $style_class ); ?> .frm_limit_error{
417 382 color:<?php echo esc_html( $border_color_error . $important ); ?>;
418 383 }