| 1 |
<?php |
| 2 |
|
| 3 |
/** |
| 4 |
* @package Optin Cat |
| 5 |
*/ |
| 6 |
|
| 7 |
$layout = array( |
| 8 |
|
| 9 |
'name' => __( 'Layout 1' ), |
| 10 |
|
| 11 |
'editables' => array( |
| 12 |
|
| 13 |
// Added to the fieldset "Form Background" |
| 14 |
'form' => array( |
| 15 |
'.fca_eoi_layout_1' => array( |
| 16 |
'background-color' => array( __( 'Form Background Color' ), '' ), |
| 17 |
'border-color' => array( __( 'Border Color' ), '#D2D2D2' ), |
| 18 |
), |
| 19 |
), |
| 20 |
|
| 21 |
// Added to the fieldset "Headline" |
| 22 |
'headline' => array( |
| 23 |
'.fca_eoi_layout_1 .fca_eoi_layout_1_headline_copy_wrapper' => array( |
| 24 |
'font-size' => array( __('Font Size'), '25px'), |
| 25 |
'color' => array( __('Font Color'), '#2B6B98'), |
| 26 |
), |
| 27 |
), |
| 28 |
'description' => array( |
| 29 |
'.fca_eoi_layout_1 .fca_eoi_layout_1_description_copy_wrapper p' => array( |
| 30 |
'font-size' => array( __('Font Size'), '14px'), |
| 31 |
'color' => array( __('Font Color'), '#6D6D6D'), |
| 32 |
), |
| 33 |
), |
| 34 |
'name_field' => array( |
| 35 |
'.fca_eoi_layout_1 .fca_eoi_layout_1_name_field_wrapper, .fca_eoi_layout_1 .fca_eoi_layout_1_name_field_wrapper input' => array( |
| 36 |
'color' => array( __( 'Font Color' ), '#7f7f7f' ), |
| 37 |
'background-color' => array( __( 'Background Color' ), '#F5F5F5' ), |
| 38 |
), |
| 39 |
'.fca_eoi_layout_1 .fca_eoi_layout_1_name_field_wrapper' => array( |
| 40 |
'border-color' => array( __('Border Color'), '#CCC'), |
| 41 |
), |
| 42 |
), |
| 43 |
'email_field' => array( |
| 44 |
'.fca_eoi_layout_1 .fca_eoi_layout_1_email_field_wrapper, .fca_eoi_layout_1 .fca_eoi_layout_1_email_field_wrapper input' => array( |
| 45 |
'color' => array( __( 'Font Color' ), '#7f7f7f' ), |
| 46 |
'background-color' => array( __( 'Background Color' ), '#F5F5F5'), |
| 47 |
), |
| 48 |
'.fca_eoi_layout_1 .fca_eoi_layout_1_email_field_wrapper' => array( |
| 49 |
'border-color' => array( __( 'Border Color' ), '#CCC'), |
| 50 |
), |
| 51 |
), |
| 52 |
'button' => array( |
| 53 |
'.fca_eoi_layout_1 .fca_eoi_layout_1_submit_button_wrapper input' => array( |
| 54 |
'font-size' => array( __('Font Size'), '14px'), |
| 55 |
'color' => array( __( 'Font Color' ), '#963' ), |
| 56 |
'background-color' => array( __( 'Button Color' ), '#f5d03b' ), |
| 57 |
'border-color' => array( __( 'Border Color' ), '#EEC22B' ), |
| 58 |
), |
| 59 |
'.fca_eoi_layout_1 .fca_eoi_layout_1_submit_button_wrapper input:hover' => array( |
| 60 |
'background-color' => array( __( 'Hover Background Color' ), '#FC3' ), |
| 61 |
), |
| 62 |
), |
| 63 |
'privacy' => array( |
| 64 |
'.fca_eoi_layout_1 .fca_eoi_layout_1_privacy_copy_wrapper' => array( |
| 65 |
'font-size' => array( __('Font Size'), '14px'), |
| 66 |
'color' => array( __('Font Color'), '#8F8F8F'), |
| 67 |
), |
| 68 |
), |
| 69 |
'fatcatapps' => array( |
| 70 |
'.fca_eoi_layout_1 .fca_eoi_layout_1_fatcatapps_link_wrapper a, .fca_eoi_layout_1 .fca_eoi_layout_1_fatcatapps_link_wrapper a:hover' => array( |
| 71 |
'color' => array( __('Font Color'), '#BAA34E'), |
| 72 |
), |
| 73 |
), |
| 74 |
), |
| 75 |
|
| 76 |
'autocolors' => array( |
| 77 |
array( |
| 78 |
'source' => '[.fca_eoi_layout_1 .fca_eoi_layout_1_submit_button_wrapper input][background-color]', |
| 79 |
'destination' => '[.fca_eoi_layout_1 .fca_eoi_layout_1_submit_button_wrapper input][border-color]', |
| 80 |
'operations' => array( |
| 81 |
'spin' => '-1.6029776674937963', |
| 82 |
'desaturate' => '5.13842370797476', |
| 83 |
'darken' => '4.5098039215686225', |
| 84 |
), |
| 85 |
), |
| 86 |
array( |
| 87 |
'source' => '[.fca_eoi_layout_1 .fca_eoi_layout_1_submit_button_wrapper input][background-color]', |
| 88 |
'source' => '[.fca_eoi_layout_1 .fca_eoi_layout_1_submit_button_wrapper input][background-color]', |
| 89 |
'destination' => '[.fca_eoi_layout_1 .fca_eoi_layout_1_submit_button_wrapper input:hover][background-color]', |
| 90 |
'operations' => array( |
| 91 |
'spin' => '-0.010217486498312667', |
| 92 |
'saturate' => '-0.08718050326927962', |
| 93 |
'lighten' => '-11.568627450980395', |
| 94 |
), |
| 95 |
), |
| 96 |
), |
| 97 |
|
| 98 |
'texts' => array( |
| 99 |
'headline_copy' => 'Free Email Updates', |
| 100 |
'description_copy' => 'Get the latest content first.', |
| 101 |
'name_placeholder' => 'Name', |
| 102 |
'email_placeholder' => 'Email', |
| 103 |
'button_copy' => 'Join Now', |
| 104 |
'privacy_copy' => "100% Privacy. We don't spam.", |
| 105 |
), |
| 106 |
); |
| 107 |
|