From 51124641ac9afca6597da4867d5e19114649f3b1 Mon Sep 17 00:00:00 2001 From: Kai Wagner Date: Mon, 15 Dec 2025 16:20:55 +0100 Subject: [PATCH] get 'read topic' coloring back, to ensure fully read threads look different Signed-off-by: Kai Wagner --- app/assets/stylesheets/components/topics.css | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/app/assets/stylesheets/components/topics.css b/app/assets/stylesheets/components/topics.css index c0bae08..3363f9a 100644 --- a/app/assets/stylesheets/components/topics.css +++ b/app/assets/stylesheets/components/topics.css @@ -192,7 +192,7 @@ } .topic-row.topic-read { - color: var(--color-text-secondary); + color: var(--color-text-muted); } .topic-icon-hover { @@ -244,6 +244,15 @@ } } +.topic-row.topic-read .topic-link { + color: var(--color-text-muted); + + &:hover { + color: var(--color-text-muted); + text-decoration: underline; + } +} + .activity-info { display: flex; flex-direction: column;