Add HTML5 details+summary style support

This commit is contained in:
Koala Yeung 2018-12-14 16:41:49 +08:00
parent 4d639a534a
commit 34acc25f12

View File

@ -693,3 +693,10 @@
.markdown-body hr {
border-bottom-color: #eee;
}
.markdown-body summary {
display: list-item;
}
.markdown-body details > summary {
cursor: pointer;
}