fix textarea style in form

This commit is contained in:
Leopoldthecoder 2016-09-08 19:06:26 +08:00
parent c30003d444
commit 4b3ba7fc87
2 changed files with 5 additions and 2 deletions

View File

@ -13,11 +13,13 @@
- 修复 远程搜索的 Select 在 Form 中的显示问题 - 修复 远程搜索的 Select 在 Form 中的显示问题
- 修复 Input Number 输入小数和非数字值时的问题 - 修复 Input Number 输入小数和非数字值时的问题
- 修复 Select 选中 value 为 0 的值时绑定值不更新的问题 - 修复 Select 选中 value 为 0 的值时绑定值不更新的问题
- 修复 Tree 取消选择某节点后,其同级节点均被取消的问题
- 优化 增加打包成 commonjs 且不压缩的文件,默认引入 commonjs - 优化 增加打包成 commonjs 且不压缩的文件,默认引入 commonjs
#### 非兼容性更新 #### 非兼容性更新
- Menu 组件 `mode` 属性默认值修改为 `vertical` - Menu 组件 `mode` 属性默认值修改为 `vertical`
- Progress 组件升级,增加环形进度条的类型,以及增加了诸多属性,详细请查阅文档。 - Progress 组件升级,增加环形进度条的类型,以及增加了诸多属性,详细请查阅文档。
- Popover 现在可以通过 slot 指定 reference。
### 1.0.0-rc.1 ### 1.0.0-rc.1

View File

@ -161,12 +161,13 @@
@e inner { @e inner {
display: block; display: block;
resize: vertical; resize: vertical;
padding: 10px 5px; padding: 8px 5px;
line-height: normal;
box-sizing: border-box; box-sizing: border-box;
width: 100%; width: 100%;
min-height: 88px; min-height: 88px;
font-size: var(--font-size-base); font-size: var(--font-size-base);
color: #666; color: var(--input-color);
background-color: #fff; background-color: #fff;
background-image: none; background-image: none;
border: var(--input-border); border: var(--input-border);