PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 5.4
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v5.4
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
formidable / css / _single_theme.css.php

_single_theme.css.php in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 5.4, at css/_single_theme.css.php

448 lines 20.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( ! defined( 'ABSPATH' ) ) {
3 die( 'You are not allowed to call this page directly.' );
4 }
5
6 $settings = FrmStylesHelper::get_settings_for_output( $style );
7 extract( $settings ); // phpcs:ignore WordPress.PHP.DontExtract
8
9 $important = empty( $important_style ) ? '' : ' !important';
10
11 $minus_icons = FrmStylesHelper::minus_icons();
12 $arrow_icons = FrmStylesHelper::arrow_icons();
13
14 ?>
15 .<?php echo esc_html( $style_class ); ?>{
16 <?php FrmStylesHelper::output_vars( $settings, $defaults ); ?>
17 }
18
19 .frm_forms.<?php echo esc_html( $style_class ); ?>{
20 max-width:<?php echo esc_html( $form_width . $important ); ?>;
21 direction:<?php echo esc_html( $direction . $important ); ?>;
22 <?php if ( 'rtl' === $direction ) { ?>
23 unicode-bidi:embed;
24 <?php } ?>
25 <?php if ( $center_form ) { ?>
26 margin:0 auto;
27 <?php } ?>
28 }
29
30 <?php if ( $center_form ) { ?>
31 .frm_inline_form.<?php echo esc_html( $style_class ); ?> form{
32 text-align:center;
33 }
34 <?php } ?>
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 <?php if ( ! empty( $field_margin ) ) { ?>
73 .<?php echo esc_html( $style_class ); ?> .form-field{
74 margin-bottom:<?php echo esc_html( $field_margin . $important ); ?>;
75 }
76 <?php } ?>
77
78 .<?php echo esc_html( $style_class ); ?> .form-field.frm_section_heading{
79 margin-bottom:0<?php echo esc_html( $important ); ?>;
80 }
81
82 .<?php echo esc_html( $style_class ); ?> p.description,
83 .<?php echo esc_html( $style_class ); ?> div.description,
84 .<?php echo esc_html( $style_class ); ?> div.frm_description,
85 .<?php echo esc_html( $style_class ); ?> .frm-show-form > div.frm_description,
86 .<?php echo esc_html( $style_class ); ?> .frm_error{
87 <?php if ( ! empty( $description_margin ) ) { ?>
88 margin:<?php echo esc_html( $description_margin . $important ); ?>;
89 <?php } ?>
90 padding:0;
91 <?php if ( ! empty( $font ) ) { ?>
92 font-family:<?php echo FrmAppHelper::kses( $font . $important ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>;
93 <?php } ?>
94 <?php if ( ! empty( $description_font_size ) ) { ?>
95 font-size:<?php echo esc_html( $description_font_size . $important ); ?>;
96 <?php } ?>
97 <?php if ( ! empty( $description_color ) ) { ?>
98 color:<?php echo esc_html( $description_color . $important ); ?>;
99 <?php } ?>
100 <?php if ( ! empty( $description_weight ) ) { ?>
101 font-weight:<?php echo esc_html( $description_weight . $important ); ?>;
102 <?php } ?>
103 <?php if ( ! empty( $description_align ) ) { ?>
104 text-align:<?php echo esc_html( $description_align . $important ); ?>;
105 <?php } ?>
106 <?php if ( ! empty( $description_style ) ) { ?>
107 font-style:<?php echo esc_html( $description_style . $important ); ?>;
108 <?php } ?>
109 max-width:100%;
110 }
111
112 /* Left and right labels */
113 <?php
114
115 $frm_settings = FrmAppHelper::get_settings();
116
117 if ( '' === $field_height || 'auto' === $field_height ) {
118 foreach ( array( 'left', 'right', 'inline' ) as $alignit ) {
119 ?>
120 .<?php echo esc_html( $style_class ); ?> .frm_<?php echo esc_html( $alignit ); ?>_container input[type=text],
121 .<?php echo esc_html( $style_class ); ?> .frm_<?php echo esc_html( $alignit ); ?>_container input[type=password],
122 .<?php echo esc_html( $style_class ); ?> .frm_<?php echo esc_html( $alignit ); ?>_container input[type=email],
123 .<?php echo esc_html( $style_class ); ?> .frm_<?php echo esc_html( $alignit ); ?>_container input[type=number],
124 .<?php echo esc_html( $style_class ); ?> .frm_<?php echo esc_html( $alignit ); ?>_container input[type=url],
125 .<?php echo esc_html( $style_class ); ?> .frm_<?php echo esc_html( $alignit ); ?>_container input[type=tel],
126 .<?php echo esc_html( $style_class ); ?> .frm_<?php echo esc_html( $alignit ); ?>_container input[type=file],
127 .<?php echo esc_html( $style_class ); ?> .frm_<?php echo esc_html( $alignit ); ?>_container input[type=search],
128 .<?php echo esc_html( $style_class ); ?> .frm_<?php echo esc_html( $alignit ); ?>_container select,
129 <?php } ?>
130 .<?php echo esc_html( $style_class ); ?> .frm_left_container select{
131 height:fit-content<?php echo esc_html( $important ); ?>;
132 }
133 <?php } ?>
134
135 .<?php echo esc_html( $style_class ); ?> .frm_form_field.frm_left_container{
136 grid-template-columns: <?php echo esc_html( $width ); ?> auto;
137 }
138
139 .<?php echo esc_html( $style_class ); ?> .frm_form_field.frm_right_container{
140 grid-template-columns: auto <?php echo esc_html( $width ); ?>;
141 }
142
143 .frm_form_field.frm_right_container{
144 grid-template-columns: auto 25%;
145 }
146
147 .<?php echo esc_html( $style_class ); ?> .frm_inline_container.frm_dynamic_select_container .frm_data_container,
148 .<?php echo esc_html( $style_class ); ?> .frm_inline_container.frm_dynamic_select_container .frm_opt_container{
149 display:inline<?php echo esc_html( $important ); ?>;
150 }
151
152 .<?php echo esc_html( $style_class ); ?> .frm_pos_right{
153 display:inline<?php echo esc_html( $important ); ?>;
154 width:<?php echo esc_html( $width . $important ); ?>;
155 }
156
157 .<?php echo esc_html( $style_class ); ?> .frm_none_container .frm_primary_label,
158 .<?php echo esc_html( $style_class ); ?> .frm_pos_none{
159 display:none<?php echo esc_html( $important ); ?>;
160 }
161
162 .<?php echo esc_html( $style_class ); ?> .frm_scale label{
163 <?php if ( ! empty( $check_weight ) ) { ?>
164 font-weight:<?php echo esc_html( $check_weight . $important ); ?>;
165 <?php } ?>
166 <?php if ( ! empty( $font ) ) { ?>
167 font-family:<?php echo FrmAppHelper::kses( $font . $important ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>;
168 <?php } ?>
169 <?php if ( ! empty( $check_font_size ) ) { ?>
170 font-size:<?php echo esc_html( $check_font_size . $important ); ?>;
171 <?php } ?>
172 <?php if ( ! empty( $check_label_color ) ) { ?>
173 color:<?php echo esc_html( $check_label_color . $important ); ?>;
174 <?php } ?>
175 }
176
177 /* These do not work if they are combined */
178 .<?php echo esc_html( $style_class ); ?> input::placeholder,
179 .<?php echo esc_html( $style_class ); ?> textarea::placeholder{
180 color: <?php echo esc_html( $text_color_disabled . $important ); ?>;
181 }
182 .<?php echo esc_html( $style_class ); ?> input::-webkit-input-placeholder,
183 .<?php echo esc_html( $style_class ); ?> textarea::-webkit-input-placeholder{
184 color: <?php echo esc_html( $text_color_disabled . $important ); ?>;
185 }
186 .<?php echo esc_html( $style_class ); ?> input::-moz-placeholder,
187 .<?php echo esc_html( $style_class ); ?> textarea::-moz-placeholder{
188 color: <?php echo esc_html( $text_color_disabled . $important ); ?>;
189 opacity: 1;
190 }
191 .<?php echo esc_html( $style_class ); ?> input:-ms-input-placeholder,
192 <?php echo esc_html( $style_class ); ?> textarea:-ms-input-placeholder{
193 color: <?php echo esc_html( $text_color_disabled . $important ); ?>;
194 }
195 .<?php echo esc_html( $style_class ); ?> input:-moz-placeholder,
196 .<?php echo esc_html( $style_class ); ?> textarea:-moz-placeholder{
197 color: <?php echo esc_html( $text_color_disabled . $important ); ?>;
198 }
199
200 .<?php echo esc_html( $style_class ); ?> .frm_default,
201 .<?php echo esc_html( $style_class ); ?> input.frm_default,
202 .<?php echo esc_html( $style_class ); ?> textarea.frm_default,
203 .<?php echo esc_html( $style_class ); ?> select.frm_default,
204 .<?php echo esc_html( $style_class ); ?> .placeholder,
205 .<?php echo esc_html( $style_class ); ?> .chosen-container-multi .chosen-choices li.search-field .default,
206 .<?php echo esc_html( $style_class ); ?> .chosen-container-single .chosen-default{
207 color: <?php echo esc_html( $text_color_disabled . $important ); ?>;
208 }
209
210 .<?php echo esc_html( $style_class ); ?> .form-field input:not([type=file]):focus,
211 .<?php echo esc_html( $style_class ); ?> select:focus,
212 .<?php echo esc_html( $style_class ); ?> textarea:focus,
213 .<?php echo esc_html( $style_class ); ?> .frm_focus_field input[type=text],
214 .<?php echo esc_html( $style_class ); ?> .frm_focus_field input[type=password],
215 .<?php echo esc_html( $style_class ); ?> .frm_focus_field input[type=email],
216 .<?php echo esc_html( $style_class ); ?> .frm_focus_field input[type=number],
217 .<?php echo esc_html( $style_class ); ?> .frm_focus_field input[type=url],
218 .<?php echo esc_html( $style_class ); ?> .frm_focus_field input[type=tel],
219 .<?php echo esc_html( $style_class ); ?> .frm_focus_field input[type=search],
220 .frm_form_fields_active_style,
221 .<?php echo esc_html( $style_class ); ?> .frm_focus_field .frm-card-element.StripeElement,
222 .<?php echo esc_html( $style_class ); ?> .chosen-container-single.chosen-container-active .chosen-single,
223 .<?php echo esc_html( $style_class ); ?> .chosen-container-active .chosen-choices{
224 background-color:<?php echo esc_html( $bg_color_active . $important ); ?>;
225 border-color:<?php echo esc_html( $border_color_active . $important ); ?>;
226 color: var(--text-color);
227 <?php if ( isset( $remove_box_shadow_active ) && $remove_box_shadow_active ) { ?>
228 box-shadow:none;
229 outline: none;
230 <?php } else { ?>
231 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);
232 <?php } ?>
233 }
234
235 <?php if ( ! $submit_style ) { ?>
236 .<?php echo esc_html( $style_class ); ?> .frm_compact .frm_dropzone.dz-clickable .dz-message,
237 .<?php echo esc_html( $style_class ); ?> input[type=submit],
238 .<?php echo esc_html( $style_class ); ?> .frm_submit input[type=button],
239 .<?php echo esc_html( $style_class ); ?> .frm_submit button,
240 .frm_form_submit_style,
241 .<?php echo esc_html( $style_class ); ?> .frm-edit-page-btn {
242 width:<?php echo esc_html( ( $submit_width == '' ? 'auto' : $submit_width ) . $important ); ?>;
243 <?php if ( ! empty( $font ) ) { ?>
244 font-family:<?php echo FrmAppHelper::kses( $font ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>;
245 <?php } ?>
246 font-size:<?php echo esc_html( $submit_font_size . $important ); ?>;
247 height:<?php echo esc_html( $submit_height . $important ); ?>;
248 line-height:normal<?php echo esc_html( $important ); ?>;
249 text-align:center;
250 background:
251 <?php
252 echo esc_html( $submit_bg_color );
253 if ( ! empty( $submit_bg_img ) ) {
254 echo esc_html( ' url(' . $submit_bg_img . ')' );
255 }
256 echo esc_html( $important );
257 ?>
258 ;
259 border-width:<?php echo esc_html( $submit_border_width ); ?>;
260 border-color: <?php echo esc_html( $submit_border_color . $important ); ?>;
261 border-style:solid;
262 color:<?php echo esc_html( $submit_text_color . $important ); ?>;
263 cursor:pointer;
264 font-weight:<?php echo esc_html( $submit_weight . $important ); ?>;
265 -moz-border-radius:<?php echo esc_html( $submit_border_radius . $important ); ?>;
266 -webkit-border-radius:<?php echo esc_html( $submit_border_radius . $important ); ?>;
267 border-radius:<?php echo esc_html( $submit_border_radius . $important ); ?>;
268 text-shadow:none;
269 padding:<?php echo esc_html( $submit_padding . $important ); ?>;
270 -moz-box-sizing:border-box;
271 box-sizing:border-box;
272 -ms-box-sizing:border-box;
273 <?php if ( ! empty( $submit_shadow_color ) ) { ?>
274 -moz-box-shadow:0 1px 1px <?php echo esc_html( $submit_shadow_color ); ?>;
275 -webkit-box-shadow:0 1px 1px <?php echo esc_html( $submit_shadow_color ); ?>;
276 box-shadow:0 1px 1px <?php echo esc_html( $submit_shadow_color ); ?>;
277 <?php } ?>
278 margin:<?php echo esc_html( $submit_margin ); ?>;
279 <?php
280 // For reverse compatibility... But allow "10px 10px".
281 if ( strpos( trim( $submit_margin ), ' ' ) === false ) {
282 ?>
283 margin-left:0;
284 margin-right:0;
285 <?php } ?>
286 vertical-align:middle;
287 }
288
289 .<?php echo esc_html( $style_class ); ?> .frm_compact .frm_dropzone.dz-clickable .dz-message{
290 margin:0;
291 }
292
293 <?php if ( empty( $submit_bg_img ) ) { ?>
294 .<?php echo esc_html( $style_class ); ?> .frm-edit-page-btn:hover,
295 .<?php echo esc_html( $style_class ); ?> input[type=submit]:hover,
296 .<?php echo esc_html( $style_class ); ?> .frm_submit input[type=button]:hover,
297 .<?php echo esc_html( $style_class ); ?> .frm_submit button:hover{
298 background: <?php echo esc_html( $submit_hover_bg_color . $important ); ?>;
299 border-color: <?php echo esc_html( $submit_hover_border_color . $important ); ?>;
300 color: <?php echo esc_html( $submit_hover_color . $important ); ?>;
301 }
302
303 .<?php echo esc_html( $style_class ); ?>.frm_center_submit .frm_submit .frm_ajax_loading{
304 margin-bottom:<?php echo esc_html( $submit_margin ); ?>;
305 }
306
307 .<?php echo esc_html( $style_class ); ?> .frm-edit-page-btn:focus,
308 .<?php echo esc_html( $style_class ); ?> input[type=submit]:focus,
309 .<?php echo esc_html( $style_class ); ?> .frm_submit input[type=button]:focus,
310 .<?php echo esc_html( $style_class ); ?> .frm_submit button:focus,
311 .<?php echo esc_html( $style_class ); ?> input[type=submit]:active,
312 .<?php echo esc_html( $style_class ); ?> .frm_submit input[type=button]:active,
313 .<?php echo esc_html( $style_class ); ?> .frm_submit button:active{
314 background: <?php echo esc_html( $submit_active_bg_color . $important ); ?>;
315 border-color: <?php echo esc_html( $submit_active_border_color . $important ); ?>;
316 color: <?php echo esc_html( $submit_active_color . $important ); ?>;
317 outline: none;
318 }
319
320 .<?php echo esc_html( $style_class ); ?> .frm_loading_prev .frm_prev_page,
321 .<?php echo esc_html( $style_class ); ?> .frm_loading_prev .frm_prev_page:hover,
322 .<?php echo esc_html( $style_class ); ?> .frm_loading_prev .frm_prev_page:active,
323 .<?php echo esc_html( $style_class ); ?> .frm_loading_prev .frm_prev_page:focus,
324 .<?php echo esc_html( $style_class ); ?> .frm_loading_form .frm_button_submit,
325 .<?php echo esc_html( $style_class ); ?> .frm_loading_form .frm_button_submit:hover,
326 .<?php echo esc_html( $style_class ); ?> .frm_loading_form .frm_button_submit:active,
327 .<?php echo esc_html( $style_class ); ?> .frm_loading_form .frm_button_submit:focus{
328 color: transparent <?php echo esc_html( $important ); ?>;
329 background: <?php echo esc_html( $submit_bg_color . $important ); ?>;
330 }
331
332 .<?php echo esc_html( $style_class ); ?> .frm_loading_prev .frm_prev_page:before,
333 .<?php echo esc_html( $style_class ); ?> .frm_loading_form .frm_button_submit:before {
334 border-bottom-color: <?php echo esc_html( $submit_text_color . $important ); ?>;
335 border-right-color: <?php echo esc_html( $submit_text_color . $important ); ?>;
336 <?php if ( $submit_height !== 'auto' ) { ?>
337 max-height:<?php echo esc_html( $submit_height ); ?>;
338 <?php } ?>
339 <?php if ( $submit_width !== 'auto' ) { ?>
340 max-width:<?php echo esc_html( $submit_width ); ?>;
341 <?php } ?>
342 }
343 <?php
344 }
345 }
346 ?>
347
348 .<?php echo esc_html( $style_class ); ?>.frm_inline_top .frm_submit::before,
349 .<?php echo esc_html( $style_class ); ?> .frm_submit.frm_inline_submit::before {
350 content:"before";
351 <?php if ( ! empty( $font ) ) { ?>
352 font-family:<?php echo FrmAppHelper::kses( $font ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>;
353 <?php } ?>
354 font-size:<?php echo esc_html( $font_size . $important ); ?>;
355 color:<?php echo esc_html( $label_color . $important ); ?>;
356 font-weight:<?php echo esc_html( $weight . $important ); ?>;
357 margin:0;
358 padding:<?php echo esc_html( $label_padding . $important ); ?>;
359 width:auto;
360 display:block;
361 visibility:hidden;
362 }
363
364 .<?php echo esc_html( $style_class ); ?>.frm_inline_form .frm_submit input,
365 .<?php echo esc_html( $style_class ); ?>.frm_inline_form .frm_submit button,
366 .<?php echo esc_html( $style_class ); ?> .frm_submit.frm_inline_submit input,
367 .<?php echo esc_html( $style_class ); ?> .frm_submit.frm_inline_submit button {
368 margin: 0 !important;
369 }
370
371 .<?php echo esc_html( $style_class ); ?> #frm_field_cptch_number_container{
372 <?php if ( ! empty( $font ) ) { ?>
373 font-family:<?php echo FrmAppHelper::kses( $font ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>;
374 <?php } ?>
375 font-size:<?php echo esc_html( $font_size . $important ); ?>;
376 color:<?php echo esc_html( $label_color . $important ); ?>;
377 font-weight:<?php echo esc_html( $weight . $important ); ?>;
378 clear:both;
379 }
380
381 .<?php echo esc_html( $style_class ); ?> .frm_blank_field input[type=text],
382 .<?php echo esc_html( $style_class ); ?> .frm_blank_field input[type=password],
383 .<?php echo esc_html( $style_class ); ?> .frm_blank_field input[type=url],
384 .<?php echo esc_html( $style_class ); ?> .frm_blank_field input[type=tel],
385 .<?php echo esc_html( $style_class ); ?> .frm_blank_field input[type=number],
386 .<?php echo esc_html( $style_class ); ?> .frm_blank_field input[type=email],
387 .<?php echo esc_html( $style_class ); ?> .frm_blank_field textarea,
388 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .mce-edit-area iframe,
389 .<?php echo esc_html( $style_class ); ?> .frm_blank_field select:not(.ui-datepicker-month):not(.ui-datepicker-year),
390 .frm_form_fields_error_style,
391 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .frm-g-recaptcha iframe,
392 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .g-recaptcha iframe,
393 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .frm-card-element.StripeElement,
394 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .chosen-container-multi .chosen-choices,
395 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .chosen-container-single .chosen-single,
396 .<?php echo esc_html( $style_class ); ?> .frm_form_field :invalid{
397 color:<?php echo esc_html( $text_color_error . $important ); ?>;
398 background-color:<?php echo esc_html( $bg_color_error . $important ); ?>;
399 border-color:<?php echo esc_html( $border_color_error . $important ); ?>;
400 border-width:<?php echo esc_html( $border_width_error . $important ); ?>;
401 border-style:<?php echo esc_html( $border_style_error . $important ); ?>;
402 }
403
404 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .sigWrapper{
405 border-color:<?php echo esc_html( $border_color_error ); ?> !important;
406 }
407
408 .<?php echo esc_html( $style_class ); ?> .frm_error{
409 font-weight:<?php echo esc_html( $weight . $important ); ?>;
410 }
411
412 .<?php echo esc_html( $style_class ); ?> .frm_blank_field label,
413 .<?php echo esc_html( $style_class ); ?> .frm_error{
414 color:<?php echo esc_html( $border_color_error . $important ); ?>;
415 }
416
417 .<?php echo esc_html( $style_class ); ?> .frm_error_style{
418 background-color:<?php echo esc_html( $error_bg . $important ); ?>;
419 border:1px solid <?php echo esc_html( $error_border . $important ); ?>;
420 border-radius:<?php echo esc_html( $border_radius . $important ); ?>;
421 color: <?php echo esc_html( $error_text . $important ); ?>;
422 font-size:<?php echo esc_html( $error_font_size . $important ); ?>;
423 margin:0;
424 margin-bottom:<?php echo esc_html( $field_margin ); ?>;
425 }
426
427 .<?php echo esc_html( $style_class ); ?> #frm_loading .progress-striped .progress-bar{
428 background-image:linear-gradient(45deg, <?php echo esc_html( $border_color ); ?> 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, <?php echo esc_html( $border_color ); ?> 50%, <?php echo esc_html( $border_color ); ?> 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));
429 }
430
431 .<?php echo esc_html( $style_class ); ?> #frm_loading .progress-bar{
432 background-color:<?php echo esc_html( $bg_color . $important ); ?>;
433 }
434
435 .<?php echo esc_html( $style_class ); ?> .frm_form_field.frm_total_big input,
436 .<?php echo esc_html( $style_class ); ?> .frm_form_field.frm_total_big textarea,
437 .<?php echo esc_html( $style_class ); ?> .frm_form_field.frm_total input,
438 .<?php echo esc_html( $style_class ); ?> .frm_form_field.frm_total textarea{
439 color: <?php echo esc_html( $text_color . $important ); ?>;
440 background-color:transparent<?php echo esc_html( $important ); ?>;
441 border:none<?php echo esc_html( $important ); ?>;
442 display:inline<?php echo esc_html( $important ); ?>;
443 width:auto<?php echo esc_html( $important ); ?>;
444 padding:0<?php echo esc_html( $important ); ?>;
445 }
446
447 <?php do_action( 'frm_output_single_style', $settings ); ?>
448