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

445 lines 20.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 $settings = FrmStylesHelper::get_settings_for_output( $style );
4 extract( $settings );
5
6 $important = empty( $important_style ) ? '' : ' !important';
7
8 $minus_icons = FrmStylesHelper::minus_icons();
9 $arrow_icons = FrmStylesHelper::arrow_icons();
10
11 ?>
12 .<?php echo esc_html( $style_class ); ?>{
13 <?php FrmStylesHelper::output_vars( $settings, $defaults ); ?>
14 }
15
16 .frm_forms.<?php echo esc_html( $style_class ); ?>{
17 max-width:<?php echo esc_html( $form_width . $important ); ?>;
18 direction:<?php echo esc_html( $direction . $important ); ?>;
19 <?php if ( 'rtl' == $direction ) { ?>
20 unicode-bidi:embed;
21 <?php } ?>
22 <?php if ( $center_form ) { ?>
23 margin:0 auto;
24 <?php } ?>
25 }
26
27 <?php if ( $center_form ) { ?>
28 .frm_inline_form.<?php echo esc_html( $style_class ); ?> form{
29 text-align:center;
30 }
31 <?php } ?>
32
33 <?php if ( ! empty( $label_color ) ) { ?>
34 .<?php echo esc_html( $style_class ); ?> .frm_icon_font{
35 color:<?php echo esc_html( $label_color . $important ); ?>;
36 }
37 <?php } ?>
38
39 .<?php echo esc_html( $style_class ); ?> .frm_icon_font.frm_minus_icon:before{
40 content:"\e<?php echo esc_html( isset( $minus_icons[ $repeat_icon ] ) ? $minus_icons[ $repeat_icon ]['-'] : $minus_icons[1]['-'] ); ?>";
41 }
42
43 .<?php echo esc_html( $style_class ); ?> .frm_icon_font.frm_plus_icon:before{
44 content:"\e<?php echo esc_html( isset( $minus_icons[ $repeat_icon ] ) ? $minus_icons[ $repeat_icon ]['+'] : $minus_icons[1]['+'] ); ?>";
45 }
46
47 .<?php echo esc_html( $style_class ); ?> .frm_icon_font.frm_minus_icon:before,
48 .<?php echo esc_html( $style_class ); ?> .frm_icon_font.frm_plus_icon:before{
49 <?php if ( ! empty( $submit_text_color ) ) { ?>
50 color:<?php echo esc_html( $submit_text_color . $important ); ?>;
51 <?php } ?>
52 vertical-align:middle;
53 }
54
55 .<?php echo esc_html( $style_class ); ?> .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{
56 content:"\e<?php echo esc_html( isset( $arrow_icons[ $collapse_icon ] ) ? $arrow_icons[ $collapse_icon ]['-'] : $arrow_icons[1]['-'] ); ?>";
57 <?php if ( ! empty( $section_color ) ) { ?>
58 color:<?php echo esc_html( $section_color . $important ); ?>;
59 <?php } ?>
60 }
61
62 .<?php echo esc_html( $style_class ); ?> .frm_trigger .frm_icon_font.frm_arrow_icon:before{
63 content:"\e<?php echo esc_html( isset( $arrow_icons[ $collapse_icon ] ) ? $arrow_icons[ $collapse_icon ]['+'] : $arrow_icons[1]['+'] ); ?>";
64 <?php if ( ! empty( $section_color ) ) { ?>
65 color:<?php echo esc_html( $section_color . $important ); ?>;
66 <?php } ?>
67 }
68
69 <?php if ( ! empty( $field_margin ) ) { ?>
70 .<?php echo esc_html( $style_class ); ?> .form-field{
71 margin-bottom:<?php echo esc_html( $field_margin . $important ); ?>;
72 }
73 <?php } ?>
74
75 .<?php echo esc_html( $style_class ); ?> .form-field.frm_section_heading{
76 margin-bottom:0<?php echo esc_html( $important ); ?>;
77 }
78
79 .<?php echo esc_html( $style_class ); ?> p.description,
80 .<?php echo esc_html( $style_class ); ?> div.description,
81 .<?php echo esc_html( $style_class ); ?> div.frm_description,
82 .<?php echo esc_html( $style_class ); ?> .frm-show-form > div.frm_description,
83 .<?php echo esc_html( $style_class ); ?> .frm_error{
84 <?php if ( ! empty( $description_margin ) ) { ?>
85 margin:<?php echo esc_html( $description_margin . $important ); ?>;
86 <?php } ?>
87 padding:0;
88 <?php if ( ! empty( $font ) ) { ?>
89 font-family:<?php echo FrmAppHelper::kses( $font . $important ); // WPCS: XSS ok. ?>;
90 <?php } ?>
91 <?php if ( ! empty( $description_font_size ) ) { ?>
92 font-size:<?php echo esc_html( $description_font_size . $important ); ?>;
93 <?php } ?>
94 <?php if ( ! empty( $description_color ) ) { ?>
95 color:<?php echo esc_html( $description_color . $important ); ?>;
96 <?php } ?>
97 <?php if ( ! empty( $description_weight ) ) { ?>
98 font-weight:<?php echo esc_html( $description_weight . $important ); ?>;
99 <?php } ?>
100 <?php if ( ! empty( $description_align ) ) { ?>
101 text-align:<?php echo esc_html( $description_align . $important ); ?>;
102 <?php } ?>
103 <?php if ( ! empty( $description_style ) ) { ?>
104 font-style:<?php echo esc_html( $description_style . $important ); ?>;
105 <?php } ?>
106 max-width:100%;
107 }
108
109 /* Left and right labels */
110 <?php
111
112 $frm_settings = FrmAppHelper::get_settings();
113
114 if ( '' === $field_height || 'auto' === $field_height ) {
115 foreach ( array( 'left', 'right', 'inline' ) as $alignit ) {
116 ?>
117 .<?php echo esc_html( $style_class ); ?> .frm_<?php echo esc_html( $alignit ); ?>_container input[type=text],
118 .<?php echo esc_html( $style_class ); ?> .frm_<?php echo esc_html( $alignit ); ?>_container input[type=password],
119 .<?php echo esc_html( $style_class ); ?> .frm_<?php echo esc_html( $alignit ); ?>_container input[type=email],
120 .<?php echo esc_html( $style_class ); ?> .frm_<?php echo esc_html( $alignit ); ?>_container input[type=number],
121 .<?php echo esc_html( $style_class ); ?> .frm_<?php echo esc_html( $alignit ); ?>_container input[type=url],
122 .<?php echo esc_html( $style_class ); ?> .frm_<?php echo esc_html( $alignit ); ?>_container input[type=tel],
123 .<?php echo esc_html( $style_class ); ?> .frm_<?php echo esc_html( $alignit ); ?>_container input[type=file],
124 .<?php echo esc_html( $style_class ); ?> .frm_<?php echo esc_html( $alignit ); ?>_container input[type=search],
125 .<?php echo esc_html( $style_class ); ?> .frm_<?php echo esc_html( $alignit ); ?>_container select,
126 <?php } ?>
127 .<?php echo esc_html( $style_class ); ?> .frm_left_container select{
128 <?php if ( $frm_settings->old_css ) { ?>
129 height:auto<?php echo esc_html( $important ); ?>;
130 <?php } else { ?>
131 height:fit-content<?php echo esc_html( $important ); ?>;
132 <?php } ?>
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 ); // WPCS: XSS ok. ?>;
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 }
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 <?php if ( isset( $remove_box_shadow_active ) && $remove_box_shadow_active ) { ?>
227 box-shadow:none;
228 <?php } else { ?>
229 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);
230 <?php } ?>
231 }
232
233 <?php if ( ! $submit_style ) { ?>
234 .<?php echo esc_html( $style_class ); ?> .frm_compact .frm_dropzone.dz-clickable .dz-message,
235 .<?php echo esc_html( $style_class ); ?> input[type=submit],
236 .<?php echo esc_html( $style_class ); ?> .frm_submit input[type=button],
237 .<?php echo esc_html( $style_class ); ?> .frm_submit button,
238 .frm_form_submit_style,
239 .<?php echo esc_html( $style_class ); ?> .frm-edit-page-btn {
240 width:<?php echo esc_html( ( $submit_width == '' ? 'auto' : $submit_width ) . $important ); ?>;
241 <?php if ( ! empty( $font ) ) { ?>
242 font-family:<?php echo FrmAppHelper::kses( $font ); // WPCS: XSS ok. ?>;
243 <?php } ?>
244 font-size:<?php echo esc_html( $submit_font_size . $important ); ?>;
245 height:<?php echo esc_html( $submit_height . $important ); ?>;
246 line-height:normal<?php echo esc_html( $important ); ?>;
247 text-align:center;
248 background:
249 <?php
250 echo esc_html( $submit_bg_color );
251 if ( ! empty( $submit_bg_img ) ) {
252 echo esc_html( ' url(' . $submit_bg_img . ')' );
253 }
254 echo esc_html( $important );
255 ?>
256 ;
257 border-width:<?php echo esc_html( $submit_border_width ); ?>;
258 border-color: <?php echo esc_html( $submit_border_color . $important ); ?>;
259 border-style:solid;
260 color:<?php echo esc_html( $submit_text_color . $important ); ?>;
261 cursor:pointer;
262 font-weight:<?php echo esc_html( $submit_weight . $important ); ?>;
263 -moz-border-radius:<?php echo esc_html( $submit_border_radius . $important ); ?>;
264 -webkit-border-radius:<?php echo esc_html( $submit_border_radius . $important ); ?>;
265 border-radius:<?php echo esc_html( $submit_border_radius . $important ); ?>;
266 text-shadow:none;
267 padding:<?php echo esc_html( $submit_padding . $important ); ?>;
268 -moz-box-sizing:border-box;
269 box-sizing:border-box;
270 -ms-box-sizing:border-box;
271 <?php if ( ! empty( $submit_shadow_color ) ) { ?>
272 -moz-box-shadow:0 1px 1px <?php echo esc_html( $submit_shadow_color ); ?>;
273 -webkit-box-shadow:0 1px 1px <?php echo esc_html( $submit_shadow_color ); ?>;
274 box-shadow:0 1px 1px <?php echo esc_html( $submit_shadow_color ); ?>;
275 <?php } ?>
276 margin:<?php echo esc_html( $submit_margin ); ?>;
277 <?php
278 // For reverse compatibility... But allow "10px 10px".
279 if ( strpos( trim( $submit_margin ), ' ' ) === false ) {
280 ?>
281 margin-left:0;
282 margin-right:0;
283 <?php } ?>
284 vertical-align:middle;
285 }
286
287 .<?php echo esc_html( $style_class ); ?> .frm_compact .frm_dropzone.dz-clickable .dz-message{
288 margin:0;
289 }
290
291 <?php if ( empty( $submit_bg_img ) ) { ?>
292 .<?php echo esc_html( $style_class ); ?> .frm-edit-page-btn:hover,
293 .<?php echo esc_html( $style_class ); ?> input[type=submit]:hover,
294 .<?php echo esc_html( $style_class ); ?> .frm_submit input[type=button]:hover,
295 .<?php echo esc_html( $style_class ); ?> .frm_submit button:hover{
296 background: <?php echo esc_html( $submit_hover_bg_color . $important ); ?>;
297 border-color: <?php echo esc_html( $submit_hover_border_color . $important ); ?>;
298 color: <?php echo esc_html( $submit_hover_color . $important ); ?>;
299 }
300
301 .<?php echo esc_html( $style_class ); ?>.frm_center_submit .frm_submit .frm_ajax_loading{
302 margin-bottom:<?php echo esc_html( $submit_margin ); ?>;
303 }
304
305 .<?php echo esc_html( $style_class ); ?> .frm-edit-page-btn:focus,
306 .<?php echo esc_html( $style_class ); ?> input[type=submit]:focus,
307 .<?php echo esc_html( $style_class ); ?> .frm_submit input[type=button]:focus,
308 .<?php echo esc_html( $style_class ); ?> .frm_submit button:focus,
309 .<?php echo esc_html( $style_class ); ?> input[type=submit]:active,
310 .<?php echo esc_html( $style_class ); ?> .frm_submit input[type=button]:active,
311 .<?php echo esc_html( $style_class ); ?> .frm_submit button:active{
312 background: <?php echo esc_html( $submit_active_bg_color . $important ); ?>;
313 border-color: <?php echo esc_html( $submit_active_border_color . $important ); ?>;
314 color: <?php echo esc_html( $submit_active_color . $important ); ?>;
315 }
316
317 .<?php echo esc_html( $style_class ); ?> .frm_loading_prev .frm_prev_page,
318 .<?php echo esc_html( $style_class ); ?> .frm_loading_prev .frm_prev_page:hover,
319 .<?php echo esc_html( $style_class ); ?> .frm_loading_prev .frm_prev_page:active,
320 .<?php echo esc_html( $style_class ); ?> .frm_loading_prev .frm_prev_page:focus,
321 .<?php echo esc_html( $style_class ); ?> .frm_loading_form .frm_button_submit,
322 .<?php echo esc_html( $style_class ); ?> .frm_loading_form .frm_button_submit:hover,
323 .<?php echo esc_html( $style_class ); ?> .frm_loading_form .frm_button_submit:active,
324 .<?php echo esc_html( $style_class ); ?> .frm_loading_form .frm_button_submit:focus{
325 color: transparent <?php echo esc_html( $important ); ?>;
326 background: <?php echo esc_html( $submit_bg_color . $important ); ?>;
327 }
328
329 .<?php echo esc_html( $style_class ); ?> .frm_loading_prev .frm_prev_page:before,
330 .<?php echo esc_html( $style_class ); ?> .frm_loading_form .frm_button_submit:before {
331 border-bottom-color: <?php echo esc_html( $submit_text_color . $important ); ?>;
332 border-right-color: <?php echo esc_html( $submit_text_color . $important ); ?>;
333 <?php if ( $submit_height !== 'auto' ) { ?>
334 max-height:<?php echo esc_html( $submit_height ); ?>;
335 <?php } ?>
336 <?php if ( $submit_width !== 'auto' ) { ?>
337 max-width:<?php echo esc_html( $submit_width ); ?>;
338 <?php } ?>
339 }
340 <?php
341 }
342 }
343 ?>
344
345 .<?php echo esc_html( $style_class ); ?>.frm_inline_top .frm_submit::before,
346 .<?php echo esc_html( $style_class ); ?> .frm_submit.frm_inline_submit::before {
347 content:"before";
348 <?php if ( ! empty( $font ) ) { ?>
349 font-family:<?php echo FrmAppHelper::kses( $font ); // WPCS: XSS ok. ?>;
350 <?php } ?>
351 font-size:<?php echo esc_html( $font_size . $important ); ?>;
352 color:<?php echo esc_html( $label_color . $important ); ?>;
353 font-weight:<?php echo esc_html( $weight . $important ); ?>;
354 margin:0;
355 padding:<?php echo esc_html( $label_padding . $important ); ?>;
356 width:auto;
357 display:block;
358 visibility:hidden;
359 }
360
361 .<?php echo esc_html( $style_class ); ?>.frm_inline_form .frm_submit input,
362 .<?php echo esc_html( $style_class ); ?>.frm_inline_form .frm_submit button,
363 .<?php echo esc_html( $style_class ); ?> .frm_submit.frm_inline_submit input,
364 .<?php echo esc_html( $style_class ); ?> .frm_submit.frm_inline_submit button {
365 margin: 0 !important;
366 }
367
368 .<?php echo esc_html( $style_class ); ?> #frm_field_cptch_number_container{
369 <?php if ( ! empty( $font ) ) { ?>
370 font-family:<?php echo FrmAppHelper::kses( $font ); // WPCS: XSS ok. ?>;
371 <?php } ?>
372 font-size:<?php echo esc_html( $font_size . $important ); ?>;
373 color:<?php echo esc_html( $label_color . $important ); ?>;
374 font-weight:<?php echo esc_html( $weight . $important ); ?>;
375 clear:both;
376 }
377
378 .<?php echo esc_html( $style_class ); ?> .frm_blank_field input[type=text],
379 .<?php echo esc_html( $style_class ); ?> .frm_blank_field input[type=password],
380 .<?php echo esc_html( $style_class ); ?> .frm_blank_field input[type=url],
381 .<?php echo esc_html( $style_class ); ?> .frm_blank_field input[type=tel],
382 .<?php echo esc_html( $style_class ); ?> .frm_blank_field input[type=number],
383 .<?php echo esc_html( $style_class ); ?> .frm_blank_field input[type=email],
384 .<?php echo esc_html( $style_class ); ?> .frm_blank_field textarea,
385 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .mce-edit-area iframe,
386 .<?php echo esc_html( $style_class ); ?> .frm_blank_field select,
387 .frm_form_fields_error_style,
388 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .frm-g-recaptcha iframe,
389 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .g-recaptcha iframe,
390 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .frm-card-element.StripeElement,
391 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .chosen-container-multi .chosen-choices,
392 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .chosen-container-single .chosen-single,
393 .<?php echo esc_html( $style_class ); ?> .frm_form_field :invalid{
394 color:<?php echo esc_html( $text_color_error . $important ); ?>;
395 background-color:<?php echo esc_html( $bg_color_error . $important ); ?>;
396 border-color:<?php echo esc_html( $border_color_error . $important ); ?>;
397 border-width:<?php echo esc_html( $border_width_error . $important ); ?>;
398 border-style:<?php echo esc_html( $border_style_error . $important ); ?>;
399 }
400
401 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .sigWrapper{
402 border-color:<?php echo esc_html( $border_color_error ); ?> !important;
403 }
404
405 .<?php echo esc_html( $style_class ); ?> .frm_error{
406 font-weight:<?php echo esc_html( $weight . $important ); ?>;
407 }
408
409 .<?php echo esc_html( $style_class ); ?> .frm_blank_field label,
410 .<?php echo esc_html( $style_class ); ?> .frm_error{
411 color:<?php echo esc_html( $border_color_error . $important ); ?>;
412 }
413
414 .<?php echo esc_html( $style_class ); ?> .frm_error_style{
415 background-color:<?php echo esc_html( $error_bg . $important ); ?>;
416 border:1px solid <?php echo esc_html( $error_border . $important ); ?>;
417 border-radius:<?php echo esc_html( $border_radius . $important ); ?>;
418 color: <?php echo esc_html( $error_text . $important ); ?>;
419 font-size:<?php echo esc_html( $error_font_size . $important ); ?>;
420 margin:0;
421 margin-bottom:<?php echo esc_html( $field_margin ); ?>;
422 }
423
424 .<?php echo esc_html( $style_class ); ?> #frm_loading .progress-striped .progress-bar{
425 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));
426 }
427
428 .<?php echo esc_html( $style_class ); ?> #frm_loading .progress-bar{
429 background-color:<?php echo esc_html( $bg_color . $important ); ?>;
430 }
431
432 .<?php echo esc_html( $style_class ); ?> .frm_form_field.frm_total_big input,
433 .<?php echo esc_html( $style_class ); ?> .frm_form_field.frm_total_big textarea,
434 .<?php echo esc_html( $style_class ); ?> .frm_form_field.frm_total input,
435 .<?php echo esc_html( $style_class ); ?> .frm_form_field.frm_total textarea{
436 color: <?php echo esc_html( $text_color . $important ); ?>;
437 background-color:transparent<?php echo esc_html( $important ); ?>;
438 border:none<?php echo esc_html( $important ); ?>;
439 display:inline<?php echo esc_html( $important ); ?>;
440 width:auto<?php echo esc_html( $important ); ?>;
441 padding:0<?php echo esc_html( $important ); ?>;
442 }
443
444 <?php do_action( 'frm_output_single_style', $settings ); ?>
445