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