Make days filter toggle unobtrusive when collapsed

This commit is contained in:
2026-02-23 21:50:33 +01:00
parent 4291b56fd9
commit 055b4382a0

View File

@@ -2054,10 +2054,10 @@ h1 {
.bookmark-subpage__filter-toggle {
width: 22px;
height: 22px;
border: 1px solid #cbd5e1;
border: none;
border-radius: 4px;
background: #fff;
color: #475569;
background: transparent;
color: #94a3b8;
display: inline-flex;
align-items: center;
justify-content: center;
@@ -2072,14 +2072,22 @@ h1 {
}
.bookmark-subpage__filter-toggle:hover {
color: #1f2937;
border-color: #94a3b8;
color: #64748b;
}
.bookmark-subpage__filter-toggle:focus-visible {
outline: 2px solid #93c5fd;
outline-offset: 1px;
}
.bookmark-subpage__filter-toggle.is-open,
.bookmark-subpage__filter-toggle.is-active {
color: #0f4bb8;
}
.bookmark-subpage__filter-toggle.is-open {
border-color: #60a5fa;
border-style: solid;
border-width: 1px;
background: #eff6ff;
}