publish 1.5.12
This commit is contained in:
parent
85bef9c7a6
commit
adbc27c24b
|
@ -338,7 +338,7 @@
|
||||||
.u-table-thead th .bee-table-column-sorter > .bee-table-column-sorter-up, .u-table-thead th .bee-table-column-sorter > .bee-table-column-sorter-flat {
|
.u-table-thead th .bee-table-column-sorter > .bee-table-column-sorter-up, .u-table-thead th .bee-table-column-sorter > .bee-table-column-sorter-flat {
|
||||||
line-height: 6px;
|
line-height: 6px;
|
||||||
display: block;
|
display: block;
|
||||||
width: 32px;
|
width: 34px;
|
||||||
cursor: pointer; }
|
cursor: pointer; }
|
||||||
.u-table-thead th .bee-table-column-sorter-down.on .uf-triangle-down,
|
.u-table-thead th .bee-table-column-sorter-down.on .uf-triangle-down,
|
||||||
.u-table-thead th .bee-table-column-sorter-down.on .uf-triangle-up,
|
.u-table-thead th .bee-table-column-sorter-down.on .uf-triangle-up,
|
||||||
|
|
|
@ -592,7 +592,6 @@ var TableHeader = function (_Component) {
|
||||||
thClassName += "" + fixedStyle;
|
thClassName += "" + fixedStyle;
|
||||||
if (!da.fixed) {
|
if (!da.fixed) {
|
||||||
thLineObj = {
|
thLineObj = {
|
||||||
//----------------
|
|
||||||
onMouseMove: function onMouseMove(e) {
|
onMouseMove: function onMouseMove(e) {
|
||||||
e.stopPropagation();_this2.onMouseMove(e, da);
|
e.stopPropagation();_this2.onMouseMove(e, da);
|
||||||
},
|
},
|
||||||
|
@ -607,13 +606,16 @@ var TableHeader = function (_Component) {
|
||||||
},
|
},
|
||||||
onMouseOver: function onMouseOver(e) {
|
onMouseOver: function onMouseOver(e) {
|
||||||
_this2.onMouseOver(e, da);
|
_this2.onMouseOver(e, da);
|
||||||
},
|
}
|
||||||
className: clsPrefix + "-thead-th-drag-gap th-drag-gap"
|
// className:`${clsPrefix}-thead-th-drag-gap th-drag-gap`,
|
||||||
};
|
};
|
||||||
|
if (dragAbleOrBordStart !== 'ableStart') {
|
||||||
|
thLineObj.className = clsPrefix + "-thead-th-drag-gap th-drag-gap";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return _react2["default"].createElement(
|
return _react2["default"].createElement(
|
||||||
"th",
|
"th",
|
||||||
_extends({ key: Math.random() }, thAbleObj, thBorObj, { className: thClassName }),
|
_extends({ key: Math.random() + new Date().getTime() }, thAbleObj, thBorObj, { className: thClassName }),
|
||||||
da.children,
|
da.children,
|
||||||
da.fixed ? "" : _react2["default"].createElement(
|
da.fixed ? "" : _react2["default"].createElement(
|
||||||
"div",
|
"div",
|
||||||
|
|
|
@ -2421,9 +2421,6 @@ i.uf {
|
||||||
/*
|
/*
|
||||||
* 选择时删除文本阴影,及设置默认选中颜色
|
* 选择时删除文本阴影,及设置默认选中颜色
|
||||||
*/
|
*/
|
||||||
::-moz-selection {
|
|
||||||
background: rgb(187,222,251);
|
|
||||||
text-shadow: none; }
|
|
||||||
::selection {
|
::selection {
|
||||||
background: rgb(187,222,251);
|
background: rgb(187,222,251);
|
||||||
text-shadow: none; }
|
text-shadow: none; }
|
||||||
|
@ -6673,7 +6670,8 @@ input.u-button[type="submit"] {
|
||||||
border-radius: 0 500px 500px 0; }
|
border-radius: 0 500px 500px 0; }
|
||||||
|
|
||||||
.u-pagination {
|
.u-pagination {
|
||||||
font-size: 14px; }
|
font-size: 14px;
|
||||||
|
position: relative; }
|
||||||
.u-pagination-list {
|
.u-pagination-list {
|
||||||
float: left;
|
float: left;
|
||||||
margin: 5px; }
|
margin: 5px; }
|
||||||
|
@ -6811,6 +6809,15 @@ input.u-button[type="submit"] {
|
||||||
margin: 5px; }
|
margin: 5px; }
|
||||||
.u-pagination-total span {
|
.u-pagination-total span {
|
||||||
padding: 0 5px; }
|
padding: 0 5px; }
|
||||||
|
.u-pagination.u-pagination-disabled .u-pagination-disabled-mask {
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 46px;
|
||||||
|
background: rgba(255, 255, 255, 0.6);
|
||||||
|
z-index: 2;
|
||||||
|
cursor: not-allowed; }
|
||||||
|
|
||||||
.pagination-state {
|
.pagination-state {
|
||||||
float: left;
|
float: left;
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "bee-table",
|
"name": "bee-table",
|
||||||
"version": "1.5.11",
|
"version": "1.5.12",
|
||||||
"description": "Table ui component for react",
|
"description": "Table ui component for react",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"react",
|
"react",
|
||||||
|
|
Loading…
Reference in New Issue