mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-08 22:45:45 +01:00
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:
committed by
GitHub
parent
35f4cb3e61
commit
57aacba03a
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user