diff options
author | silverwind <me@silverwind.io> | 2023-05-22 01:37:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-21 23:37:32 +0000 |
commit | 19993d8814e227ac0a52b73d36fdb03fbb143c3f (patch) | |
tree | c8cc745e5fd25da559c8310eb8df07d2b6ef959e /web_src/css/markup | |
parent | 4647660776436f0a83129b4ceb8426b1fb0599bb (diff) | |
download | gitea-19993d8814e227ac0a52b73d36fdb03fbb143c3f.tar.gz gitea-19993d8814e227ac0a52b73d36fdb03fbb143c3f.zip |
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.
Diffstat (limited to 'web_src/css/markup')
-rw-r--r-- | web_src/css/markup/content.css | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/web_src/css/markup/content.css b/web_src/css/markup/content.css index fb1e8ea630..e300995b31 100644 --- a/web_src/css/markup/content.css +++ b/web_src/css/markup/content.css @@ -74,7 +74,7 @@ .markup h6 { margin-top: 24px; margin-bottom: 16px; - font-weight: var(--font-weight-bold); + font-weight: var(--font-weight-semibold); line-height: 1.25; } @@ -252,7 +252,7 @@ margin-top: 16px; font-size: 1em; font-style: italic; - font-weight: var(--font-weight-bold); + font-weight: var(--font-weight-semibold); } .markup dl dd { @@ -284,7 +284,7 @@ } .markup table th { - font-weight: var(--font-weight-bold); + font-weight: var(--font-weight-semibold); } .markup table th, |