mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-05-07 13:37:20 +02:00
Fix color for available plugins
Fixes the background of the plugins in the "Available Plugins" section in the settings.
This commit is contained in:
2
gradle/changelog/fix_available_plugins.yaml
Normal file
2
gradle/changelog/fix_available_plugins.yaml
Normal file
@@ -0,0 +1,2 @@
|
||||
- type: fixed
|
||||
description: Color for available plugins
|
||||
@@ -49,6 +49,12 @@ const InheritFlexShrinkDiv = styled.div`
|
||||
pointer-events: all;
|
||||
`;
|
||||
|
||||
const InvisibleButton = styled.button`
|
||||
background: none;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
`;
|
||||
|
||||
const CardColumn: FC<Props> = ({
|
||||
link,
|
||||
avatar,
|
||||
@@ -69,7 +75,7 @@ const CardColumn: FC<Props> = ({
|
||||
createLink = <Link className="overlay-column" to={link} />;
|
||||
} else if (action) {
|
||||
createLink = (
|
||||
<button
|
||||
<InvisibleButton
|
||||
className="overlay-column"
|
||||
onClick={(e) => {
|
||||
e.preventDefault();
|
||||
|
||||
Reference in New Issue
Block a user