From 8a0b57053d75797508e4d01f2099b2f778942d55 Mon Sep 17 00:00:00 2001 From: Taylor Chen Date: Wed, 16 Feb 2022 16:07:47 -0500 Subject: [PATCH 1/2] fix(delete-modal): Changed the color of the help text with grayScale.dark1 in DeleteModal --- superset-frontend/src/components/DeleteModal/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset-frontend/src/components/DeleteModal/index.tsx b/superset-frontend/src/components/DeleteModal/index.tsx index f11390342ee50..d13b8d7c63062 100644 --- a/superset-frontend/src/components/DeleteModal/index.tsx +++ b/superset-frontend/src/components/DeleteModal/index.tsx @@ -26,7 +26,7 @@ const StyledDiv = styled.div` padding-top: 8px; width: 50%; label { - color: ${({ theme }) => theme.colors.grayscale.light1}; + color: ${({ theme }) => theme.colors.grayscale.dark1}; text-transform: uppercase; } `; From af9d0353d635bb1ada8cb069fd8cb4fcc78b05ba Mon Sep 17 00:00:00 2001 From: Evan Rusackas Date: Thu, 17 Feb 2022 09:29:55 -0700 Subject: [PATCH 2/2] Update superset-frontend/src/components/DeleteModal/index.tsx --- superset-frontend/src/components/DeleteModal/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset-frontend/src/components/DeleteModal/index.tsx b/superset-frontend/src/components/DeleteModal/index.tsx index d13b8d7c63062..97f6b469334c2 100644 --- a/superset-frontend/src/components/DeleteModal/index.tsx +++ b/superset-frontend/src/components/DeleteModal/index.tsx @@ -26,7 +26,7 @@ const StyledDiv = styled.div` padding-top: 8px; width: 50%; label { - color: ${({ theme }) => theme.colors.grayscale.dark1}; + color: ${({ theme }) => theme.colors.grayscale.base}; text-transform: uppercase; } `;