diff options
author | Linus Groh <mail@linusgroh.de> | 2020-10-31 18:06:01 +0000 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-10-31 20:52:54 +0100 |
commit | e5ec4d35ea65bbab07b6226868a7a93a679158d0 (patch) | |
tree | 2568f5928199af2522084c3020e4bfff5f620515 | |
parent | d2a2d19a86f64a36b3adfe59f78a91de5d557898 (diff) | |
download | serenity-e5ec4d35ea65bbab07b6226868a7a93a679158d0.zip |
LibWeb: Don't use 'font-weight: lighter' for Csilla in Default.css
Base/res/fonts/CsillaThin7x10.font was renamed to
Base/res/fonts/CsillaRegular10.font in 5abc03d, breaking the default
styles of <code> and <pre>.
The font lookup should still find a font variant when a non-existent
weight is specified, but that's another issue for another day.
-rw-r--r-- | Libraries/LibWeb/CSS/Default.css | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Libraries/LibWeb/CSS/Default.css b/Libraries/LibWeb/CSS/Default.css index c1d478ffef..beb5a0aa6b 100644 --- a/Libraries/LibWeb/CSS/Default.css +++ b/Libraries/LibWeb/CSS/Default.css @@ -30,7 +30,6 @@ h6 { pre { font-family: Csilla; - font-weight: lighter; margin-bottom: 8px; margin-top: 8px; white-space: pre; @@ -38,7 +37,6 @@ pre { code { font-family: Csilla; - font-weight: lighter; } u, |