You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by vi...@apache.org on 2021/01/26 07:28:02 UTC

[superset] 02/02: fix: missing select menu background (#12759)

This is an automated email from the ASF dual-hosted git repository.

villebro pushed a commit to branch 1.0
in repository https://gitbox.apache.org/repos/asf/superset.git

commit be51717c37dcf628e7d2cd7783bdf586df588d10
Author: Jesse Yang <je...@airbnb.com>
AuthorDate: Mon Jan 25 22:19:55 2021 -0800

    fix: missing select menu background (#12759)
---
 superset-frontend/src/components/Select/styles.tsx | 1 +
 1 file changed, 1 insertion(+)

diff --git a/superset-frontend/src/components/Select/styles.tsx b/superset-frontend/src/components/Select/styles.tsx
index 4776a72..ffbb102 100644
--- a/superset-frontend/src/components/Select/styles.tsx
+++ b/superset-frontend/src/components/Select/styles.tsx
@@ -199,6 +199,7 @@ export const DEFAULT_STYLES: PartialStylesConfig = {
   menuList: (provider, { theme: { borderRadius, colors } }) => [
     provider,
     css`
+      background: ${colors.lightest};
       border-radius: 0 0 ${borderRadius}px ${borderRadius}px;
       border: 1px solid ${colors.grayBorderDark};
       box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);