浏览代码

Firefox on Windows does not show the active link as bold

Frédéric Guillot 5 年之前
父节点
当前提交
d9f91fd919
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      ui/static/css/common.css

+ 2 - 1
ui/static/css/common.css

@@ -82,7 +82,8 @@ a:hover {
 
 
 .header .active a {
 .header .active a {
     color: var(--header-active-link-color);
     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 {
 .header a:hover {