Plugin Directory

Changeset 2476975


Ignore:
Timestamp:
02/18/2021 11:03:11 AM (5 years ago)
Author:
frontseries
Message:

Version 1.0.1

Location:
easy-email-checkout
Files:
13 added
5 edited

Legend:

Unmodified
Added
Removed
  • easy-email-checkout/trunk/README.txt

    r2476444 r2476975  
    2222
    2323== Changelog ==
     24= 1.0.1 =
     25* CSS Optimization
     26* Transition Effects
     27* Email Provider Highlight
     28
    2429= 1.0.0 =
    2530* Intial version.
  • easy-email-checkout/trunk/assets/css/style-front.css

    r2476444 r2476975  
    55    max-height: 0px;
    66    overflow: hidden;
    7     transition: 0.2s all ease-in-out;
     7    opacity: 0;
     8    transform: translateY(-5px);
     9    -webkit-transform: translateY(-5px);
     10    -moz-transform: translateY(-5px);
     11    -ms-transform: translateY(-5px);
     12    -o-transform: translateY(-5px);
     13    -webkit-transition: 0.2s all ease-in-out;
     14    -moz-transition: 0.2s all ease-in-out;
     15    -ms-transition: 0.2s all ease-in-out;
     16    -o-transition: 0.2s all ease-in-out;
     17    transition: 0.2s all ease-in-out;
     18    width:100%;
     19    position:absolute;
     20    z-index: 9;
    821}
    922#easymailcheckout-domains.open {
    10   max-height: inherit;
     23    max-height: inherit;
     24    opacity: 1;
     25    transform: translateY(0px);
     26    -webkit-transform: translateY(0px);
     27    -moz-transform: translateY(0px);
     28    -ms-transform: translateY(0px);
     29    -o-transform: translateY(0px);
    1130}
    1231.easyemailcheckout-domains_option {
    1332    padding: 5px 10px;
    1433    cursor: pointer;
    15     transition: 0.2s all ease-in-out;
     34    -webkit-transition: 0.2s all ease-in-out;
     35    -moz-transition: 0.2s all ease-in-out;
     36    -ms-transition: 0.2s all ease-in-out;
     37    -o-transition: 0.2s all ease-in-out;
     38    transition: 0.2s all ease-in-out;
     39    font-weight: bold;
    1640}
    1741.easyemailcheckout-domains_option:hover {
     
    1943}
    2044.easyemailcheckout-domains_option__email {
    21   display: inline;
     45    display: inline;
     46    font-weight: normal;
    2247}
     48#billing_email_field {
     49    position: relative;
     50}
  • easy-email-checkout/trunk/easy-email-checkout.php

    r2476444 r2476975  
    55Plugin URI: https://frontseries.gr/
    66Description: Make the email field in checkout process easier for your customers by suggest autocomplete email services.
    7 Version: 1.0.0
     7Version: 1.0.1
    88Author: Front Series
    99Author URI: https://frontseries.gr/contact/
     
    1818
    1919// Defines
    20 define( 'EASY_EMAIL_CHECKOUT__VERSION', '1.0.0' );
     20define( 'EASY_EMAIL_CHECKOUT__VERSION', '1.0.1' );
    2121define( 'EASY_EMAIL_CHECKOUT__BASENAME', plugin_basename(dirname(__FILE__)) );
    2222define( 'EASY_EMAIL_CHECKOUT__DIR', plugin_dir_path(__FILE__) );
Note: See TracChangeset for help on using the changeset viewer.