feat: filter and search by tag

This commit is contained in:
2026-02-03 09:53:08 +01:00
parent cb11e34798
commit 229223f77a
9 changed files with 147 additions and 14 deletions

View File

@ -170,6 +170,7 @@
}
.last-modified {
text-align: right;
font-size: 0.75em;
opacity: 0.7;
}
@ -290,20 +291,36 @@
gap: 0.4em;
}
.tag-chip {
display: inline-flex;
align-items: center;
gap: 0.35em;
background: var(--background2);
border: 1px solid var(--border-color);
border-radius: 999px;
padding: 0.2em 0.45em;
}
.tag-link {
color: var(--url);
font-size: 0.8em;
}
.tag-remove-form {
display: inline;
}
.tag {
background: var(--background2);
padding: 0.25em 0.6em;
border-radius: 4px;
color: var(--url);
font-size: 0.8em;
white-space: nowrap;
border: 1px solid var(--border-color);
.tag-remove {
border: 0;
background: var(--background3);
color: var(--text1);
width: 1.4em;
height: 1.4em;
border-radius: 999px;
line-height: 1;
}
.tag:hover {
.tag-remove:hover {
background: var(--background-hover);
cursor: pointer;
}