1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-24 10:27:10 +02:00

All: Fixed table font size and family

This commit is contained in:
Laurent Cozic 2018-01-09 21:09:49 +01:00
parent c2a0d8600f
commit 08b58f0e4c

View File

@ -305,13 +305,15 @@ class MdToHtml {
b,strong{font-weight:bolder}small{font-size:80%}img{border-style:none} b,strong{font-weight:bolder}small{font-size:80%}img{border-style:none}
`; `;
const fontFamily = 'sans-serif';
const css = ` const css = `
body { body {
font-size: ` + style.htmlFontSize + `; font-size: ` + style.htmlFontSize + `;
color: ` + style.htmlColor + `; color: ` + style.htmlColor + `;
line-height: ` + style.htmlLineHeight + `; line-height: ` + style.htmlLineHeight + `;
background-color: ` + style.htmlBackgroundColor + `; background-color: ` + style.htmlBackgroundColor + `;
font-family: sans-serif; font-family: ` + fontFamily + `;
padding-bottom: ` + options.paddingBottom + `; padding-bottom: ` + options.paddingBottom + `;
} }
p, h1, h2, h3, h4, h5, h6, ul, table { p, h1, h2, h3, h4, h5, h6, ul, table {
@ -359,6 +361,10 @@ class MdToHtml {
td, th { td, th {
border: 1px solid silver; border: 1px solid silver;
padding: .5em 1em .5em 1em; padding: .5em 1em .5em 1em;
font-size: ` + style.htmlFontSize + `;
color: ` + style.htmlColor + `;
background-color: ` + style.htmlBackgroundColor + `;
font-family: ` + fontFamily + `;
} }
hr { hr {
border: none; border: none;