diff options
author | Christoph (Sheogorath) Kern | 2018-02-25 21:50:11 +0100 |
---|---|---|
committer | GitHub | 2018-02-25 21:50:11 +0100 |
commit | 912cce2b40689310333d6388fd82ff354051a7ac (patch) | |
tree | b3b475ab5405353ad4d91e8729471119c6d5650c /public/css | |
parent | f642a1159900b332d3e88efd538cec22e3c8615a (diff) | |
parent | 5d347d583d16d38333c84cfba4219826e45dfd0b (diff) |
Merge pull request #740 from SISheogorath/feature/moreHTML5
Extend HTML5 support by whitelisting various tags
Diffstat (limited to 'public/css')
-rw-r--r-- | public/css/markdown.css | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/public/css/markdown.css b/public/css/markdown.css index 6741729d..36e45781 100644 --- a/public/css/markdown.css +++ b/public/css/markdown.css @@ -188,3 +188,12 @@ .markdown-body .alert > ul { margin-bottom: 0; } + +/* Make details boxes look like on GitHub */ +.markdown-body details summary { + cursor: pointer; +} + +.markdown-body summary { + display: list-item; +} |