From 699f7c46b598fd7d9c8faf62b7c4fec660638574 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 25 Oct 2012 12:08:25 +0530 Subject: [PATCH] Use font-weight:bold instead of font-weight:bolder for the and tags as ADE cant handle bolder when embedded fonts are used --- resources/templates/html.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/templates/html.css b/resources/templates/html.css index a8b3ab920c..cbf615e524 100644 --- a/resources/templates/html.css +++ b/resources/templates/html.css @@ -236,7 +236,8 @@ th { /* inlines */ b, strong { - font-weight: bolder; + /* ADE doesn't support bolder with embedded fonts */ + font-weight: bold; } i, cite, em, var, dfn {