"vscode:/vscode.git/clone" did not exist on "d3957b018d82db06ba8f8e1ac4408511a75bd80b"
Commit 6cb57921 authored by Junling Bu's avatar Junling Bu
Browse files

perf[litemall-admin]: 登录样式优化

parent 7cc767b0
...@@ -5,20 +5,17 @@ ...@@ -5,20 +5,17 @@
<h3 class="title">管理员登录</h3> <h3 class="title">管理员登录</h3>
</div> </div>
<el-form-item prop="username"> <el-form-item prop="username">
<span class="svg-container svg-container_login"> <span class="svg-container">
<svg-icon icon-class="user" /> <svg-icon icon-class="user" />
</span> </span>
<el-input v-model="loginForm.username" name="username" type="text" auto-complete="on" placeholder="username" /> <el-input v-model="loginForm.username" name="username" type="text" tabindex="1" auto-complete="on" placeholder="管理员账户" />
</el-form-item> </el-form-item>
<el-form-item prop="password"> <el-form-item prop="password">
<span class="svg-container"> <span class="svg-container">
<svg-icon icon-class="password" /> <svg-icon icon-class="password" />
</span> </span>
<el-input :type="passwordType" v-model="loginForm.password" name="password" auto-complete="on" placeholder="password" @keyup.enter.native="handleLogin" /> <el-input v-model="loginForm.password" :type="passwordType" name="password" auto-complete="on" tabindex="2" show-password placeholder="管理员密码" @keyup.enter.native="handleLogin" />
<span class="show-pwd" @click="showPwd">
<svg-icon icon-class="eye" />
</span>
</el-form-item> </el-form-item>
<el-button :loading="loading" type="primary" style="width:100%;margin-bottom:30px;" @click.native.prevent="handleLogin">登录</el-button> <el-button :loading="loading" type="primary" style="width:100%;margin-bottom:30px;" @click.native.prevent="handleLogin">登录</el-button>
...@@ -85,13 +82,6 @@ export default { ...@@ -85,13 +82,6 @@ export default {
// window.removeEventListener('hashchange', this.afterQRScan) // window.removeEventListener('hashchange', this.afterQRScan)
}, },
methods: { methods: {
showPwd() {
if (this.passwordType === 'password') {
this.passwordType = ''
} else {
this.passwordType = 'password'
}
},
handleLogin() { handleLogin() {
this.$refs.loginForm.validate(valid => { this.$refs.loginForm.validate(valid => {
if (valid && !this.loading) { if (valid && !this.loading) {
...@@ -115,9 +105,19 @@ export default { ...@@ -115,9 +105,19 @@ export default {
} }
</script> </script>
<style rel="stylesheet/scss" lang="scss"> <style lang="scss">
$bg:#2d3a4b; /* 修复input 背景不协调 和光标变色 */
$light_gray:#eee; /* Detail see https://github.com/PanJiaChen/vue-element-admin/pull/927 */
$bg:#283443;
$light_gray:#fff;
$cursor: #fff;
@supports (-webkit-mask: none) and (not (cater-color: $cursor)) {
.login-container .el-input input {
color: $cursor;
}
}
/* reset element-ui css */ /* reset element-ui css */
.login-container { .login-container {
...@@ -125,6 +125,7 @@ $light_gray:#eee; ...@@ -125,6 +125,7 @@ $light_gray:#eee;
display: inline-block; display: inline-block;
height: 47px; height: 47px;
width: 85%; width: 85%;
input { input {
background: transparent; background: transparent;
border: 0px; border: 0px;
...@@ -133,13 +134,15 @@ $light_gray:#eee; ...@@ -133,13 +134,15 @@ $light_gray:#eee;
padding: 12px 5px 12px 15px; padding: 12px 5px 12px 15px;
color: $light_gray; color: $light_gray;
height: 47px; height: 47px;
caret-color: $cursor;
&:-webkit-autofill { &:-webkit-autofill {
box-shadow: 0 0 0px 1000px $bg inset !important; box-shadow: 0 0 0px 1000px $bg inset !important;
-webkit-box-shadow: 0 0 0px 1000px $bg inset !important; -webkit-text-fill-color: $cursor !important;
-webkit-text-fill-color: #fff !important;
} }
} }
} }
.el-form-item { .el-form-item {
border: 1px solid rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.1);
background: rgba(0, 0, 0, 0.1); background: rgba(0, 0, 0, 0.1);
...@@ -149,63 +152,57 @@ $light_gray:#eee; ...@@ -149,63 +152,57 @@ $light_gray:#eee;
} }
</style> </style>
<style rel="stylesheet/scss" lang="scss" scoped> <style lang="scss" scoped>
$bg:#2d3a4b; $bg:#2d3a4b;
$dark_gray:#889aa4; $dark_gray:#889aa4;
$light_gray:#eee; $light_gray:#eee;
.login-container { .login-container {
position: fixed; min-height: 100%;
height: 100%;
width: 100%; width: 100%;
background-color: $bg; background-color: $bg;
overflow: hidden;
.login-form { .login-form {
position: absolute; position: relative;
left: 0;
right: 0;
width: 520px; width: 520px;
padding: 35px 35px 15px 35px; max-width: 100%;
margin: 120px auto; padding: 160px 35px 0;
margin: 0 auto;
overflow: hidden;
} }
.tips { .tips {
font-size: 14px; font-size: 14px;
color: #fff; color: #fff;
margin-bottom: 10px; margin-bottom: 10px;
span { span {
&:first-of-type { &:first-of-type {
margin-right: 16px; margin-right: 16px;
} }
} }
} }
.svg-container { .svg-container {
padding: 6px 5px 6px 15px; padding: 6px 5px 6px 15px;
color: $dark_gray; color: $dark_gray;
vertical-align: middle; vertical-align: middle;
width: 30px; width: 30px;
display: inline-block; display: inline-block;
&_login {
font-size: 20px;
}
} }
.title-container { .title-container {
position: relative; position: relative;
.title { .title {
font-size: 26px; font-size: 26px;
font-weight: 400;
color: $light_gray; color: $light_gray;
margin: 0px auto 40px auto; margin: 0px auto 40px auto;
text-align: center; text-align: center;
font-weight: bold; font-weight: bold;
} }
} }
.show-pwd {
position: absolute;
right: 10px;
top: 7px;
font-size: 16px;
color: $dark_gray;
cursor: pointer;
user-select: none;
}
} }
</style> </style>
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment