refactor: 修改表格 th 的 hover 事件

This commit is contained in:
Captain.B 2020-11-10 10:58:43 +08:00
parent 123a2a9046
commit 3b656cb538
1 changed files with 2 additions and 2 deletions

View File

@ -65,13 +65,13 @@ body {
background-color: white; background-color: white;
} }
.adjust-table th:hover:after { .adjust-table th:not([class*='el-table-column--selection']):hover:after {
content: ''; content: '';
position: absolute; position: absolute;
top: 25%; top: 25%;
right: 0; right: 0;
height: 50%; height: 50%;
width: 3px; width: 2px;
background-color: #EBEEF5; background-color: #EBEEF5;
} }