From 1fb91dfb5906925314247945ffd9e81a285a3ab2 Mon Sep 17 00:00:00 2001 From: Taylor Date: Thu, 12 May 2022 14:43:03 -0400 Subject: [PATCH 1/2] fix(CRUD): make to fix the dancing when crud view is on hover --- superset-frontend/src/components/TableCollection/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset-frontend/src/components/TableCollection/index.tsx b/superset-frontend/src/components/TableCollection/index.tsx index 2b6999578f3c..c25a641d01ce 100644 --- a/superset-frontend/src/components/TableCollection/index.tsx +++ b/superset-frontend/src/components/TableCollection/index.tsx @@ -149,7 +149,7 @@ export const Table = styled.table` .table-row { .actions { opacity: 0; - font-size: ${theme.typography.sizes.xl}px; + display: flex; } &:hover { From 1fe8059ba8933033fd6621b1225bc1cccaa9f81e Mon Sep 17 00:00:00 2001 From: Taylor Date: Fri, 13 May 2022 16:07:13 -0400 Subject: [PATCH 2/2] fix(CRUD): make to restore font size property --- superset-frontend/src/components/TableCollection/index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/superset-frontend/src/components/TableCollection/index.tsx b/superset-frontend/src/components/TableCollection/index.tsx index c25a641d01ce..bb68b773e73c 100644 --- a/superset-frontend/src/components/TableCollection/index.tsx +++ b/superset-frontend/src/components/TableCollection/index.tsx @@ -149,6 +149,7 @@ export const Table = styled.table` .table-row { .actions { opacity: 0; + font-size: ${theme.typography.sizes.xl}px; display: flex; }