Add article thumbnails (first image, max 256x256, bounded by teaser height) to post cards

This commit is contained in:
trilium-share-gruvbox
2026-08-28 14:02:11 +02:00
parent 1664e55e4e
commit 9a20dfa2e1
3 changed files with 55 additions and 2 deletions
+28
View File
@@ -574,6 +574,34 @@ html.theme-light body.is-garden #content h1#title {
margin-top: 1.5em;
}
/* ---------- Blog post thumbnails (Bild links, Teaser rechts) ---------- */
.blog-post-inner {
display: flex;
gap: 16px;
align-items: stretch;
}
.blog-thumb-link {
flex: 0 0 auto;
width: min(256px, 35%);
text-decoration: none;
}
.blog-thumb {
display: block;
width: 100%;
height: 100%;
max-height: 256px;
object-fit: cover;
border-radius: 8px;
border: 1px solid var(--background-highlight);
}
.blog-post-body {
flex: 1;
min-width: 0;
}
.blog-post-title {
margin: 0 0 0.25em;
}