Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
W
web-monitor
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
web-monitor
Commits
3c75eb6d
Commit
3c75eb6d
authored
May 02, 2018
by
Pan
Committed by
花裤衩
May 02, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refine code
parent
73ff6645
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
88 additions
and
80 deletions
+88
-80
.postcssrc.js
.postcssrc.js
+2
-1
App.vue
src/App.vue
+1
-1
index.vue
src/components/Hamburger/index.vue
+9
-10
main.js
src/main.js
+1
-1
index.vue
src/views/login/index.vue
+75
-67
No files found.
.postcssrc.js
View file @
3c75eb6d
...
...
@@ -2,8 +2,9 @@
module
.
exports
=
{
"plugins"
:
{
// to edit target browsers: use "browserslist" field in package.json
"postcss-import"
:
{},
"postcss-url"
:
{},
// to edit target browsers: use "browserslist" field in package.json
"autoprefixer"
:
{}
}
}
src/App.vue
View file @
3c75eb6d
...
...
@@ -6,6 +6,6 @@
<
script
>
export
default
{
name
:
'
a
pp'
name
:
'
A
pp'
}
</
script
>
src/components/Hamburger/index.vue
View file @
3c75eb6d
<
template
>
<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">
<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>
...
...
@@ -30,16 +30,15 @@ export default {
<
style
scoped
>
.hamburger
{
display
:
inline-block
;
cursor
:
pointer
;
width
:
20px
;
height
:
20px
;
transform
:
rotate
(
0deg
);
transition
:
.38s
;
transform-origin
:
50%
50%
;
display
:
inline-block
;
cursor
:
pointer
;
width
:
20px
;
height
:
20px
;
transform
:
rotate
(
9
0deg
);
transition
:
.38s
;
transform-origin
:
50%
50%
;
}
.hamburger.is-active
{
transform
:
rotate
(
9
0deg
);
transform
:
rotate
(
0deg
);
}
</
style
>
src/main.js
View file @
3c75eb6d
...
...
@@ -4,7 +4,7 @@ import 'normalize.css/normalize.css'// A modern alternative to CSS resets
import
ElementUI
from
'element-ui'
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
...
...
src/views/login/index.vue
View file @
3c75eb6d
<
template
>
<div
class=
"login-container"
>
<el-form
autoComplete=
"on"
:model=
"loginForm"
:rules=
"loginRules"
ref=
"loginForm"
label-position=
"left"
label-width=
"0px"
class=
"card-box login-form"
>
<el-form
class=
"login-form"
autoComplete=
"on"
:model=
"loginForm"
:rules=
"loginRules"
ref=
"loginForm"
label-position=
"left"
>
<h3
class=
"title"
>
vue-element-admin
</h3>
<el-form-item
prop=
"username"
>
<span
class=
"svg-container svg-container_login"
>
...
...
@@ -92,19 +91,15 @@ export default {
</
script
>
<
style
rel=
"stylesheet/scss"
lang=
"scss"
>
$bg
:
#2d3a4b
;
$dark_gray
:
#889aa4
;
$light_gray
:
#eee
;
$bg
:
#2d3a4b
;
$light_gray
:
#eee
;
.login-container
{
position
:
fixed
;
height
:
100%
;
width
:
100%
;
background-color
:
$bg
;
input
:
-
webkit-autofill
{
-webkit-box-shadow
:
0
0
0px
1000px
#293444
inset
!
important
;
-webkit-text-fill-color
:
#fff
!
important
;
}
/* reset element-ui css */
.login-container
{
.el-input
{
display
:
inline-block
;
height
:
47px
;
width
:
85%
;
input
{
background
:
transparent
;
border
:
0px
;
...
...
@@ -113,62 +108,75 @@ export default {
padding
:
12px
5px
12px
15px
;
color
:
$light_gray
;
height
:
47px
;
}
.el-input
{
display
:
inline-block
;
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
;
&
:
-
webkit-autofill
{
-webkit-box-shadow
:
0
0
0px
1000px
$bg
inset
!
important
;
-webkit-text-fill-color
:
#fff
!
important
;
}
}
.title
{
font-size
:
26px
;
font-weight
:
400
;
color
:
$light_gray
;
margin
:
0px
auto
40px
auto
;
text-align
:
center
;
font-weight
:
bold
;
}
.login-form
{
position
:
absolute
;
left
:
0
;
right
:
0
;
width
:
400px
;
padding
:
35px
35px
15px
35px
;
margin
:
120px
auto
;
}
.el-form-item
{
border
:
1px
solid
rgba
(
255
,
255
,
255
,
0
.1
);
background
:
rgba
(
0
,
0
,
0
,
0
.1
);
border-radius
:
5px
;
color
:
#454545
;
}
.show-pwd
{
position
:
absolute
;
right
:
10px
;
top
:
7px
;
font-size
:
16px
;
color
:
$dark_gray
;
cursor
:
pointer
;
user-select
:none
;
}
.el-form-item
{
border
:
1px
solid
rgba
(
255
,
255
,
255
,
0
.1
);
background
:
rgba
(
0
,
0
,
0
,
0
.1
);
border-radius
:
5px
;
color
:
#454545
;
}
}
</
style
>
<
style
rel=
"stylesheet/scss"
lang=
"scss"
scoped
>
$bg
:
#2d3a4b
;
$dark_gray
:
#889aa4
;
$light_gray
:
#eee
;
.login-container
{
position
:
fixed
;
height
:
100%
;
width
:
100%
;
background-color
:
$bg
;
.login-form
{
position
:
absolute
;
left
:
0
;
right
:
0
;
width
:
520px
;
padding
:
35px
35px
15px
35px
;
margin
:
120px
auto
;
}
.tips
{
font-size
:
14px
;
color
:
#fff
;
margin-bottom
:
10px
;
span
{
&
:first-of-type
{
margin-right
:
16px
;
}
}
.thirdparty-button
{
position
:
absolute
;
right
:
35px
;
bottom
:
28px
;
}
.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
>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment