auto-sync: 2026-05-20 23:30:03

This commit is contained in:
cfdaily
2026-05-20 23:30:03 +08:00
parent f993a08647
commit 9f52257b2a
+4 -4
View File
@@ -619,13 +619,13 @@ function ProjectActionPopup({ projectId, projectName, onAction, onClose }: {
<button onClick={() => onAction('archive', projectId)} style={{
display: 'block', width: '100%', textAlign: 'left', padding: '6px 12px',
fontSize: 12, border: 'none', background: 'transparent', color: 'var(--fg)',
cursor: 'pointer', borderRadius: 4,
}}>📦 </button>
cursor: 'pointer', borderRadius: 4, transition: 'background 0.15s',
}} onMouseEnter={e => (e.currentTarget.style.background = 'var(--panel2)')} onMouseLeave={e => (e.currentTarget.style.background = 'transparent')}>📦 </button>
<button onClick={() => onAction('delete', projectId)} style={{
display: 'block', width: '100%', textAlign: 'left', padding: '6px 12px',
fontSize: 12, border: 'none', background: 'transparent', color: '#ff4757',
cursor: 'pointer', borderRadius: 4,
}}>🗑 </button>
cursor: 'pointer', borderRadius: 4, transition: 'background 0.15s',
}} onMouseEnter={e => (e.currentTarget.style.background = 'var(--panel2)')} onMouseLeave={e => (e.currentTarget.style.background = 'transparent')}>🗑 </button>
</div>
);
}