added blur to gallery entries when highlighted

This commit is contained in:
2026-02-12 15:47:47 +01:00
parent 96ee17e8c5
commit 6119ee8eda
2 changed files with 9 additions and 2 deletions

View File

@@ -42,13 +42,16 @@
margin: 0;
padding: 8px;
text-decoration: none;
transition: background-color 0.1s ease-out, border-color 0.1s ease-out;
transition: background-color 0.1s ease-out,
border-color 0.1s ease-out,
backdrop-filter 0.2s ease-out;
border: 2px dashed transparent;
}
.row-entry:hover {
background-color: var(--color-background-highlight);
border-color: var(--color-highlight);
backdrop-filter: blur(var(--blur-radius-background));
}
.row-entry:hover .row-img {