| @@ -6,9 +6,9 @@ | ||
| 6 | 6 | if ( ! isset( $saving ) ) { |
| 7 | 7 | header( 'Content-type: text/css' ); |
| 8 | 8 | |
| 9 | 9 | if ( ! empty( $css ) ) { |
| 10 | - echo strip_tags( FrmStylesHelper::maybe_scope_custom_css_in_cached_output( $css ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped | |
| 10 | + echo strip_tags( $css, 'all' ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped | |
| 11 | 11 | FrmStylesController::maybe_hide_sample_form_error_message(); |
| 12 | 12 | die(); |
| 13 | 13 | } |
| 14 | 14 | } |
| @@ -16,14 +16,12 @@ | ||
| 16 | 16 | if ( ! isset( $frm_style ) ) { |
| 17 | 17 | $frm_style = new FrmStyle(); |
| 18 | 18 | } |
| 19 | 19 | |
| 20 | -$styles = $frm_style->get_all(); | |
| 21 | -$default_style = $frm_style->get_default_style( $styles ); | |
| 22 | -$defaults = FrmStylesHelper::get_settings_for_output( $default_style ); | |
| 23 | -$important = ! empty( $defaults['important_style'] ) ? ' !important' : ''; | |
| 24 | -$pro_is_installed = FrmAppHelper::pro_is_installed(); | |
| 25 | -$use_chosen_js = FrmStylesHelper::use_chosen_js(); | |
| 20 | +$styles = $frm_style->get_all(); | |
| 21 | +$default_style = $frm_style->get_default_style( $styles ); | |
| 22 | +$defaults = FrmStylesHelper::get_settings_for_output( $default_style ); | |
| 23 | +$important = empty( $defaults['important_style'] ) ? '' : ' !important'; | |
| 26 | 24 | |
| 27 | 25 | ?> |
| 28 | 26 | .with_frm_style{ |
| 29 | 27 | <?php FrmStylesHelper::output_vars( $defaults ); ?> |
| @@ -38,12 +36,12 @@ | ||
| 38 | 36 | |
| 39 | 37 | .with_frm_style, |
| 40 | 38 | .with_frm_style form, |
| 41 | 39 | .with_frm_style .frm-show-form div.frm_description p{ |
| 42 | - text-align: var(--form-align)<?php echo esc_html( $important ); ?>; | |
| 40 | + text-align:<?php echo esc_html( $defaults['form_align'] . $important ); ?>; | |
| 41 | + text-align:var(--form-align)<?php echo esc_html( $important ); ?>; | |
| 43 | 42 | } |
| 44 | 43 | |
| 45 | -/* Keep this. This is used for Honeypot */ | |
| 46 | 44 | input:-webkit-autofill { |
| 47 | 45 | -webkit-box-shadow: 0 0 0 30px white inset; |
| 48 | 46 | } |
| 49 | 47 | |
| @@ -49,24 +47,36 @@ | ||
| 49 | 47 | |
| 50 | 48 | /* Form description */ |
| 51 | 49 | .with_frm_style .frm-show-form div.frm_description p{ |
| 52 | 50 | <?php if ( ! empty( $defaults['form_desc_size'] ) ) { ?> |
| 53 | - font-size: var(--form-desc-size)<?php echo esc_html( $important ); ?>; | |
| 51 | + font-size:<?php echo esc_html( $defaults['form_desc_size'] . $important ); ?>; | |
| 52 | + font-size:var(--form-desc-size)<?php echo esc_html( $important ); ?>; | |
| 54 | 53 | <?php } ?> |
| 55 | 54 | <?php if ( ! empty( $defaults['form_desc_color'] ) ) { ?> |
| 56 | - color: var(--form-desc-color)<?php echo esc_html( $important ); ?>; | |
| 55 | + color:<?php echo esc_html( $defaults['form_desc_color'] . $important ); ?>; | |
| 56 | + color:var(--form-desc-color)<?php echo esc_html( $important ); ?>; | |
| 57 | 57 | <?php } ?> |
| 58 | 58 | <?php if ( ! empty( $defaults['form_desc_margin_top'] ) ) { ?> |
| 59 | - margin-top: var(--form-desc-margin-top)<?php echo esc_html( $important ); ?>; | |
| 59 | + margin-top:<?php echo esc_html( $defaults['form_desc_margin_top'] . $important ); ?>; | |
| 60 | + margin-top:var(--form-desc-margin-top)<?php echo esc_html( $important ); ?>; | |
| 60 | 61 | <?php } ?> |
| 61 | 62 | <?php if ( ! empty( $defaults['form_desc_margin_bottom'] ) ) { ?> |
| 62 | - margin-bottom: var(--form-desc-margin-bottom)<?php echo esc_html( $important ); ?>; | |
| 63 | + margin-bottom:<?php echo esc_html( $defaults['form_desc_margin_bottom'] . $important ); ?>; | |
| 64 | + margin-bottom:var(--form-desc-margin-bottom)<?php echo esc_html( $important ); ?>; | |
| 63 | 65 | <?php } ?> |
| 64 | 66 | <?php if ( isset( $defaults['form_desc_padding'] ) ) { ?> |
| 65 | - padding: var(--form-desc-padding)<?php echo esc_html( $important ); ?>; | |
| 67 | + padding:<?php echo esc_html( $defaults['form_desc_padding'] . $important ); ?>; | |
| 68 | + padding:var(--form-desc-padding)<?php echo esc_html( $important ); ?>; | |
| 66 | 69 | <?php } ?> |
| 67 | 70 | } |
| 68 | 71 | |
| 72 | +form .<?php echo esc_html( FrmHoneypot::generate_class_name() ); ?> { | |
| 73 | + overflow: hidden; | |
| 74 | + width: 0; | |
| 75 | + height: 0; | |
| 76 | + position: absolute; | |
| 77 | +} | |
| 78 | + | |
| 69 | 79 | .with_frm_style fieldset{ |
| 70 | 80 | min-width:0; |
| 71 | 81 | display: block; /* Override 2021 theme */ |
| 72 | 82 | } |
| @@ -79,20 +89,24 @@ | ||
| 79 | 89 | } |
| 80 | 90 | |
| 81 | 91 | .with_frm_style .frm_form_fields > fieldset{ |
| 82 | 92 | <?php if ( isset( $defaults['fieldset'] ) && ( $defaults['fieldset'] || '0' === $defaults['fieldset'] ) ) { ?> |
| 83 | - border-width: var(--fieldset)<?php echo esc_html( $important ); ?>; | |
| 93 | + border-width:<?php echo esc_html( $defaults['fieldset'] . $important ); ?>; | |
| 94 | + border-width:var(--fieldset)<?php echo esc_html( $important ); ?>; | |
| 84 | 95 | <?php } ?> |
| 85 | 96 | border-style:solid; |
| 86 | 97 | <?php if ( ! empty( $defaults['fieldset_color'] ) ) { ?> |
| 87 | - border-color: var(--fieldset-color)<?php echo esc_html( $important ); ?>; | |
| 98 | + border-color:<?php echo esc_html( $defaults['fieldset_color'] . $important ); ?>; | |
| 99 | + border-color:var(--fieldset-color)<?php echo esc_html( $important ); ?>; | |
| 88 | 100 | <?php } ?> |
| 89 | 101 | margin:0; |
| 90 | 102 | <?php if ( ! empty( $defaults['fieldset_padding'] ) ) { ?> |
| 91 | - padding: var(--fieldset-padding)<?php echo esc_html( $important ); ?>; | |
| 103 | + padding:<?php echo esc_html( $defaults['fieldset_padding'] . $important ); ?>; | |
| 104 | + padding:var(--fieldset-padding)<?php echo esc_html( $important ); ?>; | |
| 92 | 105 | <?php } ?> |
| 93 | 106 | <?php if ( ! empty( $defaults['fieldset_bg_color'] ) ) { ?> |
| 94 | - background-color: var(--fieldset-bg-color)<?php echo esc_html( $important ); ?>; | |
| 107 | + background-color:<?php echo esc_html( $defaults['fieldset_bg_color'] ); ?>; | |
| 108 | + background-color:var(--fieldset-bg-color)<?php echo esc_html( $important ); ?>; | |
| 95 | 109 | <?php } ?> |
| 96 | 110 | <?php if ( ! empty( $defaults['font'] ) ) { ?> |
| 97 | 111 | font-family:var(--font); |
| 98 | 112 | <?php } ?> |
| @@ -116,21 +130,26 @@ | ||
| 116 | 130 | |
| 117 | 131 | .with_frm_style legend + h3, |
| 118 | 132 | .with_frm_style h3.frm_form_title{ |
| 119 | 133 | <?php if ( ! empty( $defaults['title_size'] ) ) { ?> |
| 120 | - font-size: var(--title-size)<?php echo esc_html( $important ); ?>; | |
| 134 | + font-size:<?php echo esc_html( $defaults['title_size'] . $important ); ?>; | |
| 135 | + font-size:var(--title-size)<?php echo esc_html( $important ); ?>; | |
| 121 | 136 | <?php } ?> |
| 122 | 137 | <?php if ( ! empty( $defaults['title_color'] ) ) { ?> |
| 123 | - color: var(--title-color)<?php echo esc_html( $important ); ?>; | |
| 138 | + color:<?php echo esc_html( $defaults['title_color'] . $important ); ?>; | |
| 139 | + color:var(--title-color)<?php echo esc_html( $important ); ?>; | |
| 124 | 140 | <?php } ?> |
| 125 | 141 | <?php if ( ! empty( $defaults['font'] ) ) { ?> |
| 126 | - font-family: var(--font); | |
| 142 | + font-family:<?php echo FrmAppHelper::kses( $defaults['font'] ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>; | |
| 143 | + font-family:var(--font); | |
| 127 | 144 | <?php } ?> |
| 128 | 145 | <?php if ( ! empty( $defaults['title_margin_top'] ) ) { ?> |
| 129 | - margin-top: var(--title-margin-top)<?php echo esc_html( $important ); ?>; | |
| 146 | + margin-top:<?php echo esc_html( $defaults['title_margin_top'] . $important ); ?>; | |
| 147 | + margin-top:var(--title-margin-top)<?php echo esc_html( $important ); ?>; | |
| 130 | 148 | <?php } ?> |
| 131 | 149 | <?php if ( ! empty( $defaults['title_margin_bottom'] ) ) { ?> |
| 132 | - margin-bottom: var(--title-margin-bottom)<?php echo esc_html( $important ); ?>; | |
| 150 | + margin-bottom:<?php echo esc_html( $defaults['title_margin_bottom'] . $important ); ?>; | |
| 151 | + margin-bottom:var(--title-margin-bottom)<?php echo esc_html( $important ); ?>; | |
| 133 | 152 | <?php } ?> |
| 134 | 153 | } |
| 135 | 154 | |
| 136 | 155 | .with_frm_style .frm_form_field.frm_html_container, |
| @@ -135,43 +154,46 @@ | ||
| 135 | 154 | |
| 136 | 155 | .with_frm_style .frm_form_field.frm_html_container, |
| 137 | 156 | .with_frm_style .frm_form_field .frm_show_it{ |
| 138 | 157 | <?php if ( ! empty( $defaults['font'] ) ) { ?> |
| 139 | - font-family: var(--font); | |
| 158 | + font-family:<?php echo FrmAppHelper::kses( $defaults['font'] ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>; | |
| 159 | + font-family:var(--font); | |
| 140 | 160 | <?php } ?> |
| 141 | 161 | <?php if ( ! empty( $defaults['form_desc_color'] ) ) { ?> |
| 142 | - color: var(--form-desc-color)<?php echo esc_html( $important ); ?>; | |
| 162 | + color:<?php echo esc_html( $defaults['form_desc_color'] . $important ); ?>; | |
| 163 | + color:var(--form-desc-color)<?php echo esc_html( $important ); ?>; | |
| 143 | 164 | <?php } ?> |
| 144 | 165 | } |
| 145 | 166 | |
| 167 | +<?php if ( ! empty( $defaults['form_desc_size'] ) ) { ?> | |
| 146 | 168 | .with_frm_style .frm_form_field.frm_html_container{ |
| 147 | -<?php if ( ! empty( $defaults['form_desc_size'] ) ) { ?> | |
| 148 | - font-size: var(--form-desc-size)<?php echo esc_html( $important ); ?>; | |
| 169 | + font-size:<?php echo esc_html( $defaults['form_desc_size'] . $important ); ?>; | |
| 170 | + font-size:var(--form-desc-size)<?php echo esc_html( $important ); ?>; | |
| 171 | +} | |
| 149 | 172 | <?php } ?> |
| 150 | - overflow-wrap: break-word<?php echo esc_html( $important ); ?>; | |
| 151 | -} | |
| 152 | 173 | |
| 153 | 174 | .with_frm_style .frm_form_field .frm_show_it{ |
| 154 | 175 | <?php if ( ! empty( $defaults['field_font_size'] ) ) { ?> |
| 155 | - font-size: var(--field-font-size)<?php echo esc_html( $important ); ?>; | |
| 176 | + font-size:<?php echo esc_html( $defaults['field_font_size'] . $important ); ?>; | |
| 177 | + font-size:var(--field-font-size)<?php echo esc_html( $important ); ?>; | |
| 156 | 178 | <?php } ?> |
| 157 | 179 | <?php if ( ! empty( $defaults['field_weight'] ) ) { ?> |
| 158 | - font-weight: var(--field-weight)<?php echo esc_html( $important ); ?>; | |
| 180 | + font-weight:<?php echo esc_html( $defaults['field_weight'] ); ?>; | |
| 181 | + font-weight:var(--field-weight)<?php echo esc_html( $important ); ?>; | |
| 159 | 182 | <?php } ?> |
| 160 | 183 | } |
| 161 | 184 | |
| 162 | -.with_frm_style .frm_required { | |
| 185 | +.with_frm_style .frm_required{ | |
| 163 | 186 | <?php if ( ! empty( $defaults['required_color'] ) ) { ?> |
| 164 | - color: var(--required-color)<?php echo esc_html( $important ); ?>; | |
| 187 | + color:<?php echo esc_html( $defaults['required_color'] . $important ); ?>; | |
| 188 | + color:var(--required-color)<?php echo esc_html( $important ); ?>; | |
| 165 | 189 | <?php } ?> |
| 166 | 190 | <?php if ( ! empty( $defaults['required_weight'] ) ) { ?> |
| 167 | - font-weight: var(--required-weight)<?php echo esc_html( $important ); ?>; | |
| 191 | + font-weight:<?php echo esc_html( $defaults['required_weight'] . $important ); ?>; | |
| 192 | + font-weight:var(--required-weight)<?php echo esc_html( $important ); ?>; | |
| 168 | 193 | <?php } ?> |
| 169 | 194 | } |
| 170 | 195 | |
| 171 | -<?php if ( $use_chosen_js ) { ?> | |
| 172 | -.with_frm_style .chosen-container, | |
| 173 | -<?php } ?> | |
| 174 | 196 | .with_frm_style input[type=text], |
| 175 | 197 | .with_frm_style input[type=password], |
| 176 | 198 | .with_frm_style input[type=email], |
| 177 | 199 | .with_frm_style input[type=number], |
| @@ -179,12 +201,14 @@ | ||
| 179 | 201 | .with_frm_style input[type=tel], |
| 180 | 202 | .with_frm_style input[type=search], |
| 181 | 203 | .with_frm_style select, |
| 182 | 204 | .with_frm_style textarea, |
| 183 | -.with_frm_style .frm-card-element.StripeElement { | |
| 205 | +.with_frm_style .frm-card-element.StripeElement, | |
| 206 | +.with_frm_style .chosen-container{ | |
| 184 | 207 | font-family:var(--font)<?php echo esc_html( $important ); ?>; |
| 185 | 208 | <?php if ( ! empty( $defaults['field_font_size'] ) ) { ?> |
| 186 | - font-size: var(--field-font-size)<?php echo esc_html( $important ); ?>; | |
| 209 | + font-size:<?php echo esc_html( $defaults['field_font_size'] ); ?>; | |
| 210 | + font-size:var(--field-font-size)<?php echo esc_html( $important ); ?>; | |
| 187 | 211 | <?php } ?> |
| 188 | 212 | margin-bottom:0<?php echo esc_html( $important ); ?>; |
| 189 | 213 | } |
| 190 | 214 | |
| @@ -192,14 +216,8 @@ | ||
| 192 | 216 | vertical-align:top; |
| 193 | 217 | height:auto; |
| 194 | 218 | } |
| 195 | 219 | |
| 196 | -<?php if ( $use_chosen_js ) { ?> | |
| 197 | -.with_frm_style .chosen-container-multi .chosen-choices, | |
| 198 | -.with_frm_style .chosen-container-single .chosen-single, | |
| 199 | -<?php } elseif ( $pro_is_installed ) { ?> | |
| 200 | -.with_frm_style .frm_slimselect.ss-main, | |
| 201 | -<?php } ?> | |
| 202 | 220 | .with_frm_style input[type=text], |
| 203 | 221 | .with_frm_style input[type=password], |
| 204 | 222 | .with_frm_style input[type=email], |
| 205 | 223 | .with_frm_style input[type=number], |
| @@ -212,34 +230,42 @@ | ||
| 212 | 230 | .frm_form_fields_style, |
| 213 | 231 | .with_frm_style .frm_scroll_box .frm_opt_container, |
| 214 | 232 | .frm_form_fields_active_style, |
| 215 | 233 | .frm_form_fields_error_style, |
| 216 | -.with_frm_style .frm-card-element.StripeElement { | |
| 217 | - color: var(--text-color)<?php echo esc_html( $important ); ?>; | |
| 218 | - background-color: var(--bg-color)<?php echo esc_html( $important ); ?>; | |
| 219 | - border-color: var(--border-color)<?php echo esc_html( $important ); ?>; | |
| 220 | - border-width: var(--field-border-width)<?php echo esc_html( $important ); ?>; | |
| 221 | - border-style: var(--field-border-style)<?php echo esc_html( $important ); ?>; | |
| 222 | - border-radius: var(--border-radius)<?php echo esc_html( $important ); ?>; | |
| 223 | - width: var(--field-width)<?php echo esc_html( $important ); ?>; | |
| 224 | - max-width: 100%; | |
| 225 | - font-size: var(--field-font-size)<?php echo esc_html( $important ); ?>; | |
| 226 | - padding: var(--field-pad)<?php echo esc_html( $important ); ?>; | |
| 227 | - box-sizing: border-box; | |
| 228 | - outline: none<?php echo esc_html( $important ); ?>; | |
| 229 | - font-weight: var(--field-weight); | |
| 234 | +.with_frm_style .frm-card-element.StripeElement, | |
| 235 | +.with_frm_style .chosen-container-multi .chosen-choices, | |
| 236 | +.with_frm_style .chosen-container-single .chosen-single{ | |
| 237 | + color:<?php echo esc_html( $defaults['text_color'] ); ?>; | |
| 238 | + color:var(--text-color)<?php echo esc_html( $important ); ?>; | |
| 239 | + background-color:<?php echo esc_html( $defaults['bg_color'] . $important ); ?>; | |
| 240 | + background-color:var(--bg-color)<?php echo esc_html( $important ); ?>; | |
| 241 | + border-color:<?php echo esc_html( $defaults['border_color'] ); ?>; | |
| 242 | + border-color:var(--border-color)<?php echo esc_html( $important ); ?>; | |
| 243 | + border-width:<?php echo esc_html( $defaults['field_border_width'] ); ?>; | |
| 244 | + border-width:var(--field-border-width)<?php echo esc_html( $important ); ?>; | |
| 245 | + border-style:<?php echo esc_html( $defaults['field_border_style'] ); ?>; | |
| 246 | + border-style:var(--field-border-style)<?php echo esc_html( $important ); ?>; | |
| 247 | + -moz-border-radius:<?php echo esc_html( $defaults['border_radius'] . $important ); ?>; | |
| 248 | + -webkit-border-radius:<?php echo esc_html( $defaults['border_radius'] . $important ); ?>; | |
| 249 | + border-radius:<?php echo esc_html( $defaults['border_radius'] ); ?>; | |
| 250 | + border-radius:var(--border-radius)<?php echo esc_html( $important ); ?>; | |
| 251 | + width:<?php echo esc_html( $defaults['field_width'] ); ?>; | |
| 252 | + width:var(--field-width)<?php echo esc_html( $important ); ?>; | |
| 253 | + max-width:100%; | |
| 254 | + font-size:<?php echo esc_html( $defaults['field_font_size'] ); ?>; | |
| 255 | + font-size:var(--field-font-size)<?php echo esc_html( $important ); ?>; | |
| 256 | + padding:<?php echo esc_html( $defaults['field_pad'] ); ?>; | |
| 257 | + padding:var(--field-pad)<?php echo esc_html( $important ); ?>; | |
| 258 | + -webkit-box-sizing:border-box; | |
| 259 | + -moz-box-sizing:border-box; | |
| 260 | + box-sizing:border-box; | |
| 261 | + outline:none<?php echo esc_html( $important ); ?>; | |
| 262 | + font-weight:<?php echo esc_html( $defaults['field_weight'] ); ?>; | |
| 263 | + font-weight:var(--field-weight); | |
| 264 | + box-shadow:var(--box-shadow)<?php echo esc_html( $important ); ?>; | |
| 230 | 265 | } |
| 231 | 266 | |
| 232 | -.with_frm_style input:-webkit-autofill:focus { | |
| 233 | - /* Prevent the user agent autofill background color from taking effect on focus. */ | |
| 234 | - transition: background-color 5000s ease-in-out 0s<?php echo esc_html( $important ); ?>; | |
| 235 | -} | |
| 236 | - | |
| 237 | -<?php if ( $important ) : ?> | |
| 238 | - <?php if ( $use_chosen_js ) { ?> | |
| 239 | - .with_frm_style .chosen-container-multi .chosen-choices, | |
| 240 | - .with_frm_style .chosen-container-single .chosen-single, | |
| 241 | - <?php } ?> | |
| 267 | +<?php if ( ! empty( $important ) ) { ?> | |
| 242 | 268 | .with_frm_style input[type=text], |
| 243 | 269 | .with_frm_style input[type=password], |
| 244 | 270 | .with_frm_style input[type=email], |
| 245 | 271 | .with_frm_style input[type=number], |
| @@ -251,25 +277,30 @@ | ||
| 251 | 277 | .frm_form_fields_style, |
| 252 | 278 | .with_frm_style .frm_scroll_box .frm_opt_container, |
| 253 | 279 | .frm_form_fields_active_style, |
| 254 | 280 | .frm_form_fields_error_style, |
| 255 | -.with_frm_style .frm-card-element.StripeElement { | |
| 281 | +.with_frm_style .frm-card-element.StripeElement, | |
| 282 | +.with_frm_style .chosen-container-multi .chosen-choices, | |
| 283 | +.with_frm_style .chosen-container-single .chosen-single{ | |
| 256 | 284 | background-image:none !important; |
| 257 | 285 | } |
| 258 | -<?php endif; ?> | |
| 286 | +<?php } ?> | |
| 259 | 287 | |
| 260 | 288 | .with_frm_style select option { |
| 261 | - color: var(--text-color)<?php echo esc_html( $important ); ?>; | |
| 289 | + color:<?php echo esc_html( $defaults['text_color'] ); ?>; | |
| 290 | + color:var(--text-color)<?php echo esc_html( $important ); ?>; | |
| 262 | 291 | } |
| 263 | 292 | |
| 264 | 293 | .with_frm_style select option.frm-select-placeholder { |
| 265 | - color: var(--text-color-disabled)<?php echo esc_html( $important ); ?>; | |
| 294 | + color:<?php echo esc_html( $defaults['text_color_disabled'] ); ?>; | |
| 295 | + color:var(--text-color-disabled)<?php echo esc_html( $important ); ?>; | |
| 266 | 296 | } |
| 267 | 297 | |
| 268 | 298 | .with_frm_style input[type=radio], |
| 269 | 299 | .with_frm_style input[type=checkbox]{ |
| 270 | - border-color: var(--border-color)<?php echo esc_html( $important ); ?>; | |
| 271 | - box-shadow: var(--box-shadow)<?php echo esc_html( $important ); ?>; | |
| 300 | + border-color:<?php echo esc_html( $defaults['border_color'] . $important ); ?>; | |
| 301 | + border-color:var(--border-color)<?php echo esc_html( $important ); ?>; | |
| 302 | + box-shadow:var(--box-shadow)<?php echo esc_html( $important ); ?>; | |
| 272 | 303 | float: none; |
| 273 | 304 | } |
| 274 | 305 | |
| 275 | 306 | .with_frm_style input[type=radio]:after, |
| @@ -276,18 +307,8 @@ | ||
| 276 | 307 | .with_frm_style input[type=checkbox]:after { |
| 277 | 308 | display: none; /* 2021 conflict */ |
| 278 | 309 | } |
| 279 | 310 | |
| 280 | -.with_frm_style input[type=radio]:not(:checked):focus, | |
| 281 | -.with_frm_style input[type=checkbox]:not(:checked):focus { | |
| 282 | - border-color: var(--border-color) !important; | |
| 283 | -} | |
| 284 | - | |
| 285 | -.with_frm_style input[type=radio]:focus, | |
| 286 | -.with_frm_style input[type=checkbox]:focus { | |
| 287 | - box-shadow:0px 0px 0px 3px rgba(<?php echo esc_html( FrmStylesHelper::hex2rgb( $defaults['border_color_active'] ) ); ?>, 0.4) !important; | |
| 288 | -} | |
| 289 | - | |
| 290 | 311 | .with_frm_style input[type=text], |
| 291 | 312 | .with_frm_style input[type=password], |
| 292 | 313 | .with_frm_style input[type=email], |
| 293 | 314 | .with_frm_style input[type=number], |
| @@ -296,9 +317,10 @@ | ||
| 296 | 317 | .with_frm_style input[type=file], |
| 297 | 318 | .with_frm_style input[type=search], |
| 298 | 319 | .with_frm_style select, |
| 299 | 320 | .with_frm_style .frm-card-element.StripeElement{ |
| 300 | - min-height: var(--field-height)<?php echo esc_html( $important ); ?>; | |
| 321 | + min-height:<?php echo esc_html( $defaults['field_height'] ); ?>; | |
| 322 | + min-height:var(--field-height)<?php echo esc_html( $important ); ?>; | |
| 301 | 323 | line-height:1.3<?php echo esc_html( $important ); ?>; |
| 302 | 324 | } |
| 303 | 325 | |
| 304 | 326 | .with_frm_style select[multiple=multiple]{ |
| @@ -313,15 +335,17 @@ | ||
| 313 | 335 | box-shadow:none; |
| 314 | 336 | } |
| 315 | 337 | |
| 316 | 338 | .with_frm_style input[type=file]{ |
| 317 | - color: var(--text-color)<?php echo esc_html( $important ); ?>; | |
| 318 | - padding: 0px; | |
| 339 | + color:<?php echo esc_html( $defaults['text_color'] ); ?>; | |
| 340 | + color:var(--text-color)<?php echo esc_html( $important ); ?>; | |
| 341 | + padding:0px; | |
| 319 | 342 | <?php if ( ! empty( $defaults['font'] ) ) { ?> |
| 320 | - font-family: var(--font)<?php echo esc_html( $important ); ?>; | |
| 343 | + font-family:var(--font)<?php echo esc_html( $important ); ?>; | |
| 321 | 344 | <?php } ?> |
| 322 | - font-size: var(--field-font-size)<?php echo esc_html( $important ); ?>; | |
| 323 | - display: initial; | |
| 345 | + font-size:<?php echo esc_html( $defaults['field_font_size'] ); ?>; | |
| 346 | + font-size:var(--field-font-size)<?php echo esc_html( $important ); ?>; | |
| 347 | + display:initial; | |
| 324 | 348 | } |
| 325 | 349 | |
| 326 | 350 | .with_frm_style input[type=file].frm_transparent{ |
| 327 | 351 | color:transparent<?php echo esc_html( $important ); ?>; |
| @@ -326,11 +350,11 @@ | ||
| 326 | 350 | .with_frm_style input[type=file].frm_transparent{ |
| 327 | 351 | color:transparent<?php echo esc_html( $important ); ?>; |
| 328 | 352 | } |
| 329 | 353 | |
| 330 | -<?php if ( $pro_is_installed ) { ?> | |
| 331 | 354 | .with_frm_style .wp-editor-wrap{ |
| 332 | - width: var(--field-width)<?php echo esc_html( $important ); ?>; | |
| 355 | + width:<?php echo esc_html( $defaults['field_width'] . $important ); ?>; | |
| 356 | + width:var(--field-width)<?php echo esc_html( $important ); ?>; | |
| 333 | 357 | max-width:100%; |
| 334 | 358 | } |
| 335 | 359 | |
| 336 | 360 | .with_frm_style .wp-editor-container textarea{ |
| @@ -338,14 +362,15 @@ | ||
| 338 | 362 | box-shadow:none !important; |
| 339 | 363 | } |
| 340 | 364 | |
| 341 | 365 | .with_frm_style .mceIframeContainer{ |
| 342 | - background-color: var(--bg-color)<?php echo esc_html( $important ); ?>; | |
| 366 | + background-color:<?php echo esc_html( $defaults['bg_color'] . $important ); ?>; | |
| 367 | + background-color:var(--bg-color)<?php echo esc_html( $important ); ?>; | |
| 343 | 368 | } |
| 344 | -<?php } ?> | |
| 345 | 369 | |
| 346 | 370 | .with_frm_style select{ |
| 347 | - width: var(--auto-width)<?php echo esc_html( $important ); ?>; | |
| 371 | + width:<?php echo esc_html( $defaults['auto_width'] ); ?>; | |
| 372 | + width:var(--auto-width)<?php echo esc_html( $important ); ?>; | |
| 348 | 373 | max-width:100%; |
| 349 | 374 | background-position-y: calc(50% + 3px); |
| 350 | 375 | } |
| 351 | 376 | |
| @@ -353,12 +378,15 @@ | ||
| 353 | 378 | .with_frm_style select[disabled], |
| 354 | 379 | .with_frm_style textarea[disabled], |
| 355 | 380 | .with_frm_style input[readonly], |
| 356 | 381 | .with_frm_style select[readonly], |
| 357 | -.with_frm_style textarea[readonly] { | |
| 358 | - background-color: var(--bg-color-disabled)<?php echo esc_html( $important ); ?>; | |
| 359 | - color: var(--text-color-disabled)<?php echo esc_html( $important ); ?>; | |
| 360 | - border-color: var(--border-color-disabled)<?php echo esc_html( $important ); ?>; | |
| 382 | +.with_frm_style textarea[readonly]{ | |
| 383 | + background-color:<?php echo esc_html( $defaults['bg_color_disabled'] ); ?>; | |
| 384 | + background-color:var(--bg-color-disabled)<?php echo esc_html( $important ); ?>; | |
| 385 | + color:<?php echo esc_html( $defaults['text_color_disabled'] ); ?>; | |
| 386 | + color:var(--text-color-disabled)<?php echo esc_html( $important ); ?>; | |
| 387 | + border-color:<?php echo esc_html( $defaults['border_color_disabled'] ); ?>; | |
| 388 | + border-color:var(--border-color-disabled)<?php echo esc_html( $important ); ?>; | |
| 361 | 389 | } |
| 362 | 390 | |
| 363 | 391 | .frm_preview_page:before{ |
| 364 | 392 | content:normal !important; |
| @@ -370,24 +398,30 @@ | ||
| 370 | 398 | |
| 371 | 399 | .with_frm_style .frm_primary_label{ |
| 372 | 400 | max-width:100%; |
| 373 | 401 | <?php if ( ! empty( $defaults['font'] ) ) { ?> |
| 374 | - font-family: var(--font); | |
| 402 | + font-family:<?php echo FrmAppHelper::kses( $defaults['font'] ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>; | |
| 403 | + font-family:var(--font); | |
| 375 | 404 | <?php } ?> |
| 376 | 405 | <?php if ( ! empty( $defaults['font_size'] ) ) { ?> |
| 377 | - font-size: var(--font-size)<?php echo esc_html( $important ); ?>; | |
| 406 | + font-size:<?php echo esc_html( $defaults['font_size'] . $important ); ?>; | |
| 407 | + font-size:var(--font-size)<?php echo esc_html( $important ); ?>; | |
| 378 | 408 | <?php } ?> |
| 379 | 409 | <?php if ( ! empty( $defaults['label_color'] ) ) { ?> |
| 380 | - color: var(--label-color)<?php echo esc_html( $important ); ?>; | |
| 410 | + color:<?php echo esc_html( $defaults['label_color'] . $important ); ?>; | |
| 411 | + color:var(--label-color)<?php echo esc_html( $important ); ?>; | |
| 381 | 412 | <?php } ?> |
| 382 | 413 | <?php if ( ! empty( $defaults['weight'] ) ) { ?> |
| 383 | - font-weight: var(--weight)<?php echo esc_html( $important ); ?>; | |
| 414 | + font-weight:<?php echo esc_html( $defaults['weight'] . $important ); ?>; | |
| 415 | + font-weight:var(--weight)<?php echo esc_html( $important ); ?>; | |
| 384 | 416 | <?php } ?> |
| 385 | 417 | <?php if ( ! empty( $defaults['align'] ) ) { ?> |
| 386 | - text-align: var(--align)<?php echo esc_html( $important ); ?>; | |
| 418 | + text-align:<?php echo esc_html( $defaults['align'] . $important ); ?>; | |
| 419 | + text-align:var(--align)<?php echo esc_html( $important ); ?>; | |
| 387 | 420 | <?php } ?> |
| 388 | 421 | <?php if ( ! empty( $defaults['label_padding'] ) ) { ?> |
| 389 | - padding: var(--label-padding)<?php echo esc_html( $important ); ?>; | |
| 422 | + padding:<?php echo esc_html( $defaults['label_padding'] . $important ); ?>; | |
| 423 | + padding:var(--label-padding)<?php echo esc_html( $important ); ?>; | |
| 390 | 424 | <?php } ?> |
| 391 | 425 | margin:0; |
| 392 | 426 | width:auto; |
| 393 | 427 | display:block; |
| @@ -422,13 +456,11 @@ | ||
| 422 | 456 | .frm_none_container .frm_primary_label{ |
| 423 | 457 | display:none; |
| 424 | 458 | } |
| 425 | 459 | |
| 426 | -<?php if ( $pro_is_installed ) { ?> | |
| 427 | 460 | .with_frm_style .frm_section_heading.frm_hide_section{ |
| 428 | 461 | margin-top:0 !important; |
| 429 | 462 | } |
| 430 | -<?php } ?> | |
| 431 | 463 | |
| 432 | 464 | .with_frm_style .frm_hidden_container .frm_primary_label, |
| 433 | 465 | .with_frm_style .frm_pos_hidden, |
| 434 | 466 | .frm_hidden_container .frm_primary_label{ |
| @@ -442,9 +474,9 @@ | ||
| 442 | 474 | |
| 443 | 475 | /* Floating labels */ |
| 444 | 476 | .with_frm_style .frm_inside_container { |
| 445 | 477 | position: relative; |
| 446 | - padding-top: 18px; | |
| 478 | + padding-top: 16px; | |
| 447 | 479 | padding-top: calc(0.5 * var(--field-height)); |
| 448 | 480 | } |
| 449 | 481 | |
| 450 | 482 | .with_frm_style .frm_inside_container > input, |
| @@ -452,13 +484,21 @@ | ||
| 452 | 484 | .with_frm_style .frm_inside_container > textarea { |
| 453 | 485 | display: block; |
| 454 | 486 | } |
| 455 | 487 | |
| 456 | -.with_frm_style input::placeholder, | |
| 457 | -.with_frm_style textarea::placeholder { | |
| 458 | - font-size: var(--field-font-size)<?php echo esc_html( $important ); ?>; | |
| 488 | +/* These do not work if they are combined */ | |
| 489 | +.with_frm_style .frm_inside_container > input::-moz-placeholder, | |
| 490 | +.with_frm_style .frm_inside_container > textarea::-moz-placeholder { | |
| 491 | + opacity: 0 !important; | |
| 492 | + transition: opacity 0.3s ease-in; | |
| 459 | 493 | } |
| 460 | 494 | |
| 495 | +.with_frm_style .frm_inside_container > input:-ms-input-placeholder, | |
| 496 | +.with_frm_style .frm_inside_container > textarea:-ms-input-placeholder { | |
| 497 | + opacity: 0; | |
| 498 | + transition: opacity 0.3s ease-in; | |
| 499 | +} | |
| 500 | + | |
| 461 | 501 | .with_frm_style .frm_inside_container > input::placeholder, |
| 462 | 502 | .with_frm_style .frm_inside_container > textarea::placeholder { |
| 463 | 503 | opacity: 0; |
| 464 | 504 | transition: opacity 0.3s ease-in; |
| @@ -467,9 +507,9 @@ | ||
| 467 | 507 | .with_frm_style .frm_inside_container > label { |
| 468 | 508 | transition: all 0.3s ease-in; |
| 469 | 509 | |
| 470 | 510 | position: absolute; |
| 471 | - top: 19px; | |
| 511 | + top: 17px; | |
| 472 | 512 | top: calc(1px + .5 * var(--field-height)); |
| 473 | 513 | left: 3px; |
| 474 | 514 | width: 100%; |
| 475 | 515 | |
| @@ -477,9 +517,9 @@ | ||
| 477 | 517 | text-overflow: ellipsis; |
| 478 | 518 | overflow: hidden; |
| 479 | 519 | white-space: nowrap; |
| 480 | 520 | |
| 481 | - padding: 8px 12px; | |
| 521 | + padding: 6px 10px; | |
| 482 | 522 | padding: var(--field-pad); |
| 483 | 523 | |
| 484 | 524 | font-size: 14px; |
| 485 | 525 | font-size: var(--field-font-size); |
| @@ -485,8 +525,9 @@ | ||
| 485 | 525 | font-size: var(--field-font-size); |
| 486 | 526 | font-weight: normal; |
| 487 | 527 | font-weight: var(--field-weight); |
| 488 | 528 | |
| 529 | + -ms-pointer-events: none; | |
| 489 | 530 | pointer-events: none; |
| 490 | 531 | } |
| 491 | 532 | |
| 492 | 533 | .with_frm_style.frm_style_lines-no-boxes .frm_inside_container > label { |
| @@ -500,8 +541,21 @@ | ||
| 500 | 541 | font-size: 12px; |
| 501 | 542 | font-size: calc(0.85 * var(--field-font-size)); |
| 502 | 543 | } |
| 503 | 544 | |
| 545 | +/* These do not work if they are combined */ | |
| 546 | +.with_frm_style .frm_inside_container.frm_label_float_top > input::-moz-placeholder, | |
| 547 | +.with_frm_style .frm_inside_container.frm_label_float_top > textarea::-moz-placeholder { | |
| 548 | + opacity: 1 !important; | |
| 549 | + transition: opacity 0.3s ease-in; | |
| 550 | +} | |
| 551 | + | |
| 552 | +.with_frm_style .frm_inside_container.frm_label_float_top > input:-ms-input-placeholder, | |
| 553 | +.with_frm_style .frm_inside_container.frm_label_float_top > textarea:-ms-input-placeholder { | |
| 554 | + opacity: 1; | |
| 555 | + transition: opacity 0.3s ease-in; | |
| 556 | +} | |
| 557 | + | |
| 504 | 558 | .with_frm_style .frm_inside_container.frm_label_float_top > input::placeholder, |
| 505 | 559 | .with_frm_style .frm_inside_container.frm_label_float_top > textarea::placeholder { |
| 506 | 560 | opacity: 1; |
| 507 | 561 | transition: opacity 0.3s ease-in; |
| @@ -512,9 +566,9 @@ | ||
| 512 | 566 | .with_frm_style .frm_pro_max_limit_desc{ |
| 513 | 567 | clear:both; |
| 514 | 568 | } |
| 515 | 569 | |
| 516 | -.with_frm_style input[type=number][readonly] { | |
| 570 | +.with_frm_style input[type=number][readonly]{ | |
| 517 | 571 | -moz-appearance: textfield; |
| 518 | 572 | } |
| 519 | 573 | |
| 520 | 574 | .with_frm_style select[multiple="multiple"]{ |
| @@ -521,9 +575,8 @@ | ||
| 521 | 575 | height:auto; |
| 522 | 576 | line-height:normal; |
| 523 | 577 | } |
| 524 | 578 | |
| 525 | -<?php if ( $pro_is_installed ) { ?> | |
| 526 | 579 | .with_frm_style .frm_catlevel_2, |
| 527 | 580 | .with_frm_style .frm_catlevel_3, |
| 528 | 581 | .with_frm_style .frm_catlevel_4, |
| 529 | 582 | .with_frm_style .frm_catlevel_5{ |
| @@ -528,11 +581,9 @@ | ||
| 528 | 581 | .with_frm_style .frm_catlevel_4, |
| 529 | 582 | .with_frm_style .frm_catlevel_5{ |
| 530 | 583 | margin-left:18px; |
| 531 | 584 | } |
| 532 | -<?php } ?> | |
| 533 | 585 | |
| 534 | -<?php if ( $pro_is_installed ) { ?> | |
| 535 | 586 | .with_frm_style .wp-editor-container{ |
| 536 | 587 | border:1px solid #e5e5e5; |
| 537 | 588 | } |
| 538 | 589 | |
| @@ -542,9 +593,8 @@ | ||
| 542 | 593 | |
| 543 | 594 | .with_frm_style .wp-editor-container textarea{ |
| 544 | 595 | border:none; |
| 545 | 596 | } |
| 546 | -<?php } ?> | |
| 547 | 597 | |
| 548 | 598 | .with_frm_style .auto_width #loginform input, |
| 549 | 599 | .with_frm_style .auto_width input, |
| 550 | 600 | .with_frm_style input.auto_width, |
| @@ -552,50 +602,59 @@ | ||
| 552 | 602 | .with_frm_style textarea.auto_width{ |
| 553 | 603 | width:auto<?php echo esc_html( $important ); ?>; |
| 554 | 604 | } |
| 555 | 605 | |
| 556 | -<?php if ( $pro_is_installed ) { ?> | |
| 557 | 606 | .with_frm_style .frm_repeat_buttons{ |
| 558 | 607 | white-space:nowrap; |
| 559 | 608 | } |
| 560 | -<?php } ?> | |
| 561 | 609 | |
| 562 | 610 | .with_frm_style .frm_button{ |
| 563 | - text-decoration:none !important; | |
| 611 | + text-decoration:none !important;; | |
| 564 | 612 | border:1px solid #eee; |
| 565 | 613 | display:inline-block; |
| 566 | 614 | <?php if ( ! empty( $defaults['submit_padding'] ) ) { ?> |
| 567 | - padding: var(--submit-padding)<?php echo esc_html( $important ); ?>; | |
| 615 | + padding:<?php echo esc_html( $defaults['submit_padding'] . $important ); ?>; | |
| 616 | + padding:var(--submit-padding)<?php echo esc_html( $important ); ?>; | |
| 568 | 617 | <?php } else { ?> |
| 569 | 618 | padding:5px; |
| 570 | 619 | <?php } ?> |
| 571 | 620 | <?php if ( ! empty( $defaults['border_radius'] ) ) { ?> |
| 621 | + -moz-border-radius:<?php echo esc_html( $defaults['border_radius'] . $important ); ?>; | |
| 622 | + -webkit-border-radius:<?php echo esc_html( $defaults['border_radius'] . $important ); ?>; | |
| 572 | 623 | border-radius:<?php echo esc_html( $defaults['border_radius'] . $important ); ?>; |
| 573 | 624 | border-radius:var(--border-radius)<?php echo esc_html( $important ); ?>; |
| 574 | 625 | <?php } ?> |
| 575 | 626 | <?php if ( ! empty( $defaults['submit_font_size'] ) ) { ?> |
| 576 | - font-size: var(--submit-font-size)<?php echo esc_html( $important ); ?>; | |
| 627 | + font-size:<?php echo esc_html( $defaults['submit_font_size'] . $important ); ?>; | |
| 628 | + font-size:var(--submit-font-size)<?php echo esc_html( $important ); ?>; | |
| 577 | 629 | <?php } ?> |
| 578 | 630 | <?php if ( ! empty( $defaults['font'] ) ) { ?> |
| 579 | - font-family: var(--font)<?php echo esc_html( $important ); ?>; | |
| 631 | + font-family:<?php echo FrmAppHelper::kses( $defaults['font'] . $important ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>; | |
| 632 | + font-family:var(--font)<?php echo esc_html( $important ); ?>; | |
| 580 | 633 | <?php } ?> |
| 581 | 634 | <?php if ( ! empty( $defaults['submit_weight'] ) ) { ?> |
| 582 | - font-weight: var(--submit-weight)<?php echo esc_html( $important ); ?>; | |
| 635 | + font-weight:<?php echo esc_html( $defaults['submit_weight'] . $important ); ?>; | |
| 636 | + font-weight:var(--submit-weight)<?php echo esc_html( $important ); ?>; | |
| 583 | 637 | <?php } ?> |
| 584 | 638 | <?php if ( ! empty( $defaults['submit_text_color'] ) ) { ?> |
| 585 | - color: var(--submit-text-color)<?php echo esc_html( $important ); ?>; | |
| 639 | + color:<?php echo esc_html( $defaults['submit_text_color'] . $important ); ?>; | |
| 640 | + color:var(--submit-text-color)<?php echo esc_html( $important ); ?>; | |
| 586 | 641 | <?php } ?> |
| 587 | 642 | <?php if ( ! empty( $defaults['submit_bg_color'] ) ) { ?> |
| 588 | - background: var(--submit-bg-color)<?php echo esc_html( $important ); ?>; | |
| 643 | + background:<?php echo esc_html( $defaults['submit_bg_color'] . $important ); ?>; | |
| 644 | + background:var(--submit-bg-color)<?php echo esc_html( $important ); ?>; | |
| 589 | 645 | <?php } ?> |
| 590 | 646 | <?php if ( ! empty( $defaults['submit_border_width'] ) ) { ?> |
| 591 | - border-width: var(--submit-border-width)<?php echo esc_html( $important ); ?>; | |
| 647 | + border-width:<?php echo esc_html( $defaults['submit_border_width'] ); ?>; | |
| 648 | + border-width:var(--submit-border-width)<?php echo esc_html( $important ); ?>; | |
| 592 | 649 | <?php } ?> |
| 593 | 650 | <?php if ( ! empty( $defaults['submit_border_color'] ) ) { ?> |
| 594 | - border-color: var(--submit-border-color)<?php echo esc_html( $important ); ?>; | |
| 651 | + border-color:<?php echo esc_html( $defaults['submit_border_color'] . $important ); ?>; | |
| 652 | + border-color:var(--submit-border-color)<?php echo esc_html( $important ); ?>; | |
| 595 | 653 | <?php } ?> |
| 596 | 654 | <?php if ( ! empty( $defaults['submit_height'] ) ) { ?> |
| 597 | - height: var(--submit-height)<?php echo esc_html( $important ); ?>; | |
| 655 | + height:<?php echo esc_html( $defaults['submit_height'] . $important ); ?>; | |
| 656 | + height:var(--submit-height)<?php echo esc_html( $important ); ?>; | |
| 598 | 657 | <?php } ?> |
| 599 | 658 | } |
| 600 | 659 | |
| 601 | 660 | <?php if ( ! empty( $defaults['submit_text_color'] ) ) { ?> |
| @@ -655,11 +714,9 @@ | ||
| 655 | 714 | .with_frm_style.frm_center_submit .frm_submit button{ |
| 656 | 715 | margin-bottom:8px !important; |
| 657 | 716 | } |
| 658 | 717 | |
| 659 | -<?php if ( $pro_is_installed ) { ?> | |
| 660 | 718 | .with_frm_style .frm-edit-page-btn, |
| 661 | -<?php } ?> | |
| 662 | 719 | .with_frm_style .frm_submit input[type=submit], |
| 663 | 720 | .with_frm_style .frm_submit input[type=button], |
| 664 | 721 | .with_frm_style .frm_submit button{ |
| 665 | 722 | -webkit-appearance: none; |
| @@ -676,22 +733,19 @@ | ||
| 676 | 733 | /* keep this for reverse compatibility for old HTML */ |
| 677 | 734 | visibility:visible !important; |
| 678 | 735 | } |
| 679 | 736 | |
| 680 | -<?php if ( $pro_is_installed ) { ?> | |
| 681 | 737 | .with_frm_style .frm_loading_prev .frm_prev_page, |
| 682 | -<?php } ?> | |
| 683 | 738 | .with_frm_style .frm_loading_form .frm_button_submit { |
| 684 | 739 | position: relative; |
| 740 | + opacity: .8; | |
| 685 | 741 | color: transparent !important; |
| 686 | 742 | text-shadow: none !important; |
| 687 | 743 | } |
| 688 | 744 | |
| 689 | -<?php if ( $pro_is_installed ) { ?> | |
| 690 | 745 | .with_frm_style .frm_loading_prev .frm_prev_page:hover, |
| 691 | 746 | .with_frm_style .frm_loading_prev .frm_prev_page:active, |
| 692 | 747 | .with_frm_style .frm_loading_prev .frm_prev_page:focus, |
| 693 | -<?php } ?> | |
| 694 | 748 | .with_frm_style .frm_loading_form .frm_button_submit:hover, |
| 695 | 749 | .with_frm_style .frm_loading_form .frm_button_submit:active, |
| 696 | 750 | .with_frm_style .frm_loading_form .frm_button_submit:focus { |
| 697 | 751 | cursor: not-allowed; |
| @@ -699,11 +753,9 @@ | ||
| 699 | 753 | outline: none !important; |
| 700 | 754 | box-shadow: none; |
| 701 | 755 | } |
| 702 | 756 | |
| 703 | -<?php if ( $pro_is_installed ) { ?> | |
| 704 | 757 | .with_frm_style .frm_loading_prev .frm_prev_page::before, |
| 705 | -<?php } ?> | |
| 706 | 758 | .with_frm_style .frm_loading_form .frm_button_submit:before { |
| 707 | 759 | content: ''; |
| 708 | 760 | display: inline-block; |
| 709 | 761 | position: absolute; |
| @@ -712,9 +764,9 @@ | ||
| 712 | 764 | border-top-color: transparent; |
| 713 | 765 | border-left-color: transparent; |
| 714 | 766 | border-radius: 50%; |
| 715 | 767 | box-sizing: border-box; |
| 716 | - <?php $loader_size = 12; ?> | |
| 768 | + <?php $loader_size = 20; ?> | |
| 717 | 769 | top: 50%; |
| 718 | 770 | left: 50%; |
| 719 | 771 | margin-top: -<?php echo absint( $loader_size / 2 ); ?>px; |
| 720 | 772 | margin-left: -<?php echo absint( $loader_size / 2 ); ?>px; |
| @@ -719,9 +771,12 @@ | ||
| 719 | 771 | margin-top: -<?php echo absint( $loader_size / 2 ); ?>px; |
| 720 | 772 | margin-left: -<?php echo absint( $loader_size / 2 ); ?>px; |
| 721 | 773 | width: <?php echo absint( $loader_size ); ?>px; |
| 722 | 774 | height: <?php echo absint( $loader_size ); ?>px; |
| 723 | - animation: spin 2s linear infinite; | |
| 775 | + -webkit-animation: spin 2s linear infinite; | |
| 776 | + -moz-animation: spin 2s linear infinite; | |
| 777 | + -o-animation: spin 2s linear infinite; | |
| 778 | + animation: spin 2s linear infinite; | |
| 724 | 779 | } |
| 725 | 780 | |
| 726 | 781 | .with_frm_style .frm_submit.frm_flex { |
| 727 | 782 | align-items: center; |
| @@ -727,22 +782,20 @@ | ||
| 727 | 782 | align-items: center; |
| 728 | 783 | gap: 2%; |
| 729 | 784 | } |
| 730 | 785 | |
| 731 | -<?php if ( $pro_is_installed ) { ?> | |
| 732 | 786 | .with_frm_style .frm_submit.frm_flex button.frm_button_submit ~ .frm_prev_page { |
| 733 | 787 | order: -1; |
| 734 | 788 | } |
| 735 | -<?php } ?> | |
| 736 | 789 | |
| 737 | 790 | <?php |
| 738 | 791 | foreach ( $styles as $style ) { |
| 739 | - include __DIR__ . '/_single_theme.css.php'; | |
| 792 | + include( dirname( __FILE__ ) . '/_single_theme.css.php' ); | |
| 740 | 793 | unset( $style ); |
| 741 | 794 | } |
| 742 | 795 | |
| 743 | 796 | // Set it again since it may have been overridden. |
| 744 | -$important = ! empty( $defaults['important_style'] ) ? ' !important' : ''; | |
| 797 | +$important = empty( $defaults['important_style'] ) ? '' : ' !important'; | |
| 745 | 798 | ?> |
| 746 | 799 | |
| 747 | 800 | .frm_ajax_loading{ |
| 748 | 801 | visibility:hidden; |
| @@ -756,18 +809,19 @@ | ||
| 756 | 809 | a.frm_save_draft{ |
| 757 | 810 | cursor:pointer; |
| 758 | 811 | } |
| 759 | 812 | |
| 760 | -<?php if ( $pro_is_installed ) { ?> | |
| 761 | 813 | .with_frm_style a.frm_save_draft, |
| 762 | 814 | .with_frm_style a.frm_start_over{ |
| 763 | - <?php if ( ! empty( $defaults['font'] ) ) { ?> | |
| 764 | - font-family: var(--font); | |
| 815 | +<?php if ( ! empty( $defaults['font'] ) ) { ?> | |
| 816 | + font-family:<?php echo FrmAppHelper::kses( $defaults['font'] ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>; | |
| 817 | + font-family:var(--font); | |
| 765 | 818 | <?php } ?> |
| 766 | - font-size: var(--submit-font-size); | |
| 767 | - font-weight: var(--submit-weight); | |
| 819 | + font-size:<?php echo esc_html( $defaults['submit_font_size'] ); ?>; | |
| 820 | + font-size:var(--submit-font-size); | |
| 821 | + font-weight:<?php echo esc_html( $defaults['submit_weight'] ); ?>; | |
| 822 | + font-weight:var(--submit-weight); | |
| 768 | 823 | } |
| 769 | -<?php } ?> | |
| 770 | 824 | |
| 771 | 825 | .horizontal_radio .frm_radio{ |
| 772 | 826 | margin:0 5px 0 0; |
| 773 | 827 | } |
| @@ -773,9 +827,9 @@ | ||
| 773 | 827 | } |
| 774 | 828 | |
| 775 | 829 | .horizontal_radio .frm_checkbox{ |
| 776 | 830 | margin:0; |
| 777 | - margin-right:12px; | |
| 831 | + margin-right:5px; | |
| 778 | 832 | } |
| 779 | 833 | |
| 780 | 834 | .vertical_radio .frm_checkbox, |
| 781 | 835 | .vertical_radio .frm_radio, |
| @@ -790,13 +844,15 @@ | ||
| 790 | 844 | padding-left: 0; |
| 791 | 845 | } |
| 792 | 846 | |
| 793 | 847 | .with_frm_style .frm_radio{ |
| 794 | - display: var(--radio-align)<?php echo esc_html( $important ); ?>; | |
| 848 | + display:<?php echo esc_html( $defaults['radio_align'] . $important ); ?>; | |
| 849 | + display:var(--radio-align)<?php echo esc_html( $important ); ?>; | |
| 795 | 850 | } |
| 796 | 851 | |
| 797 | 852 | .with_frm_style .frm_checkbox{ |
| 798 | - display: var(--check-align)<?php echo esc_html( $important ); ?>; | |
| 853 | + display:<?php echo esc_html( $defaults['check_align'] . $important ); ?>; | |
| 854 | + display:var(--check-align)<?php echo esc_html( $important ); ?>; | |
| 799 | 855 | } |
| 800 | 856 | |
| 801 | 857 | .with_frm_style .vertical_radio .frm_checkbox, |
| 802 | 858 | .with_frm_style .vertical_radio .frm_radio, |
| @@ -801,9 +857,8 @@ | ||
| 801 | 857 | .with_frm_style .vertical_radio .frm_checkbox, |
| 802 | 858 | .with_frm_style .vertical_radio .frm_radio, |
| 803 | 859 | .vertical_radio .frm_catlevel_1{ |
| 804 | 860 | display:block<?php echo esc_html( $important ); ?>; |
| 805 | - margin-bottom: 10px; | |
| 806 | 861 | } |
| 807 | 862 | |
| 808 | 863 | .with_frm_style .horizontal_radio .frm_checkbox, |
| 809 | 864 | .with_frm_style .horizontal_radio .frm_radio, |
| @@ -811,45 +866,40 @@ | ||
| 811 | 866 | display:inline-block<?php echo esc_html( $important ); ?>; |
| 812 | 867 | } |
| 813 | 868 | |
| 814 | 869 | .with_frm_style .frm_checkbox label, |
| 815 | -.with_frm_style .frm_radio label { | |
| 816 | - display: inline-block; | |
| 817 | - vertical-align: middle; | |
| 870 | +.with_frm_style .frm_radio label{ | |
| 871 | + display: inline; | |
| 818 | 872 | white-space:normal; |
| 819 | 873 | } |
| 820 | 874 | |
| 821 | -.with_frm_style .frm_checkbox label input[type=checkbox], | |
| 822 | -.with_frm_style .frm_radio label input[type=radio] { | |
| 823 | - margin-right: 4px; | |
| 824 | -} | |
| 825 | - | |
| 826 | -.with_frm_style .frm_checkbox label:not(.frm-label-disabled), | |
| 827 | -.with_frm_style .frm_radio label:not(.frm-label-disabled) { | |
| 828 | - cursor: pointer; | |
| 829 | -} | |
| 830 | - | |
| 831 | 875 | .with_frm_style .vertical_radio .frm_checkbox label, |
| 832 | 876 | .with_frm_style .vertical_radio .frm_radio label{ |
| 833 | 877 | display: block; |
| 834 | - width: 100%; | |
| 878 | + padding-left: 20px; | |
| 879 | + text-indent: -20px; | |
| 835 | 880 | } |
| 836 | 881 | |
| 837 | 882 | .with_frm_style .frm_radio label, |
| 838 | -.with_frm_style .frm_checkbox label { | |
| 883 | +.with_frm_style .frm_checkbox label{ | |
| 839 | 884 | <?php if ( ! empty( $defaults['font'] ) ) { ?> |
| 840 | - font-family: var(--font); | |
| 885 | + font-family:<?php echo FrmAppHelper::kses( $defaults['font'] ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>; | |
| 886 | + font-family:var(--font); | |
| 841 | 887 | <?php } ?> |
| 842 | - font-size: var(--check-font-size)<?php echo esc_html( $important ); ?>; | |
| 843 | - color: var(--check-label-color)<?php echo esc_html( $important ); ?>; | |
| 844 | - font-weight: var(--check-weight)<?php echo esc_html( $important ); ?>; | |
| 888 | + font-size:<?php echo esc_html( $defaults['check_font_size'] . $important ); ?>; | |
| 889 | + font-size:var(--check-font-size)<?php echo esc_html( $important ); ?>; | |
| 890 | + color:<?php echo esc_html( $defaults['check_label_color'] . $important ); ?>; | |
| 891 | + color:var(--check-label-color)<?php echo esc_html( $important ); ?>; | |
| 892 | + font-weight:<?php echo esc_html( $defaults['check_weight'] . $important ); ?>; | |
| 893 | + font-weight:var(--check-weight)<?php echo esc_html( $important ); ?>; | |
| 845 | 894 | line-height: 1.3; |
| 846 | 895 | } |
| 847 | 896 | |
| 848 | 897 | .with_frm_style .frm_radio input[type=radio], |
| 849 | 898 | .with_frm_style .frm_checkbox input[type=checkbox] { |
| 850 | - font-size: var(--check-font-size)<?php echo esc_html( $important ); ?>; | |
| 851 | - position: static<?php echo esc_html( $important ); ?>; | |
| 899 | + font-size:<?php echo esc_html( $defaults['check_font_size'] . $important ); ?>; | |
| 900 | + font-size:var(--check-font-size)<?php echo esc_html( $important ); ?>; | |
| 901 | + position:static<?php echo esc_html( $important ); ?>; | |
| 852 | 902 | } |
| 853 | 903 | |
| 854 | 904 | .frm_file_container .frm_file_link, |
| 855 | 905 | .with_frm_style .frm_radio label .frm_file_container, |
| @@ -859,9 +909,9 @@ | ||
| 859 | 909 | vertical-align:middle; |
| 860 | 910 | } |
| 861 | 911 | |
| 862 | 912 | .with_frm_style .frm_radio input[type=radio] |
| 863 | -<?php if ( $pro_is_installed ) : ?> | |
| 913 | +<?php if ( FrmAppHelper::pro_is_installed() ) : ?> | |
| 864 | 914 | , .with_frm_style .frm_scale input[type=radio] |
| 865 | 915 | <?php endif; ?> |
| 866 | 916 | { |
| 867 | 917 | border-radius:50%; |
| @@ -866,96 +916,62 @@ | ||
| 866 | 916 | { |
| 867 | 917 | border-radius:50%; |
| 868 | 918 | } |
| 869 | 919 | |
| 870 | -.with_frm_style .frm_checkbox input[type=checkbox] { | |
| 871 | - border-radius: calc(var(--border-radius) / 2) !important; | |
| 920 | +.with_frm_style .frm_checkbox input[type=checkbox]{ | |
| 921 | + border-radius:0; | |
| 872 | 922 | } |
| 873 | 923 | |
| 874 | 924 | .with_frm_style .frm_radio input[type=radio], |
| 875 | -<?php if ( $pro_is_installed ) : ?> | |
| 925 | +<?php if ( FrmAppHelper::pro_is_installed() ) : ?> | |
| 876 | 926 | .with_frm_style .frm_scale input[type=radio], |
| 877 | 927 | <?php endif; ?> |
| 878 | 928 | .with_frm_style .frm_checkbox input[type=checkbox]{ |
| 929 | + -webkit-appearance: none; | |
| 879 | 930 | appearance: none; |
| 880 | 931 | background-color: var(--bg-color); |
| 881 | 932 | flex: none; |
| 882 | 933 | display:inline-block !important; |
| 883 | - width: 16px !important; | |
| 884 | - min-width: 16px !important; | |
| 885 | - height: 16px !important; | |
| 934 | + margin: 0 5px 0 0; | |
| 886 | 935 | color: var(--border-color); |
| 936 | + width: 18px; | |
| 937 | + min-width: 18px; | |
| 938 | + height: 18px; | |
| 887 | 939 | border: 1px solid currentColor; |
| 888 | 940 | border-color: var(--border-color); |
| 889 | 941 | vertical-align: middle; |
| 890 | 942 | position: initial; /* override Bootstrap */ |
| 891 | 943 | padding: 0; |
| 892 | - margin: 0; | |
| 893 | 944 | } |
| 894 | 945 | |
| 895 | -.frm_forms.with_frm_style .frm_fields_container .frm_radio input[type=radio]:not([disabled]):checked, | |
| 896 | -<?php if ( $pro_is_installed ) : ?> | |
| 897 | -.frm_forms.with_frm_style .frm_fields_container .frm_scale input[type=radio]:not([disabled]):checked, | |
| 946 | +.with_frm_style .frm_radio input[type=radio]:before, | |
| 947 | +<?php if ( FrmAppHelper::pro_is_installed() ) : ?> | |
| 948 | +.with_frm_style .frm_scale input[type=radio]:before, | |
| 898 | 949 | <?php endif; ?> |
| 899 | -.frm_forms.with_frm_style .frm_fields_container .frm_checkbox input[type=checkbox]:not([disabled]):checked { | |
| 900 | - border-color: var(--border-color-active) !important; | |
| 950 | +.with_frm_style .frm_checkbox input[type=checkbox]:before { | |
| 951 | + content: ''; | |
| 952 | + width: 12px; | |
| 953 | + height: 12px; | |
| 954 | + border-radius: 50%; | |
| 955 | + transform: scale(0); | |
| 956 | + transition: 120ms transform ease-in-out; | |
| 957 | + box-shadow: inset 10px 10px var(--text-color); | |
| 958 | + display: block; | |
| 959 | + margin: 2px 0 0 2px; | |
| 901 | 960 | } |
| 902 | 961 | |
| 903 | -.frm_forms.with_frm_style .frm_fields_container .frm_checkbox input[type=checkbox]:not([disabled]):checked { | |
| 904 | - background-color: var(--border-color-active) !important; | |
| 962 | +.with_frm_style .frm_checkbox input[type=checkbox]:before{ | |
| 963 | + clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%); | |
| 964 | + border-radius: 0; | |
| 905 | 965 | } |
| 906 | 966 | |
| 907 | -.with_frm_style .frm_radio input[type=radio][disabled]:checked, | |
| 908 | -<?php if ( $pro_is_installed ) : ?> | |
| 909 | -.with_frm_style .frm_scale input[type=radio][disabled]:checked, | |
| 910 | -<?php endif; ?> | |
| 911 | -.with_frm_style .frm_checkbox input[type=checkbox][disabled]:checked { | |
| 912 | - border-color: var(--border-color) !important; /* Override Style Preview */ | |
| 913 | -} | |
| 914 | - | |
| 915 | -.with_frm_style .frm_checkbox input[type=checkbox][disabled]:checked { | |
| 916 | - background-color: var(--border-color) !important; | |
| 917 | -} | |
| 918 | - | |
| 919 | 967 | .with_frm_style .frm_radio input[type=radio]:checked:before, |
| 920 | -<?php if ( $pro_is_installed ) { ?> | |
| 921 | -.with_frm_style .frm_scale input[type=radio]:checked:before, | |
| 922 | -<?php } ?> | |
| 923 | 968 | .with_frm_style .frm_checkbox input[type=checkbox]:checked:before { |
| 924 | - position: static !important; /* Override Style Preview */ | |
| 925 | - content: ''; | |
| 926 | - display: block; | |
| 969 | + transform: scale(1); | |
| 927 | 970 | } |
| 928 | 971 | |
| 929 | -.frm_forms.with_frm_style .frm_checkbox input[type=checkbox]:before { | |
| 930 | - width: 100% !important; | |
| 931 | - height: 100% !important; | |
| 932 | - background-image: url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.6667 1.5L4.25001 7.91667L1.33334 5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") !important; | |
| 933 | - background-size: 9px !important; | |
| 934 | - background-repeat: no-repeat !important; | |
| 935 | - background-position: center !important; | |
| 936 | - margin: 0; | |
| 937 | -} | |
| 938 | - | |
| 939 | -<?php if ( $pro_is_installed ) { ?> | |
| 940 | -.with_frm_style .frm_scale input[type=radio]:before, | |
| 941 | -<?php } ?> | |
| 942 | -.with_frm_style .frm_radio input[type=radio]:before { | |
| 943 | - width: 8px; | |
| 944 | - height: 8px; | |
| 945 | - border-radius: 50%; | |
| 946 | - background-color: var(--border-color-active); | |
| 947 | - margin: 3px; | |
| 948 | -} | |
| 949 | - | |
| 950 | -<?php if ( $pro_is_installed ) { ?> | |
| 951 | -.with_frm_style .frm_scale input[type=radio][disabled]:before, | |
| 952 | -<?php } ?> | |
| 953 | -.with_frm_style .frm_radio input[type=radio][disabled]:before { | |
| 954 | - background-color: var(--border-color); | |
| 955 | -} | |
| 956 | - | |
| 957 | 972 | .with_frm_style :invalid, |
| 973 | +.with_frm_style :-moz-submit-invalid, | |
| 958 | 974 | .with_frm_style :-moz-ui-invalid{ |
| 959 | 975 | box-shadow:none; |
| 960 | 976 | } |
| 961 | 977 | |
| @@ -971,29 +987,33 @@ | ||
| 971 | 987 | |
| 972 | 988 | .with_frm_style .frm_error_style, |
| 973 | 989 | .with_frm_style .frm_message, |
| 974 | 990 | .frm_success_style{ |
| 991 | + -moz-border-radius:4px; | |
| 992 | + -webkit-border-radius:4px; | |
| 975 | 993 | border-radius:4px; |
| 976 | 994 | padding:15px; |
| 977 | 995 | } |
| 978 | 996 | |
| 979 | -.with_frm_style .frm_message p { | |
| 980 | - color: var(--success-text-color)<?php echo esc_html( $important ); ?>; | |
| 981 | - margin-bottom: 0; | |
| 997 | +.with_frm_style .frm_message p{ | |
| 998 | + margin-bottom:5px; | |
| 999 | + color:<?php echo esc_html( $defaults['success_text_color'] ); ?>; | |
| 1000 | + color:var(--success-text-color)<?php echo esc_html( $important ); ?>; | |
| 982 | 1001 | } |
| 983 | 1002 | |
| 984 | -.with_frm_style .frm_message > p:first-of-type { | |
| 985 | - margin-top: 0; | |
| 986 | -} | |
| 987 | - | |
| 988 | 1003 | .with_frm_style .frm_message, |
| 989 | -.frm_success_style { | |
| 990 | - margin: 5px 0 15px; | |
| 991 | - border: 1px solid var(--success-border-color); | |
| 992 | - background-color: var(--success-bg-color); | |
| 993 | - color: var(--success-text-color)<?php echo esc_html( $important ); ?>; | |
| 994 | - border-radius: var(--border-radius); | |
| 995 | - font-size: var(--success-font-size)<?php echo esc_html( $important ); ?>; | |
| 1004 | +.frm_success_style{ | |
| 1005 | + margin:5px 0 15px; | |
| 1006 | + border:1px solid <?php echo esc_html( $defaults['success_border_color'] ); ?>; | |
| 1007 | + border-color:var(--success-border-color); | |
| 1008 | + background-color:<?php echo esc_html( $defaults['success_bg_color'] ); ?>; | |
| 1009 | + background-color:var(--success-bg-color); | |
| 1010 | + color:<?php echo esc_html( $defaults['success_text_color'] ); ?>; | |
| 1011 | + color:var(--success-text-color)<?php echo esc_html( $important ); ?>; | |
| 1012 | + border-radius:<?php echo esc_html( $defaults['border_radius'] ); ?>; | |
| 1013 | + border-radius:var(--border-radius); | |
| 1014 | + font-size:<?php echo esc_html( $defaults['success_font_size'] ); ?>; | |
| 1015 | + font-size:var(--success-font-size)<?php echo esc_html( $important ); ?>; | |
| 996 | 1016 | } |
| 997 | 1017 | |
| 998 | 1018 | .with_frm_style .frm_plain_success .frm_message { |
| 999 | 1019 | background-color: transparent; |
| @@ -1029,9 +1049,10 @@ | ||
| 1029 | 1049 | padding:5px; |
| 1030 | 1050 | border-width:1px; |
| 1031 | 1051 | border-style:solid; |
| 1032 | 1052 | <?php if ( ! empty( $defaults['border_color'] ) ) { ?> |
| 1033 | - border-color: var(--border-color); | |
| 1053 | + border-color:<?php echo esc_html( $defaults['border_color'] ); ?>; | |
| 1054 | + border-color:var(--border-color); | |
| 1034 | 1055 | <?php } ?> |
| 1035 | 1056 | border-top:none; |
| 1036 | 1057 | border-left:none; |
| 1037 | 1058 | border-right:none; |
| @@ -1046,9 +1067,10 @@ | ||
| 1046 | 1067 | } |
| 1047 | 1068 | |
| 1048 | 1069 | <?php if ( ! empty( $defaults['border_color'] ) ) { ?> |
| 1049 | 1070 | .with_frm_style .frm-alt-table{ |
| 1050 | - border-color: var(--border-color); | |
| 1071 | + border-color:<?php echo esc_html( $defaults['border_color'] ); ?>; | |
| 1072 | + border-color:var(--border-color); | |
| 1051 | 1073 | } |
| 1052 | 1074 | <?php } ?> |
| 1053 | 1075 | |
| 1054 | 1076 | .frm-alt-table th { |
| @@ -1071,28 +1093,27 @@ | ||
| 1071 | 1093 | .frm-alt-table tr:nth-child(even) { |
| 1072 | 1094 | background-color:<?php echo esc_html( FrmStylesHelper::adjust_brightness( $defaults['border_color'], 45 ) ); ?>; |
| 1073 | 1095 | } |
| 1074 | 1096 | |
| 1075 | -<?php if ( $pro_is_installed ) { ?> | |
| 1076 | 1097 | table.form_results.with_frm_style{ |
| 1077 | - border-style: solid; | |
| 1078 | - border-width: var(--field-border-width)<?php echo esc_html( $important ); ?>; | |
| 1079 | - border-color: var(--border-color)<?php echo esc_html( $important ); ?>; | |
| 1098 | + border:<?php echo esc_html( $defaults['field_border_width'] ); ?> solid <?php echo esc_html( $defaults['border_color'] . $important ); ?>; | |
| 1099 | + border-width:var(--field-border-width)<?php echo esc_html( $important ); ?>; | |
| 1100 | + border-color:var(--border-color)<?php echo esc_html( $important ); ?>; | |
| 1080 | 1101 | } |
| 1081 | 1102 | |
| 1082 | 1103 | table.form_results.with_frm_style tr td{ |
| 1083 | 1104 | text-align:left; |
| 1084 | 1105 | padding:7px 9px; |
| 1085 | - <?php if ( ! empty( $defaults['text_color'] ) ) { ?> | |
| 1086 | - color: var(--text-color)<?php echo esc_html( $important ); ?>; | |
| 1106 | +<?php if ( ! empty( $defaults['text_color'] ) ) { ?> | |
| 1107 | + color:<?php echo esc_html( $defaults['text_color'] ); ?>; | |
| 1108 | + color:var(--text-color)<?php echo esc_html( $important ); ?>; | |
| 1087 | 1109 | <?php } ?> |
| 1088 | - <?php if ( ! empty( $defaults['border_color'] ) ) { ?> | |
| 1089 | - border-top-style: solid; | |
| 1090 | - border-top-width: var(--field-border-width)<?php echo esc_html( $important ); ?>; | |
| 1091 | - border-top-color: var(--border-color)<?php echo esc_html( $important ); ?>; | |
| 1110 | +<?php if ( ! empty( $defaults['border_color'] ) ) { ?> | |
| 1111 | + border-top:1px solid <?php echo esc_html( $defaults['border_color'] ); ?>; | |
| 1112 | + border-top-width:var(--field-border-width)<?php echo esc_html( $important ); ?>; | |
| 1113 | + border-top-color:var(--border-color)<?php echo esc_html( $important ); ?>; | |
| 1092 | 1114 | <?php } ?> |
| 1093 | 1115 | } |
| 1094 | -<?php } ?> | |
| 1095 | 1116 | |
| 1096 | 1117 | table.form_results.with_frm_style tr.frm_even, |
| 1097 | 1118 | .frm-grid .frm_even{ |
| 1098 | 1119 | background-color:#fff; |
| @@ -1100,10 +1121,11 @@ | ||
| 1100 | 1121 | } |
| 1101 | 1122 | |
| 1102 | 1123 | <?php if ( ! empty( $defaults['bg_color'] ) ) { ?> |
| 1103 | 1124 | table.form_results.with_frm_style tr.frm_odd, |
| 1104 | -.frm-grid .frm_odd { | |
| 1105 | - background-color: var(--bg-color)<?php echo esc_html( $important ); ?>; | |
| 1125 | +.frm-grid .frm_odd{ | |
| 1126 | + background-color:<?php echo esc_html( $defaults['bg_color'] ); ?>; | |
| 1127 | + background-color:var(--bg-color)<?php echo esc_html( $important ); ?>; | |
| 1106 | 1128 | } |
| 1107 | 1129 | <?php } ?> |
| 1108 | 1130 | |
| 1109 | 1131 | <?php if ( ! empty( $defaults['border_color'] ) ) { ?> |
| @@ -1111,23 +1133,18 @@ | ||
| 1111 | 1133 | background-color:<?php echo esc_html( FrmStylesHelper::adjust_brightness( $defaults['border_color'], 45 ) ); ?>; |
| 1112 | 1134 | padding: 40px; |
| 1113 | 1135 | } |
| 1114 | 1136 | |
| 1115 | - <?php if ( $pro_is_installed ) { ?> | |
| 1116 | 1137 | .with_frm_style .frm-show-form .frm_color_block.frm_section_heading h3, |
| 1117 | 1138 | .frm_color_block.frm_section_heading h3 { |
| 1118 | 1139 | border-width: 0 !important; |
| 1119 | 1140 | } |
| 1120 | - <?php } ?> | |
| 1121 | 1141 | <?php } ?> |
| 1122 | 1142 | |
| 1123 | -<?php if ( $pro_is_installed ) { ?> | |
| 1124 | 1143 | .frm_collapse .ui-icon{ |
| 1125 | 1144 | display:inline-block; |
| 1126 | 1145 | } |
| 1127 | -<?php } ?> | |
| 1128 | 1146 | |
| 1129 | -<?php if ( $pro_is_installed ) { ?> | |
| 1130 | 1147 | .frm_toggle_container{ |
| 1131 | 1148 | /* Prevent the slide and bounce */ |
| 1132 | 1149 | border:1px solid transparent; |
| 1133 | 1150 | } |
| @@ -1144,11 +1161,9 @@ | ||
| 1144 | 1161 | |
| 1145 | 1162 | .frm_toggle_container .frm_month_listing{ |
| 1146 | 1163 | margin-left:40px; |
| 1147 | 1164 | } |
| 1148 | -<?php } ?> | |
| 1149 | 1165 | |
| 1150 | -<?php if ( $pro_is_installed ) { ?> | |
| 1151 | 1166 | #frm_loading{ |
| 1152 | 1167 | display:none; |
| 1153 | 1168 | position:fixed; |
| 1154 | 1169 | top:0; |
| @@ -1191,30 +1206,28 @@ | ||
| 1191 | 1206 | #frm_loading .progress.active .progress-bar{ |
| 1192 | 1207 | animation:2s linear 0s normal none infinite progress-bar-stripes; |
| 1193 | 1208 | } |
| 1194 | 1209 | |
| 1195 | - <?php if ( ! empty( $defaults['bg_color'] ) ) { ?> | |
| 1196 | -#frm_loading .progress-striped .progress-bar { | |
| 1197 | - <?php if ( ! empty( $defaults['border_color'] ) ) { ?> | |
| 1198 | - background-image: linear-gradient(45deg, var(--border-color) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, var(--border-color) 50%, var(--border-color) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0)); | |
| 1210 | +<?php if ( ! empty( $defaults['bg_color'] ) ) { ?> | |
| 1211 | +#frm_loading .progress-striped .progress-bar{ | |
| 1212 | + <?php if ( ! empty( $defaults['border_color'] ) ) { ?> | |
| 1213 | + background-image:linear-gradient(45deg, <?php echo esc_html( $defaults['border_color'] ); ?> 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, <?php echo esc_html( $defaults['border_color'] ); ?> 50%, <?php echo esc_html( $defaults['border_color'] ); ?> 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0)); | |
| 1199 | 1214 | <?php } ?> |
| 1200 | 1215 | background-size:40px 40px; |
| 1201 | 1216 | } |
| 1202 | 1217 | <?php } ?> |
| 1203 | 1218 | |
| 1204 | -#frm_loading .progress-bar { | |
| 1205 | - background-color: var(--bg-color); | |
| 1206 | - box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.15) inset; | |
| 1207 | - float: left; | |
| 1208 | - height: 100%; | |
| 1209 | - line-height: 20px; | |
| 1210 | - text-align: center; | |
| 1211 | - transition: width 0.6s ease 0s; | |
| 1212 | - width: 100%; | |
| 1219 | +#frm_loading .progress-bar{ | |
| 1220 | + background-color:<?php echo esc_html( $defaults['bg_color'] ); ?>; | |
| 1221 | + background-color:var(--bg-color); | |
| 1222 | + box-shadow:0 -1px 0 rgba(0, 0, 0, 0.15) inset; | |
| 1223 | + float:left; | |
| 1224 | + height:100%; | |
| 1225 | + line-height:20px; | |
| 1226 | + text-align:center; | |
| 1227 | + transition:width 0.6s ease 0s; | |
| 1228 | + width:100%; | |
| 1213 | 1229 | } |
| 1214 | - <?php | |
| 1215 | -}//end if | |
| 1216 | -?> | |
| 1217 | 1230 | |
| 1218 | 1231 | .frm_image_from_url{ |
| 1219 | 1232 | height:50px; |
| 1220 | 1233 | } |
| @@ -1223,9 +1236,8 @@ | ||
| 1223 | 1236 | background:url(../images/ajax_loader.gif) no-repeat center center; |
| 1224 | 1237 | padding:6px 12px; |
| 1225 | 1238 | } |
| 1226 | 1239 | |
| 1227 | -<?php if ( $pro_is_installed ) { ?> | |
| 1228 | 1240 | select.frm_loading_lookup{ |
| 1229 | 1241 | background-image: url(../images/ajax_loader.gif) !important; |
| 1230 | 1242 | background-position: 10px; |
| 1231 | 1243 | background-repeat: no-repeat; |
| @@ -1230,25 +1242,22 @@ | ||
| 1230 | 1242 | background-position: 10px; |
| 1231 | 1243 | background-repeat: no-repeat; |
| 1232 | 1244 | color: transparent !important; |
| 1233 | 1245 | } |
| 1234 | -<?php } ?> | |
| 1235 | 1246 | |
| 1236 | -<?php readfile( __DIR__ . '/frm_grids.css' ); ?> | |
| 1247 | +<?php readfile( dirname( __FILE__ ) . '/frm_grids.css' ); ?> | |
| 1237 | 1248 | |
| 1238 | -<?php if ( $pro_is_installed ) { ?> | |
| 1239 | 1249 | .frm_conf_field.frm_left_container .frm_primary_label{ |
| 1240 | 1250 | display:none; |
| 1241 | 1251 | } |
| 1242 | -<?php } ?> | |
| 1243 | 1252 | |
| 1244 | -<?php if ( $pro_is_installed ) { ?> | |
| 1245 | 1253 | .wp-editor-wrap *, |
| 1246 | 1254 | .wp-editor-wrap *:after, |
| 1247 | 1255 | .wp-editor-wrap *:before{ |
| 1256 | + -webkit-box-sizing:content-box; | |
| 1257 | + -moz-box-sizing:content-box; | |
| 1248 | 1258 | box-sizing:content-box; |
| 1249 | 1259 | } |
| 1250 | -<?php } ?> | |
| 1251 | 1260 | |
| 1252 | 1261 | .with_frm_style .frm_grid, |
| 1253 | 1262 | .with_frm_style .frm_grid_first, |
| 1254 | 1263 | .with_frm_style .frm_grid_odd{ |
| @@ -1257,9 +1266,10 @@ | ||
| 1257 | 1266 | padding:5px; |
| 1258 | 1267 | border-width:1px; |
| 1259 | 1268 | border-style:solid; |
| 1260 | 1269 | <?php if ( ! empty( $defaults['border_color'] ) ) { ?> |
| 1261 | - border-color: var(--border-color)<?php echo esc_html( $important ); ?>; | |
| 1270 | + border-color:<?php echo esc_html( $defaults['border_color'] ); ?>; | |
| 1271 | + border-color:var(--border-color)<?php echo esc_html( $important ); ?>; | |
| 1262 | 1272 | <?php } ?> |
| 1263 | 1273 | border-left:none; |
| 1264 | 1274 | border-right:none; |
| 1265 | 1275 | } |
| @@ -1294,16 +1304,18 @@ | ||
| 1294 | 1304 | } |
| 1295 | 1305 | |
| 1296 | 1306 | <?php if ( ! empty( $defaults['bg_color'] ) ) { ?> |
| 1297 | 1307 | .frm_grid_first, |
| 1298 | -.frm_grid_odd { | |
| 1299 | - background-color: var(--bg-color); | |
| 1308 | +.frm_grid_odd{ | |
| 1309 | + background-color:<?php echo esc_html( $defaults['bg_color'] ); ?>; | |
| 1310 | + background-color:var(--bg-color); | |
| 1300 | 1311 | } |
| 1301 | 1312 | <?php } ?> |
| 1302 | 1313 | |
| 1303 | 1314 | <?php if ( ! empty( $defaults['bg_color_active'] ) ) { ?> |
| 1304 | -.frm_grid { | |
| 1305 | - background-color: var(--bg-color-active)<?php echo esc_html( $important ); ?>; | |
| 1315 | +.frm_grid{ | |
| 1316 | + background-color:<?php echo esc_html( $defaults['bg_color_active'] . $important ); ?>; | |
| 1317 | + background-color:var(--bg-color-active)<?php echo esc_html( $important ); ?>; | |
| 1306 | 1318 | } |
| 1307 | 1319 | <?php } ?> |
| 1308 | 1320 | |
| 1309 | 1321 | .with_frm_style .frm_grid.frm_blank_field, |
| @@ -1308,10 +1320,12 @@ | ||
| 1308 | 1320 | |
| 1309 | 1321 | .with_frm_style .frm_grid.frm_blank_field, |
| 1310 | 1322 | .with_frm_style .frm_grid_first.frm_blank_field, |
| 1311 | 1323 | .with_frm_style .frm_grid_odd.frm_blank_field{ |
| 1324 | + background-color:<?php echo esc_html( $defaults['error_bg'] . $important ); ?>; | |
| 1312 | 1325 | background-color:var(--error-bg)<?php echo esc_html( $important ); ?>; |
| 1313 | - border-color: var(--error-border); | |
| 1326 | + border-color:<?php echo esc_html( $defaults['error_border'] ); ?>; | |
| 1327 | + border-color:var(--error-bg); | |
| 1314 | 1328 | } |
| 1315 | 1329 | |
| 1316 | 1330 | .frm_grid .frm_primary_label, |
| 1317 | 1331 | .frm_grid_first .frm_primary_label, |
| @@ -1333,10 +1347,9 @@ | ||
| 1333 | 1347 | .frm_grid_odd .frm_radio label, |
| 1334 | 1348 | .frm_grid_first .frm_checkbox label, |
| 1335 | 1349 | .frm_grid .frm_checkbox label, |
| 1336 | 1350 | .frm_grid_odd .frm_checkbox label{ |
| 1337 | - color:transparent; | |
| 1338 | - text-indent: -9999px; | |
| 1351 | + visibility:hidden; | |
| 1339 | 1352 | white-space:nowrap; |
| 1340 | 1353 | text-align:left; |
| 1341 | 1354 | } |
| 1342 | 1355 | |
| @@ -1462,18 +1475,8 @@ | ||
| 1462 | 1475 | .frm_form_field.frm_left_container .frm_opt_container{ |
| 1463 | 1476 | padding-top:4px; |
| 1464 | 1477 | } |
| 1465 | 1478 | |
| 1466 | -.with_frm_style .frm_left_container > select.auto_width, | |
| 1467 | -.with_frm_style .frm_right_container > select.auto_width { | |
| 1468 | - width: max-content<?php echo esc_html( $important ); ?>; | |
| 1469 | -} | |
| 1470 | - | |
| 1471 | -.with_frm_style .frm_right_container > .frm_primary_label, | |
| 1472 | -.with_frm_style .frm_right_container > select.auto_width { | |
| 1473 | - margin-left: auto<?php echo esc_html( $important ); ?>; | |
| 1474 | -} | |
| 1475 | - | |
| 1476 | 1479 | .with_frm_style .frm_inline_container.frm_grid_first .frm_primary_label, |
| 1477 | 1480 | .with_frm_style .frm_inline_container.frm_grid .frm_primary_label, |
| 1478 | 1481 | .with_frm_style .frm_inline_container.frm_grid_odd .frm_primary_label, |
| 1479 | 1482 | .with_frm_style .frm_inline_container.frm_grid_first .frm_opt_container, |
| @@ -1508,9 +1511,11 @@ | ||
| 1508 | 1511 | grid-column-end: span 1; |
| 1509 | 1512 | } |
| 1510 | 1513 | |
| 1511 | 1514 | .frm_form_field .frm_checkbox, |
| 1512 | -.frm_form_field .frm_radio { | |
| 1515 | +.frm_form_field .frm_checkbox + .frm_checkbox, | |
| 1516 | +.frm_form_field .frm_radio, | |
| 1517 | +.frm_form_field .frm_radio + .frm_radio{ | |
| 1513 | 1518 | margin-top: 0; |
| 1514 | 1519 | margin-bottom: 0; |
| 1515 | 1520 | } |
| 1516 | 1521 | |
| @@ -1519,24 +1524,36 @@ | ||
| 1519 | 1524 | overflow:auto; |
| 1520 | 1525 | } |
| 1521 | 1526 | |
| 1522 | 1527 | .frm_html_container.frm_scroll_box, |
| 1523 | -.frm_form_field.frm_html_scroll_box { | |
| 1524 | - height: 100px; | |
| 1525 | - overflow: auto; | |
| 1526 | - background-color: var(--bg-color); | |
| 1527 | - border-color: var(--border-color); | |
| 1528 | - border-width: var(--field-border-width); | |
| 1529 | - border-style: var(--field-border-style); | |
| 1530 | - border-radius: var(--border-radius); | |
| 1531 | - width: var(--field-width); | |
| 1532 | - max-width: 100%; | |
| 1533 | - font-size: var(--field-font-size); | |
| 1534 | - padding: var(--field-pad); | |
| 1535 | - box-sizing: border-box; | |
| 1536 | - outline: none<?php echo esc_html( $important ); ?>; | |
| 1537 | - font-weight: normal; | |
| 1538 | - box-shadow: var(--box-shadow); | |
| 1528 | +.frm_form_field.frm_html_scroll_box{ | |
| 1529 | + height:100px; | |
| 1530 | + overflow:auto; | |
| 1531 | + background-color:<?php echo esc_html( $defaults['bg_color'] ); ?>; | |
| 1532 | + background-color:var(--bg-color); | |
| 1533 | + border-color:<?php echo esc_html( $defaults['border_color'] ); ?>; | |
| 1534 | + border-color:var(--border-color); | |
| 1535 | + border-width:<?php echo esc_html( $defaults['field_border_width'] ); ?>; | |
| 1536 | + border-width:var(--field-border-width); | |
| 1537 | + border-style:<?php echo esc_html( $defaults['field_border_style'] ); ?>; | |
| 1538 | + border-style:var(--field-border-style); | |
| 1539 | + -moz-border-radius:<?php echo esc_html( $defaults['border_radius'] ); ?>; | |
| 1540 | + -webkit-border-radius:<?php echo esc_html( $defaults['border_radius'] ); ?>; | |
| 1541 | + border-radius:<?php echo esc_html( $defaults['border_radius'] ); ?>; | |
| 1542 | + border-radius:var(--border-radius); | |
| 1543 | + width:<?php echo esc_html( $defaults['field_width'] ); ?>; | |
| 1544 | + width:var(--field-width); | |
| 1545 | + max-width:100%; | |
| 1546 | + font-size:<?php echo esc_html( $defaults['field_font_size'] ); ?>; | |
| 1547 | + font-size:var(--field-font-size); | |
| 1548 | + padding:<?php echo esc_html( $defaults['field_pad'] ); ?>; | |
| 1549 | + padding:var(--field-pad); | |
| 1550 | + -webkit-box-sizing:border-box; | |
| 1551 | + -moz-box-sizing:border-box; | |
| 1552 | + box-sizing:border-box; | |
| 1553 | + outline:none<?php echo esc_html( $important ); ?>; | |
| 1554 | + font-weight:normal; | |
| 1555 | + box-shadow:var(--box-shadow); | |
| 1539 | 1556 | } |
| 1540 | 1557 | |
| 1541 | 1558 | .frm_form_field.frm_total_big input, |
| 1542 | 1559 | .frm_form_field.frm_total_big textarea, |
| @@ -1545,8 +1562,10 @@ | ||
| 1545 | 1562 | opacity:1; |
| 1546 | 1563 | background-color:transparent !important; |
| 1547 | 1564 | border:none !important; |
| 1548 | 1565 | font-weight:bold; |
| 1566 | + -moz-box-shadow:none; | |
| 1567 | + -webkit-box-shadow:none; | |
| 1549 | 1568 | width:auto !important; |
| 1550 | 1569 | height:auto !important; |
| 1551 | 1570 | box-shadow:none !important; |
| 1552 | 1571 | display:inline; |
| @@ -1566,8 +1585,10 @@ | ||
| 1566 | 1585 | .frm_form_field.frm_total input:focus, |
| 1567 | 1586 | .frm_form_field.frm_total textarea:focus{ |
| 1568 | 1587 | background-color:transparent; |
| 1569 | 1588 | border:none; |
| 1589 | + -moz-box-shadow:none; | |
| 1590 | + -webkit-box-shadow:none; | |
| 1570 | 1591 | box-shadow:none; |
| 1571 | 1592 | } |
| 1572 | 1593 | |
| 1573 | 1594 | .frm_form_field.frm_label_justify .frm_primary_label{ |
| @@ -1592,8 +1613,13 @@ | ||
| 1592 | 1613 | .frm_clearfix{ |
| 1593 | 1614 | display:block; |
| 1594 | 1615 | } |
| 1595 | 1616 | |
| 1617 | +.with_frm_style .frm_repeat_sec .frm_form_field.frm_repeat_buttons .frm_icon_font::before { | |
| 1618 | + color:<?php echo esc_html( $defaults['repeat_icon_color'] . $important ); ?>; | |
| 1619 | + color:var(--repeat-icon-color)<?php echo esc_html( $important ); ?>; | |
| 1620 | +} | |
| 1621 | + | |
| 1596 | 1622 | .with_frm_style .frm_combo_inputs_container > .frm_form_subfield-first, |
| 1597 | 1623 | .with_frm_style .frm_combo_inputs_container > .frm_form_subfield-middle, |
| 1598 | 1624 | .with_frm_style .frm_combo_inputs_container > .frm_form_subfield-last { |
| 1599 | 1625 | margin-bottom: 0 !important; |
| @@ -1598,15 +1624,15 @@ | ||
| 1598 | 1624 | .with_frm_style .frm_combo_inputs_container > .frm_form_subfield-last { |
| 1599 | 1625 | margin-bottom: 0 !important; |
| 1600 | 1626 | } |
| 1601 | 1627 | |
| 1628 | +<?php | |
| 1629 | +FrmStylesHelper::maybe_include_font_icon_css(); | |
| 1602 | 1630 | |
| 1603 | -<?php | |
| 1604 | 1631 | /** |
| 1605 | 1632 | * Call action so other plugins can add additional CSS. |
| 1606 | 1633 | * |
| 1607 | 1634 | * @param array $args { |
| 1608 | - * | |
| 1609 | 1635 | * @type array $defaults |
| 1610 | 1636 | * } |
| 1611 | 1637 | */ |
| 1612 | 1638 | do_action( 'frm_include_front_css', compact( 'defaults' ) ); |
| @@ -1613,9 +1639,8 @@ | ||
| 1613 | 1639 | ?> |
| 1614 | 1640 | |
| 1615 | 1641 | /* Responsive */ |
| 1616 | 1642 | |
| 1617 | -<?php if ( $pro_is_installed ) { ?> | |
| 1618 | 1643 | @media only screen and (max-width: 900px) { |
| 1619 | 1644 | .frm_form_field .frm_repeat_grid .frm_form_field.frm_sixth .frm_primary_label, |
| 1620 | 1645 | .frm_form_field .frm_repeat_grid .frm_form_field.frm_seventh .frm_primary_label, |
| 1621 | 1646 | .frm_form_field .frm_repeat_grid .frm_form_field.frm_eighth .frm_primary_label{ |
| @@ -1621,9 +1646,8 @@ | ||
| 1621 | 1646 | .frm_form_field .frm_repeat_grid .frm_form_field.frm_eighth .frm_primary_label{ |
| 1622 | 1647 | display: block !important; |
| 1623 | 1648 | } |
| 1624 | 1649 | } |
| 1625 | -<?php } ?> | |
| 1626 | 1650 | |
| 1627 | 1651 | @media only screen and (max-width: 600px) { |
| 1628 | 1652 | .frm_form_field.frm_four_col .frm_opt_container{ |
| 1629 | 1653 | grid-template-columns: repeat(2, 1fr); |
| @@ -1628,14 +1652,12 @@ | ||
| 1628 | 1652 | .frm_form_field.frm_four_col .frm_opt_container{ |
| 1629 | 1653 | grid-template-columns: repeat(2, 1fr); |
| 1630 | 1654 | } |
| 1631 | 1655 | |
| 1632 | - <?php if ( $pro_is_installed ) { ?> | |
| 1633 | 1656 | .with_frm_style .frm_repeat_inline, |
| 1634 | 1657 | .with_frm_style .frm_repeat_grid{ |
| 1635 | 1658 | margin: 20px 0; |
| 1636 | 1659 | } |
| 1637 | - <?php } ?> | |
| 1638 | 1660 | } |
| 1639 | 1661 | |
| 1640 | 1662 | @media only screen and (max-width: 500px) { |
| 1641 | 1663 | .frm_form_field.frm_two_col .frm_radio, |
| @@ -1660,8 +1682,9 @@ | ||
| 1660 | 1682 | max-width:302px; |
| 1661 | 1683 | border-right:1px solid #d3d3d3; |
| 1662 | 1684 | border-radius:4px; |
| 1663 | 1685 | box-shadow:2px 0px 4px -1px rgba(0,0,0,.08); |
| 1686 | + -moz-box-shadow:2px 0px 4px -1px rgba(0,0,0,.08); | |
| 1664 | 1687 | } |
| 1665 | 1688 | |
| 1666 | 1689 | .with_frm_style .g-recaptcha iframe, |
| 1667 | 1690 | .with_frm_style .frm-g-recaptcha iframe{ |
| @@ -1667,18 +1690,7 @@ | ||
| 1667 | 1690 | .with_frm_style .frm-g-recaptcha iframe{ |
| 1668 | 1691 | width:100%; |
| 1669 | 1692 | } |
| 1670 | 1693 | } |
| 1671 | - | |
| 1672 | -.frm-card-element .sq-card-wrapper .sq-card-message { | |
| 1673 | - margin-bottom: 0; | |
| 1674 | -} | |
| 1675 | -.frm-card-errors:empty { | |
| 1676 | - margin: 0; | |
| 1677 | -} | |
| 1678 | 1694 | <?php |
| 1679 | 1695 | |
| 1680 | -$frm_custom_css = strip_tags( FrmStylesController::get_custom_css() ); | |
| 1681 | - | |
| 1682 | -if ( $frm_custom_css ) { | |
| 1683 | - echo FrmStylesHelper::maybe_scope_css_for_admin( $frm_custom_css ) . PHP_EOL; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped | |
| 1684 | -} | |
| 1696 | +echo strip_tags( FrmStylesController::get_custom_css() ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped | |