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

Desktop: Fixed styling issues with rendered Markdown

This commit is contained in:
Laurent Cozic 2020-04-02 22:54:06 +01:00
parent 9fa7c9c20a
commit 27ab2b8e30
4 changed files with 8 additions and 5 deletions

View File

@ -178,11 +178,11 @@ class MdToHtml {
// files. Otherwise some of them might be in the cssStrings property.
externalAssetsOnly: false,
postMessageSyntax: 'postMessage',
paddingTop: '0',
paddingBottom: '0',
// paddingTop: '0',
// paddingBottom: '0',
highlightedKeywords: [],
codeTheme: 'atom-one-light.css',
theme: Object.assign({ paddingTop: '16px' }, defaultNoteStyle, theme),
theme: Object.assign({}, defaultNoteStyle, theme),
plugins: {},
}, options);

View File

@ -12,10 +12,12 @@ pluginAssets[1] = function() {
(otherwise they are too far right), but keep it for their children to allow
nested lists. Make sure this value matches the UL margin. */
/*
.md-checkbox .checkbox-wrapper {
display: flex;
align-items: center;
}
*/
li.md-checkbox {
list-style-type: none;

View File

@ -13,6 +13,7 @@ module.exports = {
raisedBackgroundColor: '#e5e5e5',
htmlCodeColor: 'rgb(0,0,0)',
htmlCodeFontSize: '.9em',
bodyPaddingTop: '0',
bodyPaddingBottom: '0',
editorTheme: 'chrome',

View File

@ -18,8 +18,8 @@ module.exports = function(theme) {
line-height: ${theme.htmlLineHeight};
background-color: ${theme.htmlBackgroundColor};
font-family: ${fontFamily};
padding-bottom: ${theme.paddingBottom};
padding-top: ${theme.paddingTop};
padding-bottom: ${theme.bodyPaddingBottom}px;
padding-top: ${theme.bodyPaddingTop}px;
}
strong {
color: ${theme.colorBright};