Changeset 3493287
- Timestamp:
- 03/28/2026 11:35:10 AM (18 hours ago)
- Location:
- authyo-otp-for-contact-form-7/trunk
- Files:
-
- 4 edited
-
assets/css/admin.css (modified) (3 diffs)
-
assets/js/admin.js (modified) (3 diffs)
-
authyo-otp-for-contact-form-7.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
authyo-otp-for-contact-form-7/trunk/assets/css/admin.css
r3481798 r3493287 63 63 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); 64 64 margin: 20px 0; 65 overflow: hidden;65 overflow: visible; 66 66 transition: box-shadow 0.2s ease; 67 67 } … … 583 583 border-radius: 4px; 584 584 background: #fff; 585 box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); 586 z-index: 1000; 587 margin-top: 2px; 585 box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); 586 z-index: 9999; 587 margin-top: 5px; 588 } 589 590 /* Custom Scrollbar for better UX */ 591 .authyo-country-dropdown::-webkit-scrollbar { 592 width: 6px; 593 } 594 595 .authyo-country-dropdown::-webkit-scrollbar-track { 596 background: #f1f1f1; 597 border-radius: 4px; 598 } 599 600 .authyo-country-dropdown::-webkit-scrollbar-thumb { 601 background: #c1c1c1; 602 border-radius: 4px; 603 } 604 605 .authyo-country-dropdown::-webkit-scrollbar-thumb:hover { 606 background: #a8a8a8; 588 607 } 589 608 590 609 .authyo-country-dropdown-item { 591 padding: 1 0px 15px;610 padding: 12px 16px; 592 611 cursor: pointer; 593 612 border-bottom: 1px solid #f0f0f1; 594 transition: background-color0.2s ease;613 transition: all 0.2s ease; 595 614 } 596 615 … … 604 623 605 624 .authyo-country-dropdown-item.authyo-country-selected { 606 background-color: #e5f5fa; 625 background-color: #f0f6fc; 626 border-left: 3px solid #2271b1; 607 627 } 608 628 -
authyo-otp-for-contact-form-7/trunk/assets/js/admin.js
r3481798 r3493287 800 800 // Dynamic placeholder for per-form field name based on channel selection 801 801 document.addEventListener("DOMContentLoaded", function () { 802 const ADMIN = window.AUTHYO_CF7_ADMIN || window.CF7_AUTHYO_ADMIN; 802 803 const formsTable = document.querySelector('#forms'); 803 804 (document.querySelectorAll('#forms table select[name*="[channel]"]') || []).forEach(function (sel) { … … 822 823 823 824 function loadCacheInfo() { 824 const ADMIN = window.AUTHYO_CF7_ADMIN || window.CF7_AUTHYO_ADMIN;825 825 if (!ADMIN || !ADMIN.rest || !ADMIN.rest.root) return; 826 826 … … 855 855 if (refreshBtn) { 856 856 refreshBtn.addEventListener('click', function () { 857 const ADMIN = window.AUTHYO_CF7_ADMIN || window.CF7_AUTHYO_ADMIN;858 857 if (!ADMIN || !ADMIN.rest || !ADMIN.rest.root) return; 859 858 -
authyo-otp-for-contact-form-7/trunk/authyo-otp-for-contact-form-7.php
r3487626 r3493287 4 4 * Plugin URI: https://wordpress.org/plugins/authyo-otp-for-contact-form-7/ 5 5 * Description: Adds OTP verification via Authyo (Email, SMS, WhatsApp, Voice Call) to Contact Form 7 submissions for secure form validation. 6 * Version: 1.0.2 16 * Version: 1.0.22 7 7 * Author: Authyo 8 8 * Author URI: https://authyo.io/ … … 18 18 exit; 19 19 20 define('AUTHYO_CF7_VERSION', '1.0.2 1');20 define('AUTHYO_CF7_VERSION', '1.0.22'); 21 21 define('AUTHYO_CF7_FILE', __FILE__); 22 22 define('AUTHYO_CF7_PATH', plugin_dir_path(__FILE__)); -
authyo-otp-for-contact-form-7/trunk/readme.txt
r3487626 r3493287 5 5 Tested up to: 6.9 6 6 Requires PHP: 7.4 7 Stable tag: 1.0.2 17 Stable tag: 1.0.22 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 88 88 89 89 == Changelog == 90 = 1.0.22 = 91 * UI/UX: Fixed country dropdown initialization and improved dropdown styling and behavior. 92 90 93 = 1.0.21 = 91 94 * Improvement: performance improvement
Note: See TracChangeset
for help on using the changeset viewer.