Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs: 商店详情卡片添加宽度限制与文本省略 #2473

Merged
merged 4 commits into from
Nov 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion website/src/components/Modal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default function Modal({
onClick={() => backdropExit && onFadeOut()}
/>
<div className={clsx("nb-modal-container", transitionClass)}>
<div className="card bg-base-100 shadow-xl">
<div className="card bg-base-100 shadow-xl max-w-2xl">
<div className="card-body">
{!useCustomTitle && (
<div className="nb-modal-title">
Expand Down
2 changes: 1 addition & 1 deletion website/src/components/Modal/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

&-container {
@apply absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 min-w-[400px] lg:min-w-[600px];
@apply p-8 opacity-0;
@apply opacity-0;
@apply transition-opacity duration-[225ms] ease-in-out delay-0;

&.fade-in {
Expand Down
11 changes: 2 additions & 9 deletions website/src/components/Resource/Card/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,7 @@ export default function ResourceCard({
const authorAvatar = `${authorLink}.png?size=80`;

return (
<div
className={clsx(
"resource-card-container",
onClick && "resource-card-container-clickable",
className
)}
onClick={onClick}
>
<div className={clsx("resource-card-container", className)}>
<div className="resource-card-header">
<div className="resource-card-header-title">
{resource.name}
Expand All @@ -55,7 +48,7 @@ export default function ResourceCard({
/>
)}
</div>
<div className="resource-card-header-expand">
<div className="resource-card-header-expand" onClick={onClick}>
<FontAwesomeIcon icon={["fas", "expand"]} />
</div>
</div>
Expand Down
7 changes: 2 additions & 5 deletions website/src/components/Resource/Card/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,7 @@
@apply flex flex-col gap-y-2 w-full min-h-[12rem] p-4;
@apply transition-colors duration-500 bg-base-200;
@apply border-2 border-base-200 rounded-lg;

&-clickable {
@apply cursor-pointer hover:border-primary;
}
@apply hover:border-primary;
}

&-header {
Expand All @@ -21,7 +18,7 @@
}

&-expand {
@apply flex-none fill-current;
@apply flex-none fill-current cursor-pointer;
}
}

Expand Down
7 changes: 2 additions & 5 deletions website/src/components/Resource/DetailCard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export default function ResourceDetailCard({ resource }: Props) {
src={authorAvatar}
className="detail-card-avatar"
decoding="async"
></img>
/>
<div className="detail-card-title">
<span className="detail-card-title-main">{resource.name}</span>
<span className="detail-card-title-sub">{resource.author}</span>
Expand Down Expand Up @@ -123,10 +123,7 @@ export default function ResourceDetailCard({ resource }: Props) {
</div>
<div className="detail-card-meta-item">
<span>
<FontAwesomeIcon
className="fa-fw"
icon={["fas", "scale-balanced"]}
/>{" "}
<FontAwesomeIcon fixedWidth icon={["fas", "scale-balanced"]} />{" "}
{(pypiData && pypiData.info.license) || "无"}
</span>
</div>
Expand Down
6 changes: 3 additions & 3 deletions website/src/components/Resource/DetailCard/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -35,19 +35,19 @@
@apply flex flex-col w-full lg:flex-row;

&-left {
@apply flex flex-col min-h-[150px] lg:basis-3/4;
@apply flex flex-col min-h-[150px] lg:basis-3/4 max-w-[65%];
}

&-divider {
@apply divider lg:divider-horizontal;
}

&-right {
@apply flex flex-col justify-start gap-y-2 lg:basis-1/4;
@apply flex flex-col justify-start gap-y-2 lg:basis-1/4 max-w-[45%];
}
}

&-meta-item {
@apply text-sm whitespace-nowrap;
@apply text-sm truncate;
}
}
Loading