chore: update unpin memo (#386)

This commit is contained in:
boojack 2022-10-31 19:27:56 +08:00 committed by GitHub
parent 4276a7a56d
commit 40d5686031
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 17 deletions

View File

@ -184,13 +184,7 @@ const Memo: React.FC<Props> = (props: Props) => {
return (
<div className={`memo-wrapper ${"memos-" + memo.id} ${memo.pinned ? "pinned" : ""}`} ref={memoContainerRef}>
{memo.pinned && (
<div className="corner-container">
<span className="tip-text" onClick={handleTogglePinMemoBtnClick}>
{t("common.unpin")}
</span>
</div>
)}
{memo.pinned && <div className="corner-container"></div>}
<div className="memo-top-wrapper">
<div className="status-text-container">
<span className="time-text" onClick={handleShowMemoStoryDialog}>

View File

@ -14,18 +14,9 @@
> .corner-container {
@apply absolute top-0 right-0 z-1;
&:hover > .tip-text {
@apply block;
}
&::after {
@apply rounded-tr-md absolute top-0 right-0 border-transparent border-t-green-600 border-r-green-600;
@apply rounded-tr-md absolute border-8 top-0 right-0 border-transparent border-t-green-600 border-r-green-600;
content: "";
border-width: 6px;
}
> .tip-text {
@apply hidden absolute top-0 right-0 z-1 whitespace-nowrap p-1 px-2 rounded-md text-xs leading-6 bg-black text-white shadow cursor-pointer hover:opacity-80;
}
}