fix(过滤列样式优化):
This commit is contained in:
parent
699f43b4a0
commit
16586b6ef6
|
@ -278,7 +278,8 @@
|
||||||
.u-table-filter-column-pop-cont {
|
.u-table-filter-column-pop-cont {
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
max-height: 300px;
|
max-height: 300px;
|
||||||
overflow-y: scroll; }
|
overflow-y: scroll;
|
||||||
|
color: #212121; }
|
||||||
.u-table-filter-column-clear-setting {
|
.u-table-filter-column-clear-setting {
|
||||||
margin-bottom: 4px; }
|
margin-bottom: 4px; }
|
||||||
.u-table-filter-column-cont {
|
.u-table-filter-column-cont {
|
||||||
|
|
|
@ -1125,7 +1125,7 @@ var Table = function (_Component) {
|
||||||
columns = _props7.columns,
|
columns = _props7.columns,
|
||||||
heightConsistent = _props7.heightConsistent;
|
heightConsistent = _props7.heightConsistent;
|
||||||
|
|
||||||
var headRows = this.refs.headTable ? this.refs.headTable.querySelectorAll('thead') : this.refs.headTable.querySelectorAll('thead');
|
var headRows = this.refs.headTable ? this.refs.headTable.querySelectorAll('thead') : this.refs.bodyTable.querySelectorAll('thead');
|
||||||
var bodyRows = this.refs.bodyTable.querySelectorAll('.' + clsPrefix + '-row') || [];
|
var bodyRows = this.refs.bodyTable.querySelectorAll('.' + clsPrefix + '-row') || [];
|
||||||
var leftBodyRows = this.refs.fixedColumnsBodyLeft && this.refs.fixedColumnsBodyLeft.querySelectorAll('.' + clsPrefix + '-row') || [];
|
var leftBodyRows = this.refs.fixedColumnsBodyLeft && this.refs.fixedColumnsBodyLeft.querySelectorAll('.' + clsPrefix + '-row') || [];
|
||||||
var rightBodyRows = this.refs.fixedColumnsBodyRight && this.refs.fixedColumnsBodyRight.querySelectorAll('.' + clsPrefix + '-row') || [];
|
var rightBodyRows = this.refs.fixedColumnsBodyRight && this.refs.fixedColumnsBodyRight.querySelectorAll('.' + clsPrefix + '-row') || [];
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "bee-table",
|
"name": "bee-table",
|
||||||
"version": "2.0.9",
|
"version": "2.0.10",
|
||||||
"description": "Table ui component for react",
|
"description": "Table ui component for react",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"react",
|
"react",
|
||||||
|
@ -90,4 +90,4 @@
|
||||||
"bee-pagination": "^2.0.5",
|
"bee-pagination": "^2.0.5",
|
||||||
"bee-popover": "^2.0.0"
|
"bee-popover": "^2.0.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue