From 19993d8814e227ac0a52b73d36fdb03fbb143c3f Mon Sep 17 00:00:00 2001 From: silverwind Date: Mon, 22 May 2023 01:37:32 +0200 Subject: Change `--font-weight-bold` to `--font-weight-semibold` and 600 value, introduce new font weight variables (#24827) There was some recent discussion about this in Discord `ui-design` channel and the conclusion was that https://github.com/go-gitea/gitea/issues/24305 should have fixed their OS font installation to have semibold weights. I have now tested this 601 weight on a Windows 10 machine on Firefox myself, and I immediately noticed that bold was excessivly bold and rendering as 700 because browsers are biased towards bolder fonts. So revert this back to the previous value. --- web_src/css/shared/issuelist.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'web_src/css/shared') diff --git a/web_src/css/shared/issuelist.css b/web_src/css/shared/issuelist.css index db0d4cfbb9..89e1135ce9 100644 --- a/web_src/css/shared/issuelist.css +++ b/web_src/css/shared/issuelist.css @@ -33,7 +33,7 @@ color: var(--color-text); font-size: 16px; min-width: 0; - font-weight: var(--font-weight-bold); + font-weight: var(--font-weight-semibold); } .issue.list > .item .issue-item-top-row a.index { -- cgit v1.2.3