Plugin Directory

Changeset 2603337


Ignore:
Timestamp:
09/23/2021 02:55:53 AM (5 years ago)
Author:
vaptcha
Message:

修复一些问题

Location:
vaptcha-sms/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • vaptcha-sms/trunk/VaptchaSmsPlugin.php

    r2586935 r2603337  
    127127                width: 90px;
    128128                height: 38px;
    129                 border: 1px solid #8c8f94;
     129                border: 1px solid #dadada;
    130130                border-right: none;
    131                 margin-bottom: 16px;
     131                margin-bottom: 14px;
    132132            }
    133133            .add{
     
    152152            .dropdown-menu{
    153153            position: relative;
    154             border: 1px #8c8f94 solid;
     154            border: 1px #dadada solid;
    155155            background: white;
    156156            z-index: 1000;
     
    270270            <script>
    271271             jQuery('#user_login').parent().hide();
     272             jQuery('#user_pass').parent().hide();
    272273             jQuery('.user-pass-wrap').hide();
    273274            </script>
  • vaptcha-sms/trunk/css/back-end-styles.css

    r2511904 r2603337  
    256256    width: 90px;
    257257    height: 33px;
    258     border: 1px solid #8c8f94;
     258    border: 1px solid #dadada;
    259259    border-right: none;
    260260    border-radius: 5px 0 0 5px;
  • vaptcha-sms/trunk/js/sms.js

    r2586935 r2603337  
    256256    // 重新获取验证码短信时间间隔
    257257    var waitTime = 60;
    258 
    259258    function sendCountdown() {
    260259        if (waitTime > 0) {
     
    267266        }
    268267    }
    269 
    270268    function loginSendCountdown() {
    271269        if (waitTime > 0) {
     
    288286        $('#user_login').parent().show();
    289287        $('#user_login').parent().find('label').text('用户名、手机号或电子邮箱地址');
    290         $('.user-pass-wrap').show();
     288        $('#user_pass').parent().show();
     289        $('.user-pass-wrap').show(
     290        );
    291291        $('#user_pass').attr('disabled', false)
    292292
     
    302302        $('#phone-verify-fields').show();
    303303        $('#user_login').parent().hide();
     304        $('#user_pass').parent().hide();
    304305        $('.user-pass-wrap').hide();
    305 
    306306        $('#wp-submit').val('登录').css({"display": "none", "margin-right": "0"});
    307307        $('#select_phone').show();
Note: See TracChangeset for help on using the changeset viewer.