[bug fix] Field: 修复圆角输入框,边框显示问题 (#134)

* 修复圆角输入框,是最后一个元素时,不展示边框的问题

* add bower ignore
This commit is contained in:
Yao 2018-02-26 16:20:58 +08:00 committed by GitHub
parent 37cdd28aff
commit db20736797
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View File

@ -17,6 +17,7 @@
"node_modules",
"packages",
"scripts",
"website",
"postcss.config.js",
"package.json",
"*.md",

View File

@ -16,6 +16,11 @@
}
}
/* 圆角输入框,强制展示边框 */
.zan-field.zan-field--wrapped::after {
display: block;
}
.zan-field--wrapped + .zan-field--wrapped {
margin-top: 10px;
}
@ -24,7 +29,7 @@
color: #f40;
}
/* 圆角输入框时,将边框也置红 */
/* 圆角输入框出现错误时,将边框也置红 */
.zan-field--wrapped.zan-field--error::after {
border-color: #f40;
}