diff --git a/Changelog.md b/Changelog.md index eec84cdbf..d51820078 100644 --- a/Changelog.md +++ b/Changelog.md @@ -140,6 +140,7 @@ diaspora.yml file**. The existing settings from 0.4.x and before will not work a * Don't add a space when rendering a mention [#5711](https://github.com/diaspora/diaspora/pull/5711) * Fix flickering hovercards [#5714](https://github.com/diaspora/diaspora/pull/5714) * Improved stripping markdown in post titles [#5730](https://github.com/diaspora/diaspora/pull/5730) +* Remove border from reply form for conversations [#5744](https://github.com/diaspora/diaspora/pull/5744) ## Features * Don't pull jQuery from a CDN by default [#5105](https://github.com/diaspora/diaspora/pull/5105) diff --git a/app/assets/stylesheets/conversations.scss b/app/assets/stylesheets/conversations.scss index 9b0852163..cb6bc23e7 100644 --- a/app/assets/stylesheets/conversations.scss +++ b/app/assets/stylesheets/conversations.scss @@ -17,7 +17,7 @@ word-wrap: break-word; &:last-child { margin-bottom: 0; } } - .new_message { border-bottom: none; } + &.new_message { border-bottom: none; } .timestamp { font-size: 11px; } }