Use a transparent SCMM logo in plugin center (#1936)

This replaces the SCM-Manager logo for the plugins
without own icons with a version with a transparent
background to make it less intense in dark themes.
This commit is contained in:
René Pfeuffer
2022-01-27 11:11:06 +01:00
committed by GitHub
parent 1da37725a1
commit 0932c6e71f
3 changed files with 3 additions and 1 deletions

View File

@@ -0,0 +1,2 @@
- type: changed
description: SCM-Manager icon in the plugin center has a transparent background ([#1936](https://github.com/scm-manager/scm-manager/pull/1936))

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

View File

@@ -50,7 +50,7 @@ export default class PluginAvatar extends React.Component<Props> {
plugin
}}
>
<Image src={plugin.avatarUrl ? plugin.avatarUrl : "/images/blib.jpg"} alt="Logo" />
<Image src={plugin.avatarUrl ? plugin.avatarUrl : "/images/blibTransparentBG.png"} alt="Logo" />
</ExtensionPoint>
</BoundingBox>
);