dosubot[bot] commented on issue #38727: URL: https://github.com/apache/superset/issues/38727#issuecomment-4084410898
<!-- Answer --> The transparency you're seeing is actually intentional in the current code. The filter indicator popover background is set with 80% opacity in [DetailsPanel/index.tsx](https://github.com/apache/superset/blob/829e4d92d91ceae4b43b1ed3b063ffe45377799c/superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx#L178): ```typescript color={`${theme.colors.grayscale.dark2}cc`} ``` The `cc` hex suffix equals ~80% opacity. If this was previously opaque (white background), the change likely happened during the [theme migration to Ant Design tokens in PR #34732](https://github.com/apache/superset/pull/34732) or related theming PRs in mid-2025. To fix this, the `cc` suffix could be changed to `ff` for full opacity, or removed entirely. The relevant files are: - `superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx` - `superset-frontend/src/dashboard/components/FiltersBadge/Styles.tsx` <!-- Dosu Comment Footer --> *To reply, just mention [@dosu](https://go.dosu.dev/dosubot?utm_source=github&utm_medium=bot-comment&utm_campaign=github-assistant&utm_content=brand-link).* --- <sup>How did I do? [Good](https://app.dosu.dev/response-feedback/abf04bfe-949f-44f6-a8a7-6097c36c0618?feedback_type=great_response&utm_source=github&utm_medium=bot-comment&utm_campaign=github-assistant&utm_content=feedback-great_response) | [Irrelevant](https://app.dosu.dev/response-feedback/abf04bfe-949f-44f6-a8a7-6097c36c0618?feedback_type=irrelevant_answer&utm_source=github&utm_medium=bot-comment&utm_campaign=github-assistant&utm_content=feedback-irrelevant_answer) | [Incorrect](https://app.dosu.dev/response-feedback/abf04bfe-949f-44f6-a8a7-6097c36c0618?feedback_type=incorrect_sources&utm_source=github&utm_medium=bot-comment&utm_campaign=github-assistant&utm_content=feedback-incorrect_sources) | [Verbose](https://app.dosu.dev/response-feedback/abf04bfe-949f-44f6-a8a7-6097c36c0618?feedback_type=too_verbose&utm_source=github&utm_medium=bot-comment&utm_campaign=github-assistant&utm_content=feedback-too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/abf04bfe-949f -44f6-a8a7-6097c36c0618?feedback_type=hallucination&utm_source=github&utm_medium=bot-comment&utm_campaign=github-assistant&utm_content=feedback-hallucination) | [Report 🐛](https://app.dosu.dev/response-feedback/abf04bfe-949f-44f6-a8a7-6097c36c0618?feedback_type=bug_report&utm_source=github&utm_medium=bot-comment&utm_campaign=github-assistant&utm_content=feedback-bug_report) | [Other](https://app.dosu.dev/response-feedback/abf04bfe-949f-44f6-a8a7-6097c36c0618?feedback_type=other&utm_source=github&utm_medium=bot-comment&utm_campaign=github-assistant&utm_content=feedback-other)</sup> [](https://app.dosu.dev/a28d3c7e-a9d3-459e-9fb6-3a6f9ff4f357/ask?utm_source=github&utm_medium=bot-comment&utm_campaign=github-assistant&utm_content=chat-badge) [](https://cursor.com/link/prompt?text=The%20transparency%20you%27re%20seeing%20is%20actually%20intentional%20in%20the%20current%20code.%20The%20filter%20indicator%20popover%20background%20is%20set%20with%2080%25%20opacity%20in%20%5BDetailsPanel/index.tsx%5D%28https%3A//github.com/apache/superset/blob/829e4d92d91ceae4b43b1ed3b063ffe45377799c/superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx%23L178%29%3A%0A%0A%60%60%60typescript%0Acolor%3D%7B%60%24%7Btheme.colors.grayscale.dark2%7Dcc%60%7D%0A%60%60%60%0A%0AThe%20%60cc%60%20hex%20suffix%20equals%20~80%25%20opacity.%20If%20this%20was%20previously%20opaque%20%28white%20background%29%2C%20the%20change%20likely%20happened%20during%20the%20 %5Btheme%20migration%20to%20Ant%20Design%20tokens%20in%20PR%20%2334732%5D%28https%3A//github.com/apache/superset/pull/34732%29%20or%20related%20theming%20PRs%20in%20mid-2025.%0A%0ATo%20fix%20this%2C%20the%20%60cc%60%20suffix%20could%20be%20changed%20to%20%60ff%60%20for%20full%20opacity%2C%20or%20removed%20entirely.%20The%20relevant%20files%20are%3A%0A-%20%60superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx%60%0A-%20%60superset-frontend/src/dashboard/components/FiltersBadge/Styles.tsx%60) [](https://go.dosu.dev/discord-bot?utm_source=github&utm_medium=bot-comment&utm_campaign=github-assistant&utm_content=join-discord) [](https://twitter.com/intent/tweet?text=%40dosu_ai%20helped%20me%20solve%20this%20issue!&url=https%3A//github.com/apache/superset/issues/38727) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
