diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4caaad0a1..6dfe6ccc5 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,8 +5,8 @@
*2016-XX-XX*
- 修复 Select 多选时选项变为空数组后 placeholder 不出现的问题
-- 修复 TimePicker 时间选择可滚动
-- 修复 Tooltip 会有出现错位的情况
+- 修复 Time Picker 时间选择可滚动
+- 修复 Tooltip 有时会错位的问题
#### 非兼容性更新
- Select 组件样式的 `display` 属性默认值修改为 `block`
diff --git a/examples/components/footer-nav.vue b/examples/components/footer-nav.vue
index 43fdc4164..d6ee175d0 100644
--- a/examples/components/footer-nav.vue
+++ b/examples/components/footer-nav.vue
@@ -97,8 +97,8 @@
},
created() {
- this.nav = navConfig[0].children;
- navConfig[1].groups.map(group => group.list).forEach(list => {
+ this.nav = navConfig[0].children.concat(navConfig[1]);
+ navConfig[2].groups.map(group => group.list).forEach(list => {
this.nav = this.nav.concat(list);
});
this.updateNav();
diff --git a/examples/components/header.vue b/examples/components/header.vue
index 443f33116..4b709b3d1 100644
--- a/examples/components/header.vue
+++ b/examples/components/header.vue
@@ -34,7 +34,7 @@
display: inline-block;
width: 34px;
height: 18px;
- border: 1px solid #fff;
+ border: 1px solid rgba(255, 255, 255, .5);
text-align: center;
line-height: 18px;
vertical-align: middle;
@@ -103,20 +103,18 @@
'header-hangUp': hangUp
}">
-
Element
+
ElementBeta
-
指南
+ to="/guide">指南
-
组件
+ to="/component">组件
-
@@ -165,6 +163,8 @@
}
scroll((direction) => {
if (this.isHome) {
+ this.hangUp = false;
+ this.headerStyle.transition = '';
const threshold = 200;
let alpha = Math.min(document.body.scrollTop, threshold) / threshold;
this.$refs.header.style.backgroundColor = `rgba(32, 160, 255, ${ alpha })`;
diff --git a/examples/docs/dialog.md b/examples/docs/dialog.md
index adc3b3abe..58d2a6937 100644
--- a/examples/docs/dialog.md
+++ b/examples/docs/dialog.md
@@ -58,6 +58,9 @@
.el-dialog__wrapper {
margin: 0;
}
+ .el-select {
+ width: 300px;
+ }
.el-input {
width: 300px;
}
diff --git a/examples/nav.config.json b/examples/nav.config.json
index 5ed939a4e..61e1d5320 100644
--- a/examples/nav.config.json
+++ b/examples/nav.config.json
@@ -9,6 +9,10 @@
"name": "开发指南"
}]
},
+ {
+ "name": "更新日志",
+ "path": "/changelog"
+ },
{
"name": "基础组件",
"groups": [{
diff --git a/examples/pages/changelog.vue b/examples/pages/changelog.vue
index b17607112..555e4334b 100644
--- a/examples/pages/changelog.vue
+++ b/examples/pages/changelog.vue
@@ -4,6 +4,15 @@
.fr {
float: right;
+ padding: 0;
+ a {
+ display: block;
+ padding: 10px 15px;
+ color: #475669;
+ }
+ &:hover a {
+ color: #20a0ff;
+ }
}
h2 {
margin-bottom: 40px;
@@ -76,6 +85,7 @@
circle: 13px transparent;
border: 2px solid #2ca2fc;
box-sizing: border-box;
+ background-color: #fff;
}
}
h4 {
@@ -98,35 +108,15 @@
-
Github Releases更新日志
+
-