Authored by htoooth

修改样式

... ... @@ -148,8 +148,10 @@ function validatePhoneNum() {
return validate().then(function() {
hideTip($phoneNumInput);
ep.emit('phone-num', true);
return true;
}).fail(function() {
ep.emit('phone-num', false);
return false;
});
}
... ... @@ -215,8 +217,10 @@ function validateImgCaptcha() {
return validate().then(function() {
ep.emit('captcha-img', true);
return true;
}).fail(function() {
ep.emit('captcha-img', false);
return false;
});
}
... ...
... ... @@ -81,7 +81,7 @@
cursor: pointer;
&.disable {
background-color: $inactive-color;
background-color: $theme-color;
}
}
... ... @@ -146,7 +146,7 @@
line-height: @height;
&.disable {
background-color: $inactive-color;
background-color: $theme-color;
}
}
... ... @@ -166,7 +166,7 @@
margin: 0 calc(($item-width - @width) / 2);
&.disable {
background-color: $inactive-color;
background-color: $theme-color;
}
}
... ... @@ -195,7 +195,7 @@
cursor: pointer;
&.disable {
background-color: $inactive-color;
background-color: $theme-color;
}
}
}
... ...