make current filters more obvious

- inside the list, give selected filters a background
- when the list is collapsed, display the current selection next to it
This commit is contained in:
rhiannon morris 2023-08-06 06:10:55 +02:00
parent fd216ae3dd
commit 7d20b2a761
2 changed files with 22 additions and 1 deletions

View File

@ -35,6 +35,14 @@ function updateItems() {
document.getElementById(`marker-${year}`).hidden = hide; document.getElementById(`marker-${year}`).hidden = hide;
} }
function disp(pfx, tags) {
return Array(...tags).map(x => pfx + x).join('\u2003'); // em space
}
let plus = disp('+\u2009', reqTags); // thin space
let minus = disp('-\u2009', excTags);
document.getElementById('filters-details').dataset.filters =
`${plus}\u2003${minus}`.trim();
} }
function update() { function update() {

View File

@ -42,7 +42,7 @@
font-weight: 500; font-weight: 500;
font-size: 90%; font-size: 90%;
grid-gap: 0.5em 1em; gap: 0.5em;
} }
.filterlist input { .filterlist input {
@ -59,6 +59,9 @@
.filterlist label { .filterlist label {
cursor: pointer; cursor: pointer;
padding: 0.15em 0.4em;
border-radius: 1000px;
border: 1px solid transparent;
} }
.filterlist label::before { .filterlist label::before {
@ -71,6 +74,10 @@
text-shadow: none; text-shadow: none;
} }
.filterlist :checked + label::before { content: url('/style/checked.svg'); } .filterlist :checked + label::before { content: url('/style/checked.svg'); }
.filterlist :checked + label {
background: var(--button-bg);
border: var(--button-border);
}
.filterlist label:not([data-count="1"])::after { .filterlist label:not([data-count="1"])::after {
content: attr(data-count); content: attr(data-count);
@ -111,6 +118,12 @@
text-decoration: none; text-decoration: none;
} }
#filters-details[data-filters]:not([open])::after {
content: attr(data-filters);
margin-left: 2em;
font-size: 90%;
}
@media (max-width: 80rem) { @media (max-width: 80rem) {
#filters div { #filters div {