fix:bordered为true时表格可拖拽时,表头渲染bug

This commit is contained in:
wanghaoo 2019-01-29 16:08:24 +08:00
parent 28562c2401
commit 8194377e26
5 changed files with 35 additions and 24 deletions

5
dist/demo.css vendored
View File

@ -8664,7 +8664,7 @@ ul {
.u-table-thead-th-drag-gap .online {
height: 100%;
width: 1px;
background: #e9e9e9;
background: transparent;
margin: 0 auto; }
.u-table-thead-th-drag-gap .online-hover {
background: #000000; }
@ -8719,6 +8719,9 @@ ul {
outline: none;
box-shadow: 0 0 0; }
.u-table-bordered .u-table-drag-gap {
background: #e9e9e9; }
.u-table.bordered table {
border-collapse: collapse; }

2
dist/demo.css.map vendored

File diff suppressed because one or more lines are too long

43
dist/demo.js vendored

File diff suppressed because one or more lines are too long

2
dist/demo.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -411,7 +411,7 @@ $checkbox-height:16px;
.online{
height: 100%;
width: 1px;
background:#e9e9e9;//兼容火狐浏览器如果table设置border
background:transparent;//兼容火狐浏览器如果table设置border
margin: 0 auto;
}
.online-hover{
@ -498,6 +498,11 @@ $checkbox-height:16px;
box-shadow: 0 0 0;
}
.u-table-bordered {
.u-table-drag-gap{
background:#e9e9e9;
}
}
.u-table.bordered {
table {
border-collapse: collapse;