From 38450eacea52b241b92b9b8a4d2b0ce7c186e6fe Mon Sep 17 00:00:00 2001 From: Waithamai Date: Tue, 28 Mar 2017 05:27:01 +0200 Subject: [PATCH] Added spacing between list items fixes #7400 closes #7401 --- Changelog.md | 1 + app/assets/stylesheets/markdown-content.scss | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Changelog.md b/Changelog.md index 3247122c7..acc2a93a6 100644 --- a/Changelog.md +++ b/Changelog.md @@ -7,6 +7,7 @@ * Increase maximal height of large thumbnail on mobile [#7383](https://github.com/diaspora/diaspora/pull/7383) * Reduce conversation recipient size [#7376](https://github.com/diaspora/diaspora/pull/7376) * Cleanup rtl css [#7374](https://github.com/diaspora/diaspora/pull/7374) +* Increase visual spacing between list items [#7401](https://github.com/diaspora/diaspora/pull/7401) ## Bug fixes * Don't hide posts when blocking someone from the profile [#7379](https://github.com/diaspora/diaspora/pull/7379) diff --git a/app/assets/stylesheets/markdown-content.scss b/app/assets/stylesheets/markdown-content.scss index 316907fb1..6b092dbdb 100644 --- a/app/assets/stylesheets/markdown-content.scss +++ b/app/assets/stylesheets/markdown-content.scss @@ -3,8 +3,9 @@ p:last-child { margin-bottom: 0; } ul, ol { - margin-top:0.8em; - margin-bottom:0.8em; + margin-bottom: .8em; + margin-top: .8em; + li { margin-bottom: .5em; } &:first-child { margin-top: 0; } &:last-child { margin-bottom: 0; } }