From ba4bae08abe7072de2f9b00acd780b3ba6137d63 Mon Sep 17 00:00:00 2001 From: Mehmet Salih Yavuz Date: Mon, 29 Sep 2025 13:51:38 +0300 Subject: [PATCH 1/2] fix(theming): CRUD view backgrounds and padding --- superset-frontend/src/components/ListView/ListView.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/superset-frontend/src/components/ListView/ListView.tsx b/superset-frontend/src/components/ListView/ListView.tsx index 8b3a8a131654..c7978205afe0 100644 --- a/superset-frontend/src/components/ListView/ListView.tsx +++ b/superset-frontend/src/components/ListView/ListView.tsx @@ -45,7 +45,8 @@ import { ListViewError, useListViewState } from './utils'; const ListViewStyles = styled.div` ${({ theme }) => ` text-align: center; - background-color: ${theme.colorBgLayout}; + background-color: ${theme.colorBgContainer}; + padding-top: ${theme.paddingXS}px; .superset-list-view { text-align: left; From 6c24b1ef15d9be797e2a228e3dff8dc76bc91bdb Mon Sep 17 00:00:00 2001 From: Mehmet Salih Yavuz Date: Thu, 2 Oct 2025 18:38:13 +0300 Subject: [PATCH 2/2] fix: revert background color --- superset-frontend/src/components/ListView/ListView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset-frontend/src/components/ListView/ListView.tsx b/superset-frontend/src/components/ListView/ListView.tsx index c7978205afe0..67475f099374 100644 --- a/superset-frontend/src/components/ListView/ListView.tsx +++ b/superset-frontend/src/components/ListView/ListView.tsx @@ -45,7 +45,7 @@ import { ListViewError, useListViewState } from './utils'; const ListViewStyles = styled.div` ${({ theme }) => ` text-align: center; - background-color: ${theme.colorBgContainer}; + background-color: ${theme.colorBgLayout}; padding-top: ${theme.paddingXS}px; .superset-list-view {