Implement direct days-until-start column filter

This commit is contained in:
2026-02-23 20:48:55 +01:00
parent 6a54f3652a
commit 85f9de74bf
2 changed files with 128 additions and 2 deletions

View File

@@ -2038,6 +2038,30 @@ h1 {
color: #0f4bb8;
}
.bookmark-subpage__th-stack {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 5px;
}
.bookmark-subpage__column-filter {
width: 84px;
max-width: 100%;
border: 1px solid #cbd5e1;
border-radius: 4px;
background: #fff;
color: #111827;
font-size: 11px;
padding: 2px 6px;
}
.bookmark-subpage__column-filter:focus {
outline: 2px solid #93c5fd;
outline-offset: 0;
border-color: #60a5fa;
}
.bookmark-subpage__table th[draggable="true"] {
cursor: move;
}