diff options
author | Andrew Boyarshin <andrew.boyarshin@gmail.com> | 2017-02-14 08:13:59 +0700 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2017-02-14 09:13:59 +0800 |
commit | dc8248f8a49e4801e119008a32b28cd2ad6e1a57 (patch) | |
tree | f3749cdfb1b4766e6f9d7d601f2de7654b747087 /public/less | |
parent | 5cc275b1defc56d54bec23d1a5740c3fadcff2b0 (diff) | |
download | gitea-dc8248f8a49e4801e119008a32b28cd2ad6e1a57.tar.gz gitea-dc8248f8a49e4801e119008a32b28cd2ad6e1a57.zip |
Markdown rendering overhaul (#186)
* Markdown rendering overhaul
Cleaned up and squashed commits into single one.
Signed-off-by: Andrew Boyarshin <boyarshinand@gmail.com>
* Fix markdown API, add markdown module and API tests, improve code coverage
Signed-off-by: Andrew Boyarshin <boyarshinand@gmail.com>
Diffstat (limited to 'public/less')
-rw-r--r-- | public/less/_markdown.less | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/public/less/_markdown.less b/public/less/_markdown.less index 4200aed3a3..e4b452b95c 100644 --- a/public/less/_markdown.less +++ b/public/less/_markdown.less @@ -205,7 +205,7 @@ } li>p { - margin-top:16px; + margin-top:0; } dl { @@ -486,4 +486,8 @@ font-weight:bold; background:#f8f8f8;border-top:0; } + + .ui.list .list, ol.ui.list ol, ul.ui.list ul { + padding-left: 2em; + } } |