New extension points for repository overview (#1828)

The landing-page-plugin is being reworked and integrated into the repository overview. This requires new extension points and slightly adjusted components to better match the repository overview page visually. Also, binder options can now be passed as an object which offer a new priority option that causes sorting in descending order.
This commit is contained in:
Konstantin Schaper
2021-10-19 09:31:40 +02:00
committed by GitHub
parent 35f4cb3e61
commit 57aacba03a
15 changed files with 347 additions and 78 deletions

View File

@@ -39,7 +39,6 @@ const OverlayLink = styled(Link)`
pointer-events: all;
border-radius: 4px;
:hover {
background-color: rgb(51, 178, 232, 0.1);
cursor: pointer;
}
`;
@@ -82,7 +81,7 @@ type Props = {
const GroupEntry: FC<Props> = ({ link, avatar, title, name, description, contentRight }) => {
return (
<div className="is-relative">
<OverlayLink to={link} />
<OverlayLink to={link} className="has-hover-background-blue" />
<StyledGroupEntry
className={classNames("is-flex", "is-justify-content-space-between", "is-align-items-center", "p-2")}
title={title}