Files
backstage/.changeset/great-roses-pump.md
T
Andre Wanlin 385389d23c Latest feedback updates
Signed-off-by: Andre Wanlin <67169551+awanlin@users.noreply.github.com>
2022-06-23 12:36:46 -05:00

667 B

@backstage/plugin-catalog
@backstage/plugin-catalog
patch

Previously, the color of the Entity Context Menu (in the Entity Page Header) was hardcoded as white.

This was an issue for themes that use a header with a white background. By default, the color of the icon is now theme.page.fontColor.

It can now also be overridden in the theme, which is only necessary if the header title, subtitle and three-dots icon need to have different colors. For example:

export function createThemeOverrides(theme: BackstageTheme): Overrides {
  return {
    PluginCatalogEntityContextMenu: {
      button: {
        color: 'blue',
      },
    },
    ...
  },
  ...
  }