refine code

This commit is contained in:
Pan 2018-05-02 18:00:01 +08:00 committed by 花裤衩
parent 73ff664560
commit 3c75eb6dde
5 changed files with 89 additions and 81 deletions

View File

@ -2,8 +2,9 @@
module.exports = { module.exports = {
"plugins": { "plugins": {
// to edit target browsers: use "browserslist" field in package.json
"postcss-import": {}, "postcss-import": {},
"postcss-url": {},
// to edit target browsers: use "browserslist" field in package.json
"autoprefixer": {} "autoprefixer": {}
} }
} }

View File

@ -6,6 +6,6 @@
<script> <script>
export default { export default {
name: 'app' name: 'App'
} }
</script> </script>

View File

@ -1,6 +1,6 @@
<template> <template>
<div> <div>
<svg t="1492500959545" @click="toggleClick" class="svg-icon hamburger" :class="{'is-active':isActive}" style="" viewBox="0 0 1024 1024" <svg t="1492500959545" @click="toggleClick" class="hamburger" :class="{'is-active':isActive}" style="" viewBox="0 0 1024 1024"
version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1691" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"> version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1691" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64">
<path d="M966.8023 568.849776 57.196677 568.849776c-31.397081 0-56.850799-25.452695-56.850799-56.850799l0 0c0-31.397081 25.452695-56.849776 56.850799-56.849776l909.605623 0c31.397081 0 56.849776 25.452695 56.849776 56.849776l0 0C1023.653099 543.397081 998.200404 568.849776 966.8023 568.849776z" <path d="M966.8023 568.849776 57.196677 568.849776c-31.397081 0-56.850799-25.452695-56.850799-56.850799l0 0c0-31.397081 25.452695-56.849776 56.850799-56.849776l909.605623 0c31.397081 0 56.849776 25.452695 56.849776 56.849776l0 0C1023.653099 543.397081 998.200404 568.849776 966.8023 568.849776z"
p-id="1692"></path> p-id="1692"></path>
@ -30,16 +30,15 @@ export default {
<style scoped> <style scoped>
.hamburger { .hamburger {
display: inline-block; display: inline-block;
cursor: pointer; cursor: pointer;
width: 20px; width: 20px;
height: 20px; height: 20px;
transform: rotate(0deg); transform: rotate(90deg);
transition: .38s; transition: .38s;
transform-origin: 50% 50%; transform-origin: 50% 50%;
} }
.hamburger.is-active { .hamburger.is-active {
transform: rotate(90deg); transform: rotate(0deg);
} }
</style> </style>

View File

@ -4,7 +4,7 @@ import 'normalize.css/normalize.css'// A modern alternative to CSS resets
import ElementUI from 'element-ui' import ElementUI from 'element-ui'
import 'element-ui/lib/theme-chalk/index.css' import 'element-ui/lib/theme-chalk/index.css'
import locale from 'element-ui/lib/locale/lang/en' import locale from 'element-ui/lib/locale/lang/en' // lang i18n
import '@/styles/index.scss' // global css import '@/styles/index.scss' // global css

View File

@ -1,7 +1,6 @@
<template> <template>
<div class="login-container"> <div class="login-container">
<el-form autoComplete="on" :model="loginForm" :rules="loginRules" ref="loginForm" label-position="left" label-width="0px" <el-form class="login-form" autoComplete="on" :model="loginForm" :rules="loginRules" ref="loginForm" label-position="left">
class="card-box login-form">
<h3 class="title">vue-element-admin</h3> <h3 class="title">vue-element-admin</h3>
<el-form-item prop="username"> <el-form-item prop="username">
<span class="svg-container svg-container_login"> <span class="svg-container svg-container_login">
@ -92,19 +91,15 @@ export default {
</script> </script>
<style rel="stylesheet/scss" lang="scss"> <style rel="stylesheet/scss" lang="scss">
$bg:#2d3a4b; $bg:#2d3a4b;
$dark_gray:#889aa4; $light_gray:#eee;
$light_gray:#eee;
.login-container { /* reset element-ui css */
position: fixed; .login-container {
height: 100%; .el-input {
width:100%; display: inline-block;
background-color: $bg; height: 47px;
input:-webkit-autofill { width: 85%;
-webkit-box-shadow: 0 0 0px 1000px #293444 inset !important;
-webkit-text-fill-color: #fff !important;
}
input { input {
background: transparent; background: transparent;
border: 0px; border: 0px;
@ -113,62 +108,75 @@ export default {
padding: 12px 5px 12px 15px; padding: 12px 5px 12px 15px;
color: $light_gray; color: $light_gray;
height: 47px; height: 47px;
} &:-webkit-autofill {
.el-input { -webkit-box-shadow: 0 0 0px 1000px $bg inset !important;
display: inline-block; -webkit-text-fill-color: #fff !important;
height: 47px;
width: 85%;
}
.tips {
font-size: 14px;
color: #fff;
margin-bottom: 10px;
}
.svg-container {
padding: 6px 5px 6px 15px;
color: $dark_gray;
vertical-align: middle;
width: 30px;
display: inline-block;
&_login {
font-size: 20px;
} }
} }
.title { }
font-size: 26px; .el-form-item {
font-weight: 400; border: 1px solid rgba(255, 255, 255, 0.1);
color: $light_gray; background: rgba(0, 0, 0, 0.1);
margin: 0px auto 40px auto; border-radius: 5px;
text-align: center; color: #454545;
font-weight: bold; }
} }
.login-form {
position: absolute; </style>
left: 0;
right: 0; <style rel="stylesheet/scss" lang="scss" scoped>
width: 400px; $bg:#2d3a4b;
padding: 35px 35px 15px 35px; $dark_gray:#889aa4;
margin: 120px auto; $light_gray:#eee;
} .login-container {
.el-form-item { position: fixed;
border: 1px solid rgba(255, 255, 255, 0.1); height: 100%;
background: rgba(0, 0, 0, 0.1); width: 100%;
border-radius: 5px; background-color: $bg;
color: #454545; .login-form {
} position: absolute;
.show-pwd { left: 0;
position: absolute; right: 0;
right: 10px; width: 520px;
top: 7px; padding: 35px 35px 15px 35px;
font-size: 16px; margin: 120px auto;
color: $dark_gray; }
cursor: pointer; .tips {
user-select:none; font-size: 14px;
} color: #fff;
.thirdparty-button{ margin-bottom: 10px;
position: absolute; span {
right: 35px; &:first-of-type {
bottom: 28px; margin-right: 16px;
}
} }
} }
.svg-container {
padding: 6px 5px 6px 15px;
color: $dark_gray;
vertical-align: middle;
width: 30px;
display: inline-block;
&_login {
font-size: 20px;
}
}
.title {
font-size: 26px;
font-weight: 400;
color: $light_gray;
margin: 0px auto 40px auto;
text-align: center;
font-weight: bold;
}
.show-pwd {
position: absolute;
right: 10px;
top: 7px;
font-size: 16px;
color: $dark_gray;
cursor: pointer;
user-select: none;
}
}
</style> </style>