Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion src/features/board/board.css
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,11 @@
border-radius: var(--tf-radius-sm);
padding: 4px 6px;
font-size: 0.8rem;
color: var(--tf-text);
/* Quiet by default (matches the read-only .list-row__due variant + Asana):
empty "mm/dd/yyyy" placeholders and ordinary upcoming dates read as muted
secondary info, so only overdue/today dates (their own color rules below)
draw the eye. */
color: var(--tf-text-muted);
}

.list-row__due {
Expand Down Expand Up @@ -410,6 +414,17 @@
li.list-row .list-row__prio-select.list-row__prio--medium {
border-color: currentColor;
}
/* The date input's calendar-picker icon is a bit of chrome on every row; hide
it at rest so the column reads as plain dates, and reveal it (like the rest
of the control chrome) on row-hover or focus. */
.list-row__due-input::-webkit-calendar-picker-indicator {
opacity: 0;
transition: opacity 0.1s ease;
}
li.list-row:hover .list-row__due-input::-webkit-calendar-picker-indicator,
.list-row__due-input:focus::-webkit-calendar-picker-indicator {
opacity: 0.6;
}
}

li.list-row {
Expand Down
Loading