Changeset 2967377
- Timestamp:
- 09/15/2023 07:05:23 AM (3 years ago)
- Location:
- atomchat/trunk
- Files:
-
- 5 edited
-
README.txt (modified) (2 diffs)
-
atomchat.php (modified) (1 diff)
-
css/installer.css (modified) (1 diff)
-
installer.php (modified) (1 diff)
-
js/installer.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
atomchat/trunk/README.txt
r2954671 r2967377 5 5 Requires PHP: 5.6 6 6 Tested up to: 6.2 7 Stable tag: 1.1. 37 Stable tag: 1.1.4 8 8 License: GNU General Public License v2.0 or later 9 9 … … 180 180 = 1.1.3 = 181 181 * Added new layout for installation process 182 183 = 1.1.4 = 184 * Added skip for now to the installation process -
atomchat/trunk/atomchat.php
r2954671 r2967377 4 4 * Plugin Name: AtomChat 5 5 * Description: Voice, video & text chat for your WordPress site 6 * Version: 1.1. 36 * Version: 1.1.4 7 7 * Author: AtomChat 8 8 * Author URI: https://www.atomchat.com/ -
atomchat/trunk/css/installer.css
r2954671 r2967377 129 129 display: block; 130 130 } 131 132 .delete-icon{ 133 position: relative; 134 display: inline-block; 135 cursor: pointer; 136 float: right; 137 } 138 139 .delete-icon .icon{ 140 width: 24px; 141 height: 24px; 142 background-color: #fff; 143 color: #000000; 144 border-radius: 50%; 145 text-align: center; 146 line-height: 24px; 147 font-weight: bold; 148 } 149 150 .delete-icon .hover-text{ 151 position: absolute; 152 top: 20px; 153 left: 36%; 154 transform: translateX(-50%); 155 opacity: 0; 156 background-color: rgba(0, 0, 0, 0.8); 157 color: white; 158 padding: 4x 8px; 159 border-radius: 4px; 160 font-size: 12px; 161 transition: opacity 0,2s ease-in-out; 162 width: 150px; 163 text-align: center; 164 } 165 166 .delete-icon:hover .hover-text{ 167 opacity:1; 168 } -
atomchat/trunk/installer.php
r2954671 r2967377 35 35 <div class="module form-module" id="license-form"> 36 36 <div class="atomchat_form"> 37 <!--Skip for now--> 38 <div class="delete-icon" onclick="skipFornow()"> 39 <a style="font-size: 16px;text-decoration: none;color: #000;font-weight: 600;">X</a> 40 <p class="hover-text">Add later from AtomChat</p> 41 </div> 42 <!--End Skip for now--> 37 43 38 44 <!--AtomChat new code--> -
atomchat/trunk/js/installer.js
r2954671 r2967377 89 89 window.document.cookie = key + "=" + value + "; expires=" + date.toGMTString() + "; path=/"; 90 90 } 91 92 /** 93 * Close the installer modal (skip for now) 94 **/ 95 function skipFornow() 96 { 97 jqcc("#license-form").fadeOut(); 98 }
Note: See TracChangeset
for help on using the changeset viewer.