mirror of https://github.com/ElemeFE/element
Changelog: update for 1.1.6
parent
82932c0040
commit
c0b5b32b65
|
@ -1,5 +1,19 @@
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
|
### 1.1.6
|
||||||
|
|
||||||
|
*2017-01-23*
|
||||||
|
|
||||||
|
- Fixed `customClass` of MessageBox affecting follow-up instances, #2472
|
||||||
|
- Fixed style issue of Select after being activated when located in a non-default-activated tab pane inside Tabs, #2466
|
||||||
|
- Fixed style missing issue for some components when imported on demand
|
||||||
|
- Fixed disabled filterable multiple Select still showing dropdown when clicked on a certain area, #2540
|
||||||
|
- Restored returning to original sorting in sortable Table columns, #2491
|
||||||
|
- Added `reset.css` in `theme-default`, #2378
|
||||||
|
- Added `range-separator` attribute for DatePicker, #2579
|
||||||
|
- Published individual component packages: Table, DatePicker, Loading, Upload and Carousel
|
||||||
|
- Add Finnish (@groenroos)
|
||||||
|
|
||||||
### 1.1.5
|
### 1.1.5
|
||||||
|
|
||||||
*2017-01-17*
|
*2017-01-17*
|
||||||
|
|
|
@ -1,5 +1,18 @@
|
||||||
## 更新日志
|
## 更新日志
|
||||||
|
|
||||||
|
### 1.1.6
|
||||||
|
*2017-01-23*
|
||||||
|
|
||||||
|
- 修复 MessageBox 的 `customClass` 会影响后续实例的问题,#2472
|
||||||
|
- 修复位于 Tabs 非默认激活页中的 Select 在激活后样式不正确的问题,#2466
|
||||||
|
- 修复一些组件在单独引入时样式缺失的问题
|
||||||
|
- 修复被禁用的可搜索多选 Select 点击特定区域仍能打开下拉框的问题,#2540
|
||||||
|
- 修复 Table 排序支持返回原始顺序,#2491
|
||||||
|
- 新增 `reset.css` 在 `theme-default` 内,#2378
|
||||||
|
- 新增 DatePicker 的 `range-separator` 属性,#2579
|
||||||
|
- 发布单独组件包:Table,DatePicker,Loading,Upload,Carousel
|
||||||
|
- 新增芬兰语(@groenroos)
|
||||||
|
|
||||||
### 1.1.5
|
### 1.1.5
|
||||||
*2017-01-17*
|
*2017-01-17*
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<style lang="css">
|
<style lang="css">
|
||||||
@import 'highlight.js/styles/color-brewer.css';
|
@import 'highlight.js/styles/color-brewer.css';
|
||||||
@import 'assets/styles/common.css';
|
@import 'assets/styles/common.css';
|
||||||
@import 'packages/theme-default/src/reset.css';
|
@import 'assets/styles/fonts/style.css';
|
||||||
|
|
||||||
html, body {
|
html, body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
@ -14,15 +14,22 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
|
font-family: 'Helvetica Neue',Helvetica,'PingFang SC','Hiragino Sans GB','Microsoft YaHei',SimSun,sans-serif;
|
||||||
|
overflow: auto;
|
||||||
|
font-weight: 400;
|
||||||
-webkit-font-smoothing: antialiased;
|
-webkit-font-smoothing: antialiased;
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
|
||||||
margin: 1em 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: #4078c0;
|
color: #4078c0;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
button, input, select, textarea {
|
||||||
|
font-family: inherit;
|
||||||
|
font-size: inherit;
|
||||||
|
line-height: inherit;
|
||||||
|
color: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
|
|
Loading…
Reference in New Issue