From 9ed3e477965d64f64631a9fad30e0cf55b79b5aa Mon Sep 17 00:00:00 2001 From: Aman Agrawal Date: Sun, 5 Jul 2020 15:50:53 +0530 Subject: [PATCH] recent_topics: Show read topics in a darker shade. --- static/styles/night_mode.css | 4 ++++ static/styles/recent_topics.css | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/static/styles/night_mode.css b/static/styles/night_mode.css index 3fcd8b11d5..f36421ff10 100644 --- a/static/styles/night_mode.css +++ b/static/styles/night_mode.css @@ -443,6 +443,10 @@ on a dark background, and don't change the dark labels dark either. */ } } + #recent_topics_table .unread_topic { + background-color: hsl(211, 28%, 16%); + } + .btn-recent-selected, .recent_topics_table thead th { background-color: hsl(0, 0%, 0%) !important; diff --git a/static/styles/recent_topics.css b/static/styles/recent_topics.css index adbf2edc7f..0071a6120b 100644 --- a/static/styles/recent_topics.css +++ b/static/styles/recent_topics.css @@ -229,6 +229,10 @@ } } + .unread_topic { + background-color: hsl(0, 0%, 100%); + } + .last_msg_time { float: left; margin-right: 5px;