From a8b18c2697e7f648fccd19e2b64ac36c452a952b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=97=A0=E6=9C=A8?= Date: Sat, 14 Aug 2021 21:12:30 +0800 Subject: [PATCH] style: fix selected background color of `tr` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修复表格选中行的背景颜色与固定列的冲突 fixed: #1069 --- src/components/Table/src/BasicTable.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Table/src/BasicTable.vue b/src/components/Table/src/BasicTable.vue index c90e654a..386e932d 100644 --- a/src/components/Table/src/BasicTable.vue +++ b/src/components/Table/src/BasicTable.vue @@ -381,7 +381,7 @@ } .ant-table-tbody > tr.ant-table-row-selected td { - background-color: fade(@primary-color, 8%) !important; + //background-color: fade(@primary-color, 8%) !important; } } -- GitLab