Table: add hover background. (#609)

pull/617/head
FuryBean 2016-10-24 14:12:16 +08:00 committed by cinwell.li
parent 4464a7dd0d
commit 7ce40a94aa
1 changed files with 12 additions and 2 deletions

View File

@ -293,8 +293,14 @@
} }
} }
& tr.current-row { @e body {
background: #EFF7FF; tr {
transition: background-color .25s ease-in-out;
}
tr.current-row {
background: #eff7ff;
}
} }
@e column-resize-proxy { @e column-resize-proxy {
@ -320,3 +326,7 @@
} }
} }
} }
.el-table .el-table__body tr.hover-row {
background-color: #eff2f7;
}