Update ashboard, dashboard (~2)

This commit is contained in:
Echo
2026-02-02 11:07:00 +00:00
parent 94b9c0402b
commit a7fbeddfd8
2 changed files with 7 additions and 2 deletions

View File

@@ -773,6 +773,8 @@
}
.todo-due.overdue { color: #ef4444; font-weight: 500; }
.todo-source { font-size: 11px; color: #6b7280; }
.todo-source-link { font-size: 11px; color: #60a5fa; text-decoration: none; }
.todo-source-link:hover { text-decoration: underline; }
/* Button icon only */
.btn-icon {
@@ -1612,7 +1614,9 @@
<div class="todo-meta">
<span class="todo-domain ${todo.domain}">@${todo.domain}</span>
${todo.dueDate ? `<span class="todo-due ${isOverdue ? 'overdue' : ''}">${formatDate(todo.dueDate)}</span>` : ''}
${todo.source ? `<span class="todo-source">${todo.source}</span>` : ''}
${todo.source ? (todo.sourceUrl
? `<a href="${todo.sourceUrl}" class="todo-source-link" target="_blank" onclick="event.stopPropagation()">${todo.source}</a>`
: `<span class="todo-source">${todo.source}</span>`) : ''}
</div>
</div>
</div>