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

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