[improvement] Cell: 增加默认白色背景色 (#270)

* 修复stepper文档错误

* 采用极大数字来代替 infinity

* 增加 cell 背景色

* 增加外部样式类
This commit is contained in:
Yao 2018-05-24 00:05:28 +08:00 committed by GitHub
parent d7ce0a8cda
commit ce948df12f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 7 additions and 1 deletions

View File

@ -3,6 +3,7 @@
"usingComponents": {
"zan-cell": "../../dist/cell/index",
"zan-icon": "../../dist/icon/index",
"zan-badge": "../../dist/badge/index",
"zan-panel": "../../dist/panel/index",
"zan-cell-group": "../../dist/cell-group/index",
"doc-page": "../../components/doc-page/index"

View File

@ -0,0 +1,3 @@
.cell-group {
background-color: #fff;
}

View File

@ -4,6 +4,7 @@ const warn = (msg, getValue) => {
};
Component({
externalClasses: ['cell-class'],
options: {
multipleSlots: true
},

View File

@ -6,6 +6,7 @@
display: flex;
align-items: center;
line-height: 1.4;
background-color: #fff;
font-size: 14px;
}

View File

@ -1,6 +1,6 @@
<view
catchtap="cellTap"
class="zan-cell {{ isLastCell ? 'last-cell' : '' }} {{ isLink ? 'zan-cell--access' : '' }}">
class="cell-class zan-cell {{ isLastCell ? 'last-cell' : '' }} {{ isLink ? 'zan-cell--access' : '' }}">
<view class="zan-cell__icon">
<slot name="icon"></slot>