PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.14
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.14
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 / classes / views / styles / _field-sizes.php

_field-sizes.php in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 6.14, at classes/views/styles/_field-sizes.php

132 lines 3.3 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 <div class="frm5 frm_form_field">
7 <label class="frm-style-item-heading"><?php esc_html_e( 'Font Size', 'formidable' ); ?></label>
8 </div>
9 <div class="frm7 frm_form_field">
10 <?php
11 new FrmSliderStyleComponent(
12 $frm_style->get_field_name( 'field_font_size' ),
13 $style->post_content['field_font_size'],
14 array(
15 'id' => 'frm_field_font_size',
16 'max_value' => 100,
17 )
18 );
19 ?>
20 </div>
21
22 <div class="frm5 frm_form_field">
23 <label class="frm-style-item-heading"><?php esc_html_e( 'Weight', 'formidable' ); ?></label>
24 </div>
25 <div class="frm7 frm_form_field">
26 <?php
27 new FrmDropdownStyleComponent(
28 $frm_style->get_field_name( 'field_weight' ),
29 $style->post_content['field_weight'],
30 array(
31 'id' => 'frm_field_weight',
32 'options' => FrmStyle::get_bold_options(),
33 )
34 );
35 ?>
36 </div>
37
38 <div class="frm5 frm_form_field">
39 <label class="frm-style-item-heading"><?php esc_html_e( 'Height', 'formidable' ); ?></label>
40 </div>
41 <div class="frm7 frm_form_field">
42 <?php
43 new FrmSliderStyleComponent(
44 $frm_style->get_field_name( 'field_height' ),
45 $style->post_content['field_height'],
46 array(
47 'id' => 'frm_field_height',
48 'max_value' => 100,
49 )
50 );
51 ?>
52 </div>
53 <div class="frm5 frm_form_field">
54 <label class="frm-style-item-heading"><?php esc_html_e( 'Width', 'formidable' ); ?></label>
55 </div>
56 <div class="frm7 frm_form_field">
57 <?php
58 new FrmSliderStyleComponent(
59 $frm_style->get_field_name( 'field_width' ),
60 $style->post_content['field_width'],
61 array(
62 'id' => 'frm_field_width',
63 'max_value' => 1400,
64 )
65 );
66 ?>
67 </div>
68 <div class="frm5 frm_form_field">
69 <label class="frm-style-item-heading"><?php esc_html_e( 'Padding', 'formidable' ); ?></label>
70 </div>
71 <div class="frm7 frm_form_field">
72 <?php
73 new FrmSliderStyleComponent(
74 $frm_style->get_field_name( 'field_pad' ),
75 $style->post_content['field_pad'],
76 array(
77 'id' => 'frm_field_pad',
78 'type' => 'vertical-margin',
79 'max_value' => 100,
80 )
81 );
82 ?>
83 </div>
84 <div class="frm5 frm_form_field">
85 <label class="frm-style-item-heading"><?php esc_html_e( 'Margin', 'formidable' ); ?></label>
86 </div>
87 <div class="frm7 frm_form_field">
88 <?php
89 new FrmSliderStyleComponent(
90 $frm_style->get_field_name( 'field_margin' ),
91 $style->post_content['field_margin'],
92 array(
93 'id' => 'frm_field_margin',
94 'type' => 'vertical-margin',
95 'max_value' => 100,
96 )
97 );
98 ?>
99 </div>
100 <div class="frm5 frm_form_field">
101 <label class="frm-style-item-heading"><?php esc_html_e( 'Corner Radius', 'formidable' ); ?></label>
102 </div>
103 <div class="frm7 frm_form_field">
104 <?php
105 new FrmSliderStyleComponent(
106 $frm_style->get_field_name( 'border_radius' ),
107 $style->post_content['border_radius'],
108 array(
109 'id' => 'frm_border_radius',
110 'max_value' => 50,
111 )
112 );
113 ?>
114 </div>
115
116 <div class="frm5 frm_form_field">
117 <label class="frm-style-item-heading"><?php esc_html_e( 'Auto Drop-downs Width', 'formidable' ); ?></label>
118 </div>
119 <div class="frm7 frm_form_field frm-style-component">
120 <?php
121 FrmHtmlHelper::toggle(
122 'auto_width',
123 $frm_style->get_field_name( 'auto_width' ),
124 array(
125 'div_class' => 'with_frm_style frm_toggle',
126 'checked' => $style->post_content['auto_width'],
127 'echo' => true,
128 )
129 );
130 ?>
131 </div>
132