feat: filterColumn 中item字体为12px,点击文字checkbox也可以选中
This commit is contained in:
parent
f734fd59c3
commit
f8f983f12c
|
@ -8589,6 +8589,7 @@ ul {
|
|||
color: #505F79; }
|
||||
.u-table-filter-column-pop-cont-item {
|
||||
margin-top: 8px;
|
||||
font-size: 12px;
|
||||
cursor: pointer; }
|
||||
.u-table-filter-column-pop-cont-item .u-checkbox {
|
||||
margin: 0px; }
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -171892,11 +171892,14 @@
|
|||
key: da.key + "_" + i,
|
||||
className: prefixCls + "-pop-cont-item"
|
||||
},
|
||||
_react2["default"].createElement(_beeCheckbox2["default"], paramObj),
|
||||
_react2["default"].createElement(
|
||||
"span",
|
||||
null,
|
||||
da.title
|
||||
_beeCheckbox2["default"],
|
||||
paramObj,
|
||||
_react2["default"].createElement(
|
||||
"span",
|
||||
null,
|
||||
da.title
|
||||
)
|
||||
)
|
||||
);
|
||||
});
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -558,6 +558,7 @@ $icon-color:#505F79;
|
|||
}
|
||||
&-pop-cont-item{
|
||||
margin-top: 8px;
|
||||
font-size: 12px;
|
||||
// line-height: 30px;
|
||||
cursor: pointer;
|
||||
.u-checkbox {
|
||||
|
|
|
@ -108,9 +108,10 @@ export default function filterColumn(Table, Popover) {
|
|||
key={da.key + "_" + i}
|
||||
className={`${prefixCls}-pop-cont-item`}
|
||||
>
|
||||
<Checkbox {...paramObj}/>
|
||||
<Checkbox {...paramObj}>
|
||||
|
||||
<span>{da.title}</span>
|
||||
</Checkbox>
|
||||
</div>
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in New Issue