mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-16 01:55:57 +01:00
Use font-weight:bold instead of font-weight:bolder for the <b> and <strong> tags as ADE cant handle bolder when embedded fonts are used
This commit is contained in:
parent
e885b2cd8e
commit
699f7c46b5
1 changed files with 2 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue