From ab9eaed8d0848f6d712faf85f6f3b99794e9f661 Mon Sep 17 00:00:00 2001 From: afc163 Date: Wed, 14 Aug 2019 15:47:51 +0800 Subject: [PATCH] :bug: Fix Table row selected hover style close #18195 --- components/table/style/index.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/table/style/index.less b/components/table/style/index.less index 2ca4ac13b6..0305d2232c 100644 --- a/components/table/style/index.less +++ b/components/table/style/index.less @@ -229,7 +229,7 @@ transition: all 0.3s, height 0s; &.@{table-prefix-cls}-row-hover, &:hover { - &:not(.@{table-prefix-cls}-expanded-row) > td { + &:not(.@{table-prefix-cls}-expanded-row):not(.@{table-prefix-cls}-row-selected) > td { background: @table-row-hover-bg; } }