PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.3
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.3
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 6.3, at css/_single_theme.css.php

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