diff --git a/packages/theme-default/src/table.css b/packages/theme-default/src/table.css index 09db10267..62bc6bf12 100644 --- a/packages/theme-default/src/table.css +++ b/packages/theme-default/src/table.css @@ -293,8 +293,14 @@ } } - & tr.current-row { - background: #EFF7FF; + @e body { + tr { + transition: background-color .25s ease-in-out; + } + + tr.current-row { + background: #eff7ff; + } } @e column-resize-proxy { @@ -320,3 +326,7 @@ } } } + +.el-table .el-table__body tr.hover-row { + background-color: #eff2f7; +}