From e5ec4d35ea65bbab07b6226868a7a93a679158d0 Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Sat, 31 Oct 2020 18:06:01 +0000 Subject: 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 and
.
The font lookup should still find a font variant when a non-existent
weight is specified, but that's another issue for another day.
---
 Libraries/LibWeb/CSS/Default.css | 2 --
 1 file changed, 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,
-- 
cgit v1.2.3