PluginProbe
GetResponse Forms by Optin Cat / 1.7.1
GetResponse Forms by Optin Cat v1.7.1
1.3.4 1.3.5 1.3.6 1.3.8 1.3.9 1.4.0 1.4.1 1.4.2 1.5.0 1.5.1 1.5.2 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.6.1 1.6.2 1.6.3 1.7.0 1.7.1 1.7.2 1.8.0 1.8.1 2.0.0 All 36 releases
getresponse / layouts / widget / layout_2 / layout.php

layout.php in GetResponse Forms by Optin Cat 1.7.1, at layouts/widget/layout_2/layout.php

89 lines 3.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * @package Optin Cat
5 */
6
7 $layout = array(
8
9 'name' => __( 'Layout 2' ),
10
11 'editables' => array(
12
13 // Added to the fieldset "Form Background"
14 'form' => array(
15 '.fca_eoi_layout_2' => array(
16 'background-color' => array( __( 'Form Background Color' ), '#eeeeee' ),
17 ),
18 ),
19
20 // Added to the fieldset "Headline"
21 'headline' => array(
22 '.fca_eoi_layout_2 .fca_eoi_layout_2_headline_copy_wrapper' => array(
23 'font-weight' => array( '', 'bold' ),
24 'font-style' => array( '', 'italic' ),
25 'text-decoration' => array( '', 'underline' ),
26 'font-size' => array( __( 'Font Size' ), '20px' ),
27 ),
28 '.fca_eoi_layout_2 .ribbon' => array(
29 'color' => array( __( 'Font Color' ), '#FFF' ),
30 'background-color' => array( __( 'Background Color' ), '#3197e1' ),
31 ),
32 '.fca_eoi_layout_2 .ribbon .ribbon-content:before, .fca_eoi_layout_2 .ribbon .ribbon-content:after' => array(
33 'border-top-color' => array( __( 'Fold Background Color' ), '#256fa6' ),
34 ),
35 ),
36
37 // Added to the fieldset "Description"
38 'description' => array(
39 '.fca_eoi_layout_2 .fca_eoi_layout_2_description_copy_wrapper' => array(
40 'font-size' => array( __( 'Font Size' ), '14px' ),
41 'color' => array( __('Font Color') , '#000' ),
42 ),
43 ),
44
45 // Added to the fieldset "Name"
46 'name_field' => array(
47 '.fca_eoi_layout_2 .fca_eoi_layout_2_name_field_wrapper' => array(
48 'background-color' => array( __('Background Color') , '#FFF' ),
49 'border-color' => array( __('Border Color') , '#FFF' ),
50 ),
51 '.fca_eoi_layout_2 .fca_eoi_layout_2_name_field_wrapper input, .fca_eoi_layout_2 .fca_eoi_layout_2_name_field_wrapper .fa' => array(
52 'color' => array( __('Font Color') , '#000' ),
53 ),
54 ),
55
56 // Added to the fieldset "Email"
57 'email_field' => array(
58 '.fca_eoi_layout_2 .fca_eoi_layout_2_email_field_wrapper' => array(
59 'background-color' => array( __('Background Color') , '#FFF' ),
60 'border-color' => array( __('Border Color') , '#FFF' ),
61 ),
62 '.fca_eoi_layout_2 .fca_eoi_layout_2_email_field_wrapper input, .fca_eoi_layout_2 .fca_eoi_layout_2_email_field_wrapper .fa' => array(
63 'color' => array( __('Font Color') , '#000' ),
64 ),
65 ),
66
67 // Added to the fieldset "Button"
68 'button' => array(
69 '.fca_eoi_layout_2 .fca_eoi_layout_2_submit_button_wrapper input' => array(
70 'font-size' => array( __( 'Font Size' ), '16px' ),
71 'color' => array( __('Font Color') , '#FFF' ),
72 'background-color' => array( __('Background Color') , '#e84e34' ),
73 'border-bottom-color' => array( __('Bottom Border Color') , '#c13a24' ),
74 ),
75 ),
76 'privacy' => array(
77 '.fca_eoi_layout_2 .fca_eoi_layout_2_privacy_copy_wrapper' => array(
78 'font-size' => array( __( 'Font Size' ), '12px' ),
79 'color' => array( __('Font Color') , '#a1a1a1' ),
80 ),
81 ),
82 'fatcatapps' => array(
83 '.fca_eoi_layout_2 .fca_eoi_layout_2_fatcatapps_link_wrapper a, .fca_eoi_layout_2 .fca_eoi_layout_2_fatcatapps_link_wrapper a:hover' => array(
84 'color' => array( __( 'Font Color' ), '#3197e1'),
85 ),
86 ),
87 )
88 );
89