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-due.overdue { color: #ef4444; font-weight: 500; }
.todo-source { font-size: 11px; color: #6b7280; } .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 */ /* Button icon only */
.btn-icon { .btn-icon {
@@ -1612,7 +1614,9 @@
<div class="todo-meta"> <div class="todo-meta">
<span class="todo-domain ${todo.domain}">@${todo.domain}</span> <span class="todo-domain ${todo.domain}">@${todo.domain}</span>
${todo.dueDate ? `<span class="todo-due ${isOverdue ? 'overdue' : ''}">${formatDate(todo.dueDate)}</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> </div>
</div> </div>

View File

@@ -1,5 +1,5 @@
{ {
"lastUpdated": "2026-02-02T10:52:00Z", "lastUpdated": "2026-02-02T11:06:00Z",
"items": [ "items": [
{ {
"id": "prov-2026-02-02", "id": "prov-2026-02-02",
@@ -10,6 +10,7 @@
"done": false, "done": false,
"doneAt": null, "doneAt": null,
"source": "Zoltan Vereș - Motivația Intrinsecă", "source": "Zoltan Vereș - Motivația Intrinsecă",
"sourceUrl": "https://moltbot.tailf7372d.ts.net/echo/files.html#memory/kb/youtube/2026-02-02_zoltan-veres-motivatie-intrinseca-complet.md",
"createdAt": "2026-02-02T09:00:00Z" "createdAt": "2026-02-02T09:00:00Z"
} }
] ]