Authored by htoooth

调整css

... ... @@ -67,7 +67,7 @@
<li>
<div>
<input id="reset-pwd-btn" class="reset-pwd-btn disable" type="submit" value="下一步">
<input id="reset-pwd-btn" class="reset-pwd-btn disable" type="submit" value="下一步" disabled>
</div>
</li>
... ...
... ... @@ -42,7 +42,7 @@
</li>
<div class="success-text">
<div class="title">恭喜您设置完成,请妥善保存您的密码!</div>
<div class="small-title">恭喜您设置完成,请妥善保存您的密码!</div>
<div class="time">页面将在&nbsp;<span id="count-down" class="blue">5</span>&nbsp;秒后将跳转至首页</div>
</div>
</ul>
... ...
... ... @@ -37,8 +37,10 @@ $('input').placeholder();
ep.tail('pwd', 'repwd', function(pwd, repwd) {
if (pwd && repwd) {
$next.removeClass('disable');
$next.prop('disabled', false);
} else {
$next.addClass('disable');
$next.prop('disabled', true);
}
});
... ...
... ... @@ -225,6 +225,10 @@
font-size: 18px;
}
.small-title {
font-size: 16px;
}
.time {
font-size: 14px;
color: $inactive-color;
... ...
... ... @@ -24,7 +24,7 @@ $btn-width: 180px;
.bind-confirm-page {
@mixin passport-page;
width: 530px !important;
width: 550px !important;
.quick-link {
margin: 0 150px;
}
... ... @@ -32,7 +32,7 @@ $btn-width: 180px;
.relate-confirm-page {
@mixin passport-page;
width: 530px !important;
width: 550px !important;
.quick-btn {
margin: 0 70px;
}
... ... @@ -40,12 +40,12 @@ $btn-width: 180px;
.bind-success-page {
@mixin passport-page;
width: 650px !important;
width: 680px !important;
}
.relate-success-page {
@mixin passport-page;
width: 380px !important;
width: 400px !important;
}
li {
... ... @@ -179,6 +179,9 @@ $mobile-phone: calc($item-width - $mobile-margin - $mobile-region - $mobile-code
width: $mobile-phone;
height: calc($item-height - 2px);
border: none !important;
line-height: calc($item-height - 2px);
font-size: 16px;
padding: 0;
}
}
... ...