fix:bordered为true时表格可拖拽时,表头渲染bug
This commit is contained in:
parent
28562c2401
commit
8194377e26
|
@ -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; }
|
||||
|
||||
|
|
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
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue