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

476 lines 21.4 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 $label_margin = (int) $width + 10;
8
9 $minus_icons = FrmStylesHelper::minus_icons();
10 $arrow_icons = FrmStylesHelper::arrow_icons();
11
12 ?>
13 .<?php echo esc_html( $style_class ); ?>{
14 <?php FrmStylesHelper::output_vars( $settings, $defaults ); ?>
15 }
16
17 .frm_forms.<?php echo esc_html( $style_class ); ?>{
18 max-width:<?php echo esc_html( $form_width . $important ); ?>;
19 direction:<?php echo esc_html( $direction . $important ); ?>;
20 <?php if ( 'rtl' == $direction ) { ?>
21 unicode-bidi:embed;
22 <?php } ?>
23 <?php if ( $center_form ) { ?>
24 margin:0 auto;
25 <?php } ?>
26 }
27
28 <?php if ( $center_form ) { ?>
29 .frm_inline_form.<?php echo esc_html( $style_class ); ?> form{
30 text-align:center;
31 }
32 <?php } ?>
33
34 <?php if ( ! empty( $label_color ) ) { ?>
35 .<?php echo esc_html( $style_class ); ?> .frm_icon_font{
36 color:<?php echo esc_html( $label_color . $important ); ?>;
37 }
38 <?php } ?>
39
40 .<?php echo esc_html( $style_class ); ?> .frm_icon_font.frm_minus_icon:before{
41 content:"\e<?php echo esc_html( isset( $minus_icons[ $repeat_icon ] ) ? $minus_icons[ $repeat_icon ]['-'] : $minus_icons[1]['-'] ); ?>";
42 }
43
44 .<?php echo esc_html( $style_class ); ?> .frm_icon_font.frm_plus_icon:before{
45 content:"\e<?php echo esc_html( isset( $minus_icons[ $repeat_icon ] ) ? $minus_icons[ $repeat_icon ]['+'] : $minus_icons[1]['+'] ); ?>";
46 }
47
48 .<?php echo esc_html( $style_class ); ?> .frm_icon_font.frm_minus_icon:before,
49 .<?php echo esc_html( $style_class ); ?> .frm_icon_font.frm_plus_icon:before{
50 <?php if ( ! empty( $submit_text_color ) ) { ?>
51 color:<?php echo esc_html( $submit_text_color . $important ); ?>;
52 <?php } ?>
53 vertical-align:middle;
54 }
55
56 .<?php echo esc_html( $style_class ); ?> .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{
57 content:"\e<?php echo esc_html( isset( $arrow_icons[ $collapse_icon ] ) ? $arrow_icons[ $collapse_icon ]['-'] : $arrow_icons[1]['-'] ); ?>";
58 <?php if ( ! empty( $section_color ) ) { ?>
59 color:<?php echo esc_html( $section_color . $important ); ?>;
60 <?php } ?>
61 }
62
63 .<?php echo esc_html( $style_class ); ?> .frm_trigger .frm_icon_font.frm_arrow_icon:before{
64 content:"\e<?php echo esc_html( isset( $arrow_icons[ $collapse_icon ] ) ? $arrow_icons[ $collapse_icon ]['+'] : $arrow_icons[1]['+'] ); ?>";
65 <?php if ( ! empty( $section_color ) ) { ?>
66 color:<?php echo esc_html( $section_color . $important ); ?>;
67 <?php } ?>
68 }
69
70 <?php if ( ! empty( $field_margin ) ) { ?>
71 .<?php echo esc_html( $style_class ); ?> .form-field{
72 margin-bottom:<?php echo esc_html( $field_margin . $important ); ?>;
73 }
74 <?php } ?>
75
76 .<?php echo esc_html( $style_class ); ?> .form-field.frm_section_heading{
77 margin-bottom:0<?php echo esc_html( $important ); ?>;
78 }
79
80 .<?php echo esc_html( $style_class ); ?> p.description,
81 .<?php echo esc_html( $style_class ); ?> div.description,
82 .<?php echo esc_html( $style_class ); ?> div.frm_description,
83 .<?php echo esc_html( $style_class ); ?> .frm-show-form > div.frm_description,
84 .<?php echo esc_html( $style_class ); ?> .frm_error{
85 <?php if ( ! empty( $description_margin ) ) { ?>
86 margin:<?php echo esc_html( $description_margin . $important ); ?>;
87 <?php } ?>
88 padding:0;
89 <?php if ( ! empty( $font ) ) { ?>
90 font-family:<?php echo FrmAppHelper::kses( $font . $important ); // WPCS: XSS ok. ?>;
91 <?php } ?>
92 <?php if ( ! empty( $description_font_size ) ) { ?>
93 font-size:<?php echo esc_html( $description_font_size . $important ); ?>;
94 <?php } ?>
95 <?php if ( ! empty( $description_color ) ) { ?>
96 color:<?php echo esc_html( $description_color . $important ); ?>;
97 <?php } ?>
98 <?php if ( ! empty( $description_weight ) ) { ?>
99 font-weight:<?php echo esc_html( $description_weight . $important ); ?>;
100 <?php } ?>
101 <?php if ( ! empty( $description_align ) ) { ?>
102 text-align:<?php echo esc_html( $description_align . $important ); ?>;
103 <?php } ?>
104 <?php if ( ! empty( $description_style ) ) { ?>
105 font-style:<?php echo esc_html( $description_style . $important ); ?>;
106 <?php } ?>
107 max-width:100%;
108 }
109
110 /* Left and right labels */
111 <?php
112
113 $frm_settings = FrmAppHelper::get_settings();
114
115 if ( '' === $field_height || 'auto' === $field_height ) {
116 foreach ( array( 'left', 'right', 'inline' ) as $alignit ) {
117 ?>
118 .<?php echo esc_html( $style_class ); ?> .frm_<?php echo esc_html( $alignit ); ?>_container input[type=text],
119 .<?php echo esc_html( $style_class ); ?> .frm_<?php echo esc_html( $alignit ); ?>_container input[type=password],
120 .<?php echo esc_html( $style_class ); ?> .frm_<?php echo esc_html( $alignit ); ?>_container input[type=email],
121 .<?php echo esc_html( $style_class ); ?> .frm_<?php echo esc_html( $alignit ); ?>_container input[type=number],
122 .<?php echo esc_html( $style_class ); ?> .frm_<?php echo esc_html( $alignit ); ?>_container input[type=url],
123 .<?php echo esc_html( $style_class ); ?> .frm_<?php echo esc_html( $alignit ); ?>_container input[type=tel],
124 .<?php echo esc_html( $style_class ); ?> .frm_<?php echo esc_html( $alignit ); ?>_container input[type=file],
125 .<?php echo esc_html( $style_class ); ?> .frm_<?php echo esc_html( $alignit ); ?>_container input[type=search],
126 .<?php echo esc_html( $style_class ); ?> .frm_<?php echo esc_html( $alignit ); ?>_container select,
127 <?php } ?>
128 .<?php echo esc_html( $style_class ); ?> .frm_left_container select{
129 <?php if ( $frm_settings->old_css ) { ?>
130 height:auto<?php echo esc_html( $important ); ?>;
131 <?php } else { ?>
132 height:fit-content<?php echo esc_html( $important ); ?>;
133 <?php } ?>
134 }
135 <?php } ?>
136
137 .<?php echo esc_html( $style_class ); ?> .frm_form_field.frm_left_container{
138 grid-template-columns: <?php echo esc_html( $width ); ?> auto;
139 }
140
141 .<?php echo esc_html( $style_class ); ?> .frm_form_field.frm_right_container{
142 grid-template-columns: auto <?php echo esc_html( $width ); ?>;
143 }
144
145 .frm_form_field.frm_right_container{
146 grid-template-columns: auto 25%;
147 }
148
149 .<?php echo esc_html( $style_class ); ?> .frm_inline_container.frm_dynamic_select_container .frm_data_container,
150 .<?php echo esc_html( $style_class ); ?> .frm_inline_container.frm_dynamic_select_container .frm_opt_container{
151 display:inline<?php echo esc_html( $important ); ?>;
152 }
153
154 .<?php echo esc_html( $style_class ); ?> .frm_pos_right{
155 display:inline<?php echo esc_html( $important ); ?>;
156 width:<?php echo esc_html( $width . $important ); ?>;
157 }
158
159 .<?php echo esc_html( $style_class ); ?> .frm_none_container .frm_primary_label,
160 .<?php echo esc_html( $style_class ); ?> .frm_pos_none{
161 display:none<?php echo esc_html( $important ); ?>;
162 }
163
164 .<?php echo esc_html( $style_class ); ?> .frm_scale label{
165 <?php if ( ! empty( $check_weight ) ) { ?>
166 font-weight:<?php echo esc_html( $check_weight . $important ); ?>;
167 <?php } ?>
168 <?php if ( ! empty( $font ) ) { ?>
169 font-family:<?php echo FrmAppHelper::kses( $font . $important ); // WPCS: XSS ok. ?>;
170 <?php } ?>
171 <?php if ( ! empty( $check_font_size ) ) { ?>
172 font-size:<?php echo esc_html( $check_font_size . $important ); ?>;
173 <?php } ?>
174 <?php if ( ! empty( $check_label_color ) ) { ?>
175 color:<?php echo esc_html( $check_label_color . $important ); ?>;
176 <?php } ?>
177 }
178
179 /* These do not work if they are combined */
180 .<?php echo esc_html( $style_class ); ?> input::placeholder,
181 .<?php echo esc_html( $style_class ); ?> textarea::placeholder{
182 color: <?php echo esc_html( $text_color_disabled . $important ); ?>;
183 }
184 .<?php echo esc_html( $style_class ); ?> input::-webkit-input-placeholder,
185 .<?php echo esc_html( $style_class ); ?> textarea::-webkit-input-placeholder{
186 color: <?php echo esc_html( $text_color_disabled . $important ); ?>;
187 }
188 .<?php echo esc_html( $style_class ); ?> input::-moz-placeholder,
189 .<?php echo esc_html( $style_class ); ?> textarea::-moz-placeholder{
190 color: <?php echo esc_html( $text_color_disabled . $important ); ?>;
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 <?php if ( isset( $remove_box_shadow_active ) && $remove_box_shadow_active ) { ?>
228 box-shadow:none;
229 <?php } else { ?>
230 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);
231 <?php } ?>
232 }
233
234 <?php if ( ! $submit_style ) { ?>
235 .<?php echo esc_html( $style_class ); ?> .frm_compact .frm_dropzone.dz-clickable .dz-message,
236 .<?php echo esc_html( $style_class ); ?> input[type=submit],
237 .<?php echo esc_html( $style_class ); ?> .frm_submit input[type=button],
238 .<?php echo esc_html( $style_class ); ?> .frm_submit button,
239 .frm_form_submit_style,
240 .<?php echo esc_html( $style_class ); ?> .frm-edit-page-btn {
241 width:<?php echo esc_html( ( $submit_width == '' ? 'auto' : $submit_width ) . $important ); ?>;
242 <?php if ( ! empty( $font ) ) { ?>
243 font-family:<?php echo FrmAppHelper::kses( $font ); // WPCS: XSS ok. ?>;
244 <?php } ?>
245 font-size:<?php echo esc_html( $submit_font_size . $important ); ?>;
246 height:<?php echo esc_html( $submit_height . $important ); ?>;
247 line-height:normal<?php echo esc_html( $important ); ?>;
248 text-align:center;
249 background:
250 <?php
251 echo esc_html( $submit_bg_color );
252 if ( ! empty( $submit_bg_img ) ) {
253 echo esc_html( ' url(' . $submit_bg_img . ')' );
254 }
255 echo esc_html( $important );
256 ?>
257 ;
258 border-width:<?php echo esc_html( $submit_border_width ); ?>;
259 border-color: <?php echo esc_html( $submit_border_color . $important ); ?>;
260 border-style:solid;
261 color:<?php echo esc_html( $submit_text_color . $important ); ?>;
262 cursor:pointer;
263 font-weight:<?php echo esc_html( $submit_weight . $important ); ?>;
264 -moz-border-radius:<?php echo esc_html( $submit_border_radius . $important ); ?>;
265 -webkit-border-radius:<?php echo esc_html( $submit_border_radius . $important ); ?>;
266 border-radius:<?php echo esc_html( $submit_border_radius . $important ); ?>;
267 text-shadow:none;
268 padding:<?php echo esc_html( $submit_padding . $important ); ?>;
269 -moz-box-sizing:border-box;
270 box-sizing:border-box;
271 -ms-box-sizing:border-box;
272 <?php if ( ! empty( $submit_shadow_color ) ) { ?>
273 -moz-box-shadow:0 1px 1px <?php echo esc_html( $submit_shadow_color ); ?>;
274 -webkit-box-shadow:0 1px 1px <?php echo esc_html( $submit_shadow_color ); ?>;
275 box-shadow:0 1px 1px <?php echo esc_html( $submit_shadow_color ); ?>;
276 <?php } ?>
277 margin:<?php echo esc_html( $submit_margin ); ?>;
278 margin-left:0;
279 margin-right:0;
280 vertical-align:middle;
281 }
282
283 .<?php echo esc_html( $style_class ); ?> .frm_compact .frm_dropzone.dz-clickable .dz-message{
284 margin:0;
285 }
286
287 <?php if ( empty( $submit_bg_img ) ) { ?>
288 .<?php echo esc_html( $style_class ); ?> .frm-edit-page-btn:hover,
289 .<?php echo esc_html( $style_class ); ?> input[type=submit]:hover,
290 .<?php echo esc_html( $style_class ); ?> .frm_submit input[type=button]:hover,
291 .<?php echo esc_html( $style_class ); ?> .frm_submit button:hover{
292 background: <?php echo esc_html( $submit_hover_bg_color . $important ); ?>;
293 border-color: <?php echo esc_html( $submit_hover_border_color . $important ); ?>;
294 color: <?php echo esc_html( $submit_hover_color . $important ); ?>;
295 }
296
297 .<?php echo esc_html( $style_class ); ?>.frm_center_submit .frm_submit .frm_ajax_loading{
298 margin-bottom:<?php echo esc_html( $submit_margin ); ?>;
299 }
300
301 .<?php echo esc_html( $style_class ); ?> .frm-edit-page-btn:focus,
302 .<?php echo esc_html( $style_class ); ?> input[type=submit]:focus,
303 .<?php echo esc_html( $style_class ); ?> .frm_submit input[type=button]:focus,
304 .<?php echo esc_html( $style_class ); ?> .frm_submit button:focus,
305 .<?php echo esc_html( $style_class ); ?> input[type=submit]:active,
306 .<?php echo esc_html( $style_class ); ?> .frm_submit input[type=button]:active,
307 .<?php echo esc_html( $style_class ); ?> .frm_submit button:active{
308 background: <?php echo esc_html( $submit_active_bg_color . $important ); ?>;
309 border-color: <?php echo esc_html( $submit_active_border_color . $important ); ?>;
310 color: <?php echo esc_html( $submit_active_color . $important ); ?>;
311 }
312
313 .<?php echo esc_html( $style_class ); ?> .frm_loading_prev .frm_prev_page,
314 .<?php echo esc_html( $style_class ); ?> .frm_loading_prev .frm_prev_page:hover,
315 .<?php echo esc_html( $style_class ); ?> .frm_loading_prev .frm_prev_page:active,
316 .<?php echo esc_html( $style_class ); ?> .frm_loading_prev .frm_prev_page:focus,
317 .<?php echo esc_html( $style_class ); ?> .frm_loading_form .frm_button_submit,
318 .<?php echo esc_html( $style_class ); ?> .frm_loading_form .frm_button_submit:hover,
319 .<?php echo esc_html( $style_class ); ?> .frm_loading_form .frm_button_submit:active,
320 .<?php echo esc_html( $style_class ); ?> .frm_loading_form .frm_button_submit:focus{
321 color: transparent <?php echo esc_html( $important ); ?>;
322 background: <?php echo esc_html( $submit_bg_color . $important ); ?>;
323 }
324
325 .<?php echo esc_html( $style_class ); ?> .frm_loading_prev .frm_prev_page:before,
326 .<?php echo esc_html( $style_class ); ?> .frm_loading_form .frm_button_submit:before {
327 border-bottom-color: <?php echo esc_html( $submit_text_color . $important ); ?>;
328 border-right-color: <?php echo esc_html( $submit_text_color . $important ); ?>;
329 <?php if ( $submit_height !== 'auto' ) { ?>
330 max-height:<?php echo esc_html( $submit_height ); ?>;
331 <?php } ?>
332 <?php if ( $submit_width !== 'auto' ) { ?>
333 max-width:<?php echo esc_html( $submit_width ); ?>;
334 <?php } ?>
335 }
336 <?php
337 }
338 }
339 ?>
340
341 .<?php echo esc_html( $style_class ); ?>.frm_inline_top .frm_submit::before,
342 .<?php echo esc_html( $style_class ); ?> .frm_submit.frm_inline_submit::before {
343 content:"before";
344 <?php if ( ! empty( $font ) ) { ?>
345 font-family:<?php echo FrmAppHelper::kses( $font ); // WPCS: XSS ok. ?>;
346 <?php } ?>
347 font-size:<?php echo esc_html( $font_size . $important ); ?>;
348 color:<?php echo esc_html( $label_color . $important ); ?>;
349 font-weight:<?php echo esc_html( $weight . $important ); ?>;
350 margin:0;
351 padding:<?php echo esc_html( $label_padding . $important ); ?>;
352 width:auto;
353 display:block;
354 visibility:hidden;
355 }
356
357 .<?php echo esc_html( $style_class ); ?>.frm_inline_form .frm_submit input,
358 .<?php echo esc_html( $style_class ); ?>.frm_inline_form .frm_submit button,
359 .<?php echo esc_html( $style_class ); ?> .frm_submit.frm_inline_submit input,
360 .<?php echo esc_html( $style_class ); ?> .frm_submit.frm_inline_submit button {
361 margin: 0 !important;
362 }
363
364 .<?php echo esc_html( $style_class ); ?> #frm_field_cptch_number_container{
365 <?php if ( ! empty( $font ) ) { ?>
366 font-family:<?php echo FrmAppHelper::kses( $font ); // WPCS: XSS ok. ?>;
367 <?php } ?>
368 font-size:<?php echo esc_html( $font_size . $important ); ?>;
369 color:<?php echo esc_html( $label_color . $important ); ?>;
370 font-weight:<?php echo esc_html( $weight . $important ); ?>;
371 clear:both;
372 }
373
374 .<?php echo esc_html( $style_class ); ?> .frm_blank_field input[type=text],
375 .<?php echo esc_html( $style_class ); ?> .frm_blank_field input[type=password],
376 .<?php echo esc_html( $style_class ); ?> .frm_blank_field input[type=url],
377 .<?php echo esc_html( $style_class ); ?> .frm_blank_field input[type=tel],
378 .<?php echo esc_html( $style_class ); ?> .frm_blank_field input[type=number],
379 .<?php echo esc_html( $style_class ); ?> .frm_blank_field input[type=email],
380 .<?php echo esc_html( $style_class ); ?> .frm_blank_field textarea,
381 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .mce-edit-area iframe,
382 .<?php echo esc_html( $style_class ); ?> .frm_blank_field select,
383 .frm_form_fields_error_style,
384 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .frm-g-recaptcha iframe,
385 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .g-recaptcha iframe,
386 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .frm-card-element.StripeElement,
387 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .chosen-container-multi .chosen-choices,
388 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .chosen-container-single .chosen-single,
389 .<?php echo esc_html( $style_class ); ?> .frm_form_field :invalid{
390 color:<?php echo esc_html( $text_color_error . $important ); ?>;
391 background-color:<?php echo esc_html( $bg_color_error . $important ); ?>;
392 border-color:<?php echo esc_html( $border_color_error . $important ); ?>;
393 border-width:<?php echo esc_html( $border_width_error . $important ); ?>;
394 border-style:<?php echo esc_html( $border_style_error . $important ); ?>;
395 }
396
397 .<?php echo esc_html( $style_class ); ?> .frm_blank_field .sigWrapper{
398 border-color:<?php echo esc_html( $border_color_error ); ?> !important;
399 }
400
401 .<?php echo esc_html( $style_class ); ?> .frm_error{
402 font-weight:<?php echo esc_html( $weight . $important ); ?>;
403 }
404
405 .<?php echo esc_html( $style_class ); ?> .frm_blank_field label,
406 .<?php echo esc_html( $style_class ); ?> .frm_error{
407 color:<?php echo esc_html( $border_color_error . $important ); ?>;
408 }
409
410 .<?php echo esc_html( $style_class ); ?> .frm_error_style{
411 background-color:<?php echo esc_html( $error_bg . $important ); ?>;
412 border:1px solid <?php echo esc_html( $error_border . $important ); ?>;
413 border-radius:<?php echo esc_html( $border_radius . $important ); ?>;
414 color: <?php echo esc_html( $error_text . $important ); ?>;
415 font-size:<?php echo esc_html( $error_font_size . $important ); ?>;
416 margin:0;
417 margin-bottom:<?php echo esc_html( $field_margin ); ?>;
418 }
419
420 .<?php echo esc_html( $style_class ); ?> #frm_loading .progress-striped .progress-bar{
421 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));
422 }
423
424 .<?php echo esc_html( $style_class ); ?> #frm_loading .progress-bar{
425 background-color:<?php echo esc_html( $bg_color . $important ); ?>;
426 }
427
428 .<?php echo esc_html( $style_class ); ?> .frm_form_field.frm_total_big input,
429 .<?php echo esc_html( $style_class ); ?> .frm_form_field.frm_total_big textarea,
430 .<?php echo esc_html( $style_class ); ?> .frm_form_field.frm_total input,
431 .<?php echo esc_html( $style_class ); ?> .frm_form_field.frm_total textarea{
432 color: <?php echo esc_html( $text_color . $important ); ?>;
433 background-color:transparent<?php echo esc_html( $important ); ?>;
434 border:none<?php echo esc_html( $important ); ?>;
435 display:inline<?php echo esc_html( $important ); ?>;
436 width:auto<?php echo esc_html( $important ); ?>;
437 padding:0<?php echo esc_html( $important ); ?>;
438 }
439
440 .<?php echo esc_html( $style_class ); ?> .frm_button{
441 <?php if ( ! empty( $submit_padding ) ) { ?>
442 padding:<?php echo esc_html( $submit_padding . $important ); ?>;
443 <?php } ?>
444 <?php if ( ! empty( $border_radius ) ) { ?>
445 -moz-border-radius:<?php echo esc_html( $border_radius . $important ); ?>;
446 -webkit-border-radius:<?php echo esc_html( $border_radius . $important ); ?>;
447 border-radius:<?php echo esc_html( $border_radius . $important ); ?>;
448 <?php } ?>
449 <?php if ( ! empty( $submit_font_size ) ) { ?>
450 font-size:<?php echo esc_html( $submit_font_size . $important ); ?>;
451 <?php } ?>
452 <?php if ( ! empty( $font ) ) { ?>
453 font-family:<?php echo FrmAppHelper::kses( $font . $important ); // WPCS: XSS ok. ?>;
454 <?php } ?>
455 <?php if ( ! empty( $submit_weight ) ) { ?>
456 font-weight:<?php echo esc_html( $submit_weight . $important ); ?>;
457 <?php } ?>
458 <?php if ( ! empty( $submit_text_color ) ) { ?>
459 color:<?php echo esc_html( $submit_text_color . $important ); ?>;
460 <?php } ?>
461 <?php if ( ! empty( $submit_bg_color ) ) { ?>
462 background: <?php echo esc_html( $submit_bg_color . $important ); ?>;
463 <?php } ?>
464 <?php if ( ! empty( $submit_border_width ) ) { ?>
465 border-width:<?php echo esc_html( $submit_border_width ); ?>;
466 <?php } ?>
467 <?php if ( ! empty( $submit_border_color ) ) { ?>
468 border-color: <?php echo esc_html( $submit_border_color . $important ); ?>;
469 <?php } ?>
470 <?php if ( ! empty( $submit_height ) ) { ?>
471 height:<?php echo esc_html( $submit_height . $important ); ?>;
472 <?php } ?>
473 }
474
475 <?php do_action( 'frm_output_single_style', $settings ); ?>
476