From 0d02269bf656b0539f756b2960927d6d8025ddcd Mon Sep 17 00:00:00 2001 From: Maciej Pienczyn Date: Fri, 10 Apr 2026 08:10:54 +0200 Subject: [PATCH] fix: reader avatars not showing photos in forum seen-by section Added CSS rule for .reader-avatar img with absolute positioning to properly display avatar photos inside the 28px circles. Co-Authored-By: Claude Opus 4.6 (1M context) --- templates/forum/topic.html | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/templates/forum/topic.html b/templates/forum/topic.html index 4ac8f99..5369cc3 100755 --- a/templates/forum/topic.html +++ b/templates/forum/topic.html @@ -829,6 +829,16 @@ position: relative; } + .reader-avatar img { + width: 100%; + height: 100%; + border-radius: 50%; + object-fit: cover; + position: absolute; + top: 0; + left: 0; + } + .reader-avatar[data-name]::after { content: attr(data-name); position: absolute;