Update ashboard, dashboard (~2)

This commit is contained in:
Echo
2026-02-02 11:30:04 +00:00
parent ae56d63f38
commit 9d080a099e
2 changed files with 8 additions and 5 deletions

View File

@@ -761,8 +761,9 @@
.todo-checkbox svg { display: none; width: 14px; height: 14px; color: white; }
.todo-checkbox.checked svg { display: block; }
.todo-content { flex: 1; min-width: 0; }
.todo-text { font-size: 14px; color: var(--text-primary); margin-bottom: 4px; }
.todo-context { font-size: 13px; color: var(--text-muted); margin-bottom: 6px; font-style: italic; }
.todo-text { font-size: 14px; color: var(--text-primary); margin-bottom: 10px; font-weight: 500; }
.todo-context { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; line-height: 1.5; }
.todo-example { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; line-height: 1.5; font-style: italic; background: var(--bg-elevated); padding: 8px 10px; border-radius: 6px; border-left: 3px solid #8b5cf6; }
.todo-meta { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.todo-domain {
font-size: 11px;
@@ -1667,7 +1668,8 @@
</div>
<div class="todo-content">
<div class="todo-text">${todo.text}</div>
${todo.context ? `<div class="todo-context">${todo.context}</div>` : ''}
${todo.context ? `<div class="todo-context"><strong>Context:</strong> ${todo.context}</div>` : ''}
${todo.example ? `<div class="todo-example"><strong>Exemplu:</strong> ${todo.example}</div>` : ''}
<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>` : ''}