Update ashboard, dashboard (~2)
This commit is contained in:
@@ -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>` : ''}
|
||||
|
||||
Reference in New Issue
Block a user