Changeset 2603337
- Timestamp:
- 09/23/2021 02:55:53 AM (5 years ago)
- Location:
- vaptcha-sms/trunk
- Files:
-
- 3 edited
-
VaptchaSmsPlugin.php (modified) (3 diffs)
-
css/back-end-styles.css (modified) (1 diff)
-
js/sms.js (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vaptcha-sms/trunk/VaptchaSmsPlugin.php
r2586935 r2603337 127 127 width: 90px; 128 128 height: 38px; 129 border: 1px solid # 8c8f94;129 border: 1px solid #dadada; 130 130 border-right: none; 131 margin-bottom: 1 6px;131 margin-bottom: 14px; 132 132 } 133 133 .add{ … … 152 152 .dropdown-menu{ 153 153 position: relative; 154 border: 1px # 8c8f94solid;154 border: 1px #dadada solid; 155 155 background: white; 156 156 z-index: 1000; … … 270 270 <script> 271 271 jQuery('#user_login').parent().hide(); 272 jQuery('#user_pass').parent().hide(); 272 273 jQuery('.user-pass-wrap').hide(); 273 274 </script> -
vaptcha-sms/trunk/css/back-end-styles.css
r2511904 r2603337 256 256 width: 90px; 257 257 height: 33px; 258 border: 1px solid # 8c8f94;258 border: 1px solid #dadada; 259 259 border-right: none; 260 260 border-radius: 5px 0 0 5px; -
vaptcha-sms/trunk/js/sms.js
r2586935 r2603337 256 256 // 重新获取验证码短信时间间隔 257 257 var waitTime = 60; 258 259 258 function sendCountdown() { 260 259 if (waitTime > 0) { … … 267 266 } 268 267 } 269 270 268 function loginSendCountdown() { 271 269 if (waitTime > 0) { … … 288 286 $('#user_login').parent().show(); 289 287 $('#user_login').parent().find('label').text('用户名、手机号或电子邮箱地址'); 290 $('.user-pass-wrap').show(); 288 $('#user_pass').parent().show(); 289 $('.user-pass-wrap').show( 290 ); 291 291 $('#user_pass').attr('disabled', false) 292 292 … … 302 302 $('#phone-verify-fields').show(); 303 303 $('#user_login').parent().hide(); 304 $('#user_pass').parent().hide(); 304 305 $('.user-pass-wrap').hide(); 305 306 306 $('#wp-submit').val('登录').css({"display": "none", "margin-right": "0"}); 307 307 $('#select_phone').show();
Note: See TracChangeset
for help on using the changeset viewer.