Changeset 2476975
- Timestamp:
- 02/18/2021 11:03:11 AM (5 years ago)
- Location:
- easy-email-checkout
- Files:
-
- 13 added
- 5 edited
-
assets/banner-1544x500.png (modified) (previous)
-
assets/banner-772x250.png (modified) (previous)
-
tags/1.0.1 (added)
-
tags/1.0.1/README.txt (added)
-
tags/1.0.1/assets (added)
-
tags/1.0.1/assets/css (added)
-
tags/1.0.1/assets/css/style-front.css (added)
-
tags/1.0.1/assets/css/style.css (added)
-
tags/1.0.1/assets/css/tags.css (added)
-
tags/1.0.1/assets/js (added)
-
tags/1.0.1/assets/js/easyemailcheckout-front.js (added)
-
tags/1.0.1/assets/js/easyemailcheckout.js (added)
-
tags/1.0.1/assets/js/tags.js (added)
-
tags/1.0.1/easy-email-checkout.php (added)
-
tags/1.0.1/uninstall.php (added)
-
trunk/README.txt (modified) (1 diff)
-
trunk/assets/css/style-front.css (modified) (2 diffs)
-
trunk/easy-email-checkout.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
easy-email-checkout/trunk/README.txt
r2476444 r2476975 22 22 23 23 == Changelog == 24 = 1.0.1 = 25 * CSS Optimization 26 * Transition Effects 27 * Email Provider Highlight 28 24 29 = 1.0.0 = 25 30 * Intial version. -
easy-email-checkout/trunk/assets/css/style-front.css
r2476444 r2476975 5 5 max-height: 0px; 6 6 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; 8 21 } 9 22 #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); 11 30 } 12 31 .easyemailcheckout-domains_option { 13 32 padding: 5px 10px; 14 33 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; 16 40 } 17 41 .easyemailcheckout-domains_option:hover { … … 19 43 } 20 44 .easyemailcheckout-domains_option__email { 21 display: inline; 45 display: inline; 46 font-weight: normal; 22 47 } 48 #billing_email_field { 49 position: relative; 50 } -
easy-email-checkout/trunk/easy-email-checkout.php
r2476444 r2476975 5 5 Plugin URI: https://frontseries.gr/ 6 6 Description: Make the email field in checkout process easier for your customers by suggest autocomplete email services. 7 Version: 1.0. 07 Version: 1.0.1 8 8 Author: Front Series 9 9 Author URI: https://frontseries.gr/contact/ … … 18 18 19 19 // Defines 20 define( 'EASY_EMAIL_CHECKOUT__VERSION', '1.0. 0' );20 define( 'EASY_EMAIL_CHECKOUT__VERSION', '1.0.1' ); 21 21 define( 'EASY_EMAIL_CHECKOUT__BASENAME', plugin_basename(dirname(__FILE__)) ); 22 22 define( 'EASY_EMAIL_CHECKOUT__DIR', plugin_dir_path(__FILE__) );
Note: See TracChangeset
for help on using the changeset viewer.