From d9f91fd919b99699dd97158448f858d0942e004f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Guillot?= <f@miniflux.net>
Date: Mon, 31 May 2021 16:59:44 -0700
Subject: [PATCH] Firefox on Windows does not show the active link as bold

---
 ui/static/css/common.css | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/ui/static/css/common.css b/ui/static/css/common.css
index 5afce6cd..96222a6f 100644
--- a/ui/static/css/common.css
+++ b/ui/static/css/common.css
@@ -82,7 +82,8 @@ a:hover {
 
 .header .active a {
     color: var(--header-active-link-color);
-    font-weight: 500;
+    /* Note: Firefox on Windows does not show the link as bold if the value is under 600 */
+    font-weight: 600;
 }
 
 .header a:hover {
-- 
GitLab