diff --git a/Changelog.md b/Changelog.md index 41c0f5bb8..017f575a8 100644 --- a/Changelog.md +++ b/Changelog.md @@ -15,15 +15,17 @@ # 0.7.8.0 ## Refactor - * Make setting up a development environment 9001% easier by adding a Docker-based setup [#7870](https://github.com/diaspora/diaspora/pull/7870) * Improve `web+diaspora://` handler description [#7909](https://github.com/diaspora/diaspora/pull/7909) +* Move comment timestamp next to author name [#7905](https://github.com/diaspora/diaspora/pull/7905) +* Sharpen small and medium thumbnails [#7924](https://github.com/diaspora/diaspora/pull/7924) ## Bug fixes +* Ignore invalid URLs for camo [#7922](https://github.com/diaspora/diaspora/pull/7922) ## Features - * Add the ability to assign roles in the admin panel [#7868](https://github.com/diaspora/diaspora/pull/7868) +* Improve memory usage with libjemalloc if available [#7919](https://github.com/diaspora/diaspora/pull/7919) # 0.7.7.0 diff --git a/app/assets/stylesheets/comments.scss b/app/assets/stylesheets/comments.scss index a91414e94..88d4b16b5 100644 --- a/app/assets/stylesheets/comments.scss +++ b/app/assets/stylesheets/comments.scss @@ -44,6 +44,19 @@ } } + .permalink { + @include transition(opacity); + opacity: 0; + } + + .comment:hover .permalink { + opacity: .8; + + &:hover { + opacity: 1; + } + } + .comment.new-comment-form-wrapper { padding-bottom: 0; } .submit-button { diff --git a/app/assets/stylesheets/stream_element.scss b/app/assets/stylesheets/stream_element.scss index a411c423e..6f876ba15 100644 --- a/app/assets/stylesheets/stream_element.scss +++ b/app/assets/stylesheets/stream_element.scss @@ -122,9 +122,12 @@ opacity: 0; } - &:hover .permalink { + &:hover .post-timestamp .permalink { opacity: .8; - &:hover { opacity: 1; } + + &:hover { + opacity: 1; + } } div.reshare { diff --git a/app/assets/templates/comment_tpl.jst.hbs b/app/assets/templates/comment_tpl.jst.hbs index 2f8a9ae14..81c2d5064 100644 --- a/app/assets/templates/comment_tpl.jst.hbs +++ b/app/assets/templates/comment_tpl.jst.hbs @@ -20,18 +20,21 @@ {{/if}} - {{#linkToAuthor author}} - {{name}} - {{/linkToAuthor}} +
+ {{#linkToAuthor author}} + {{name}} + {{/linkToAuthor}} + - + + + +
{{{text}}}
- -
- - -
diff --git a/app/assets/templates/stream-element_tpl.jst.hbs b/app/assets/templates/stream-element_tpl.jst.hbs index ed6b8083c..9240a3bfd 100644 --- a/app/assets/templates/stream-element_tpl.jst.hbs +++ b/app/assets/templates/stream-element_tpl.jst.hbs @@ -19,7 +19,7 @@ {{~name~}} {{/linkToAuthor}} - + -