TaskDecay v1.0.0 MVP — smart task review & archive Chrome extension

This commit is contained in:
Bun Bun
2026-06-17 06:48:47 +00:00
commit cc9aee68ee
38 changed files with 4710 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
.taskdecay-badge {
display: inline-flex;
align-items: center;
gap: 4px;
padding: 2px 8px;
border-radius: 4px;
font-size: 11px;
font-weight: 600;
font-family: system-ui, -apple-system, sans-serif;
margin-left: 8px;
cursor: pointer;
transition: opacity 0.2s;
}
.taskdecay-badge:hover { opacity: 0.8; }
.taskdecay-badge-warm { background: #f39c12; color: #fff; }
.taskdecay-badge-hot { background: #e74c3c; color: #fff; }
.taskdecay-badge-cold { background: #3498db; color: #fff; }