Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
Element
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
CI / CD Analytics
Repository Analytics
Value Stream Analytics
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
林焕东
Element
Commits
9553e1ed
Commit
9553e1ed
authored
Nov 01, 2017
by
Leopoldthecoder
Committed by
杨奕
Nov 02, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Chore: misc fixes and updates
parent
664b3fb4
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
17 additions
and
16 deletions
+17
-16
examples/components/footer-nav.vue
examples/components/footer-nav.vue
+2
-2
examples/components/side-nav.vue
examples/components/side-nav.vue
+1
-1
examples/docs/en-US/quickstart.md
examples/docs/en-US/quickstart.md
+1
-1
examples/docs/zh-CN/quickstart.md
examples/docs/zh-CN/quickstart.md
+1
-1
examples/docs/zh-CN/upload.md
examples/docs/zh-CN/upload.md
+1
-1
examples/nav.config.json
examples/nav.config.json
+8
-0
packages/theme-chalk/src/collapse.scss
packages/theme-chalk/src/collapse.scss
+0
-5
packages/theme-chalk/src/table.scss
packages/theme-chalk/src/table.scss
+0
-4
packages/upload/src/upload-list.vue
packages/upload/src/upload-list.vue
+1
-1
src/index.js
src/index.js
+2
-0
No files found.
examples/components/footer-nav.vue
View file @
9553e1ed
...
...
@@ -90,8 +90,8 @@
methods
:
{
setNav
()
{
let
nav
=
navConfig
[
this
.
lang
];
this
.
nav
=
[
nav
[
0
]].
concat
(
nav
[
2
].
children
);
nav
[
3
].
groups
.
map
(
group
=>
group
.
list
).
forEach
(
list
=>
{
this
.
nav
=
[
nav
[
0
]].
concat
(
nav
[
3
].
children
);
nav
[
4
].
groups
.
map
(
group
=>
group
.
list
).
forEach
(
list
=>
{
this
.
nav
=
this
.
nav
.
concat
(
list
);
});
},
...
...
examples/components/side-nav.vue
View file @
9553e1ed
...
...
@@ -22,7 +22,7 @@
margin-top
:
15px
;
}
>
ul
>
.nav-item
:nth-child
(
-n
+
3
)
>
a
{
>
ul
>
.nav-item
:nth-child
(
-n
+
4
)
>
a
{
margin-top
:
0
;
}
...
...
examples/docs/en-US/quickstart.md
View file @
9553e1ed
...
...
@@ -86,7 +86,7 @@ new Vue({
})
```
Full example (Component list reference
[
components.json
](
https://github.com/ElemeFE/element/blob/
carbon
/components.json
)
)
Full example (Component list reference
[
components.json
](
https://github.com/ElemeFE/element/blob/
master
/components.json
)
)
```
javascript
import
Vue
from
'
vue
'
...
...
examples/docs/zh-CN/quickstart.md
View file @
9553e1ed
...
...
@@ -86,7 +86,7 @@ new Vue({
})
```
完整组件列表和引入方式(完整组件列表以
[
components.json
](
https://github.com/ElemeFE/element/blob/
carbon
/components.json
)
为准)
完整组件列表和引入方式(完整组件列表以
[
components.json
](
https://github.com/ElemeFE/element/blob/
master
/components.json
)
为准)
```
javascript
import
Vue
from
'
vue
'
...
...
examples/docs/zh-CN/upload.md
View file @
9553e1ed
...
...
@@ -18,7 +18,7 @@
position: relative;
overflow: hidden;
&:hover, &:focus{
&:hover, &:focus
{
border-color: #409EFF;
}
}
...
...
examples/nav.config.json
View file @
9553e1ed
...
...
@@ -8,6 +8,10 @@
"name"
:
"Element React"
,
"href"
:
"https://eleme.github.io/element-react/"
},
{
"name"
:
"Element Angular"
,
"href"
:
"https://eleme.github.io/element-angular/"
},
{
"name"
:
"开发指南"
,
"children"
:
[
...
...
@@ -254,6 +258,10 @@
"name"
:
"Element React"
,
"href"
:
"https://eleme.github.io/element-react/"
},
{
"name"
:
"Element Angular"
,
"href"
:
"https://eleme.github.io/element-angular/"
},
{
"name"
:
"Development"
,
"children"
:
[
...
...
packages/theme-chalk/src/collapse.scss
View file @
9553e1ed
...
...
@@ -27,11 +27,6 @@
&
.focusing
:focus:not
(
:hover
)
{
color
:
$--color-primary
;
}
//&:focus{
// color: $--color-primary;
//}
}
@include
e
(
wrap
)
{
...
...
packages/theme-chalk/src/table.scss
View file @
9553e1ed
...
...
@@ -232,10 +232,6 @@
}
}
th
:first-child
.cell
,
td
:first-child
.cell
{
padding-left
:
0
;
}
// 拥有多级表头
@include
m
((
group
,
border
))
{
border
:
$--table-border
;
...
...
packages/upload/src/upload-list.vue
View file @
9553e1ed
...
...
@@ -13,7 +13,7 @@
:class=
"['el-upload-list__item', 'is-' + file.status, focusing ? 'focusing' : '']"
:key=
"index"
tabindex=
"0"
@
keydown.delete=
"$emit('remove', file)"
@
keydown.delete=
"
!disabled &&
$emit('remove', file)"
@
focus=
"focusing = true"
@
blur=
"focusing = false"
@
click=
"focusing = false"
...
...
src/index.js
View file @
9553e1ed
...
...
@@ -248,3 +248,5 @@ module.exports = {
Main
,
Footer
};
module
.
exports
.
default
=
module
.
exports
;
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