1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 17:56:25 +00:00

Fix the design of li

* fix the design of markdown-it-TOC
This commit is contained in:
asmsuechan
2017-03-09 13:04:14 -08:00
parent 7845bbd881
commit a6bd239592
2 changed files with 16 additions and 2 deletions

View File

@@ -243,6 +243,10 @@ export default class MarkdownPreview extends React.Component {
this.refs.root.contentWindow.document.body.setAttribute('data-theme', theme)
this.refs.root.contentWindow.document.body.innerHTML = markdown.render(value)
_.forEach(this.refs.root.contentWindow.document.querySelectorAll('.taskListItem'), (el) => {
el.parentNode.parentNode.style.listStyleType = 'none'
})
_.forEach(this.refs.root.contentWindow.document.querySelectorAll('a'), (el) => {
el.addEventListener('click', this.anchorClickHandler)
})

View File

@@ -182,8 +182,18 @@ ul
list-style-type circle
&>li>ul
list-style-type square
ul.markdownIt-TOC, ul.markdownIt-TOC ul
list-style-type none
ul.markdownIt-TOC
list-style-type decimal
background-color #ffffff
padding-top 10px
padding-bottom 10px
ul
list-style-type none
a
text-decoration none
color #000000
a:hover
color #2bac8f
ol
list-style-type decimal
padding-left 2em